/* General */
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: white;
    background: linear-gradient(to bottom, #282828 0%, #000000 50%, #282828 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    box-sizing: border-box;
}

.container {
    max-width: 1000px;
    padding: 20px;
    box-sizing: border-box; 
    margin-bottom: 30px;
}

/* Logo */
.logos{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 90px;

}

.logos img {
    max-width: 85%;
    height: auto;
}
.logo-mega, .logo-netflix{
    padding: 15px 20px;
}
.logo-mega{
    border-right: 1px solid #ffffff;
}
.logo-netflix img{
    max-width: 75%;
}

/* Text */

h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}
h1 span{
    font-weight: 700;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

main p {
    font-size: 1.4rem;
    margin-bottom: 60px;
    margin-top: 60px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 12px 80px;
    border: 0;
    font-size: 1.3rem;
    color: #1a1a1a;
    background-color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e0e0e0;
}
footer{
    margin-top: 80px;
}

footer p{
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}
.info-contacto a, .info-contacto h5{
    color: #ffffff;
}
.info-contacto p, .info-contacto h5{
    font-size: 14px;
}
.info-contacto h5{
    margin-top: 50px;
    margin-bottom: 5px;
}
.whatsapp-msn{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-msn a{
    text-decoration: none;
    margin-left: 10px;
    margin-top: 2px;
}
.whatsapp-msn a:hover{
    opacity: 0.8;
}
.whatsapp-msn img{
    width: 18px;
}
.legal-terms a{
    color: #ffffff;
}
/* Media Queries para pantallas pequeñas */
@media (max-width: 480px) {
    .container{
        padding: 30px;
        margin: 30px 0;
    }
    .logos{
        margin-bottom: 50px;
        flex-direction: column-reverse;
    }
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 2.3rem;
        margin-top: 0;
    }
    h1 span{
        font-weight: 500;
    }

    main p {
        margin-top: 50px;
        font-size: 1.3rem;
    }

    .cta-button {
        font-size: 1.4rem;
        padding: 10px 20px;
    }
    .logo-mega{
        border: none;
        margin-top: 30px;
    }

    .logo-mega::before {

        content: ""; 
        position: absolute;
        top:165px; 
        left: 50%;
        transform: translateX(-50%); 
        width: 20%; 
        border-top: 1px solid #fff; 
      }
      
    .logo-netflix img{
        max-width: 70%;
    }

    footer{
        margin-top: 60px;
    }
}
