*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f3f3f3;
}

/* HEADER */

.main-header{
    background:#000;

    min-height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:8px 30px;

    border-bottom:1px solid #222;
}

.logo img{
    height:55px;
    width:auto;
}

.menu{
    display:flex;
    gap:22px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:12px;
    text-transform:uppercase;
}

.social{
    display:flex;
    gap:12px;
}

.social a{
    color:white;
    font-size:16px;
    transition:.3s;
}

.social a:hover{
    color:#00c86f;
}

/* CONTENIDO */

.contenido-principal{
    background:white;
    min-height:500px;
    padding:50px 80px;
}

/* FOOTER */

.copyright{
    background:#111;
    color:white;
    text-align:center;
    padding:15px;
}

/* banner inicio */

.hero-home{
    background:#000;
    color:white;
    padding:25px 80px 35px;
}

.hero-contenido{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-texto h1{
    font-size:70px;
    margin-bottom:15px;
}

.blanco{
    color:white;
}

.verde{
    color:#00c86f;
}

.hero-texto p{
    font-size:20px;
    margin:30px 0;
    max-width:500px;
}

.hero-texto h2{
    color:#d8b44c;
    font-size:20px;
    margin-bottom:8px;
}

.hero-botones{
    display:flex;
    gap:20px;
}

.btn-vivo{
    background:#00c86f;
    color:white;
    text-decoration:none;
    padding:10px 24px;
    border-radius:30px;

    display:flex;
    align-items:center;
    gap:12px;

    font-size:16px;
}

.btn-saber{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:10px 26px;
    border-radius:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:16px;
}

.hero-imagen img{
    width:550px;
    max-width:100%;
    border-radius:10px;
}

.linea-verde{
    width:55px;
    height:4px;
    background:#00c86f;
    margin-bottom:20px;
}

.icon-play{
    width:34px;
    height:34px;

    border:2px solid white;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    font-size:12px;
}

.info-radio{
    background:#1a1a1a;

    display:inline-flex;

    align-items:center;

    gap:35px;

    padding:22px 35px;

    border-radius:20px;

    margin-top:30px;

    width:fit-content;

    max-width:100%;
}

.info-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:white;
    position:relative;
}

.info-icono{
    font-size:32px;
    color:#00BF63;
}

.info-item small{
    display:block;

    color:#bdbdbd;

    font-size:12px;

    margin-bottom:3px;
}

.info-item h3{
    color:#00c86f;

    font-size:16px;
}

.info-item:not(:last-child)::after{
    content:"";

    position:absolute;

    right:-18px;

    width:1px;

    height:45px;

    background:#333;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* TABLETAS */

@media screen and (max-width:992px){

    .hero-home{
        padding:25px 40px;
    }

    .hero-contenido{
        gap:30px;
    }

    .hero-texto h1{
        font-size:55px;
    }

    .hero-imagen img{
        width:400px;
    }

    .contenido-principal{
        padding:40px;
    }
}

/* CELULARES */

@media screen and (max-width:768px){

    /* HEADER */
    .menu-toggle{
        display:block;
    }

    .menu{
        display:none;
        width:100%;
        flex-direction:column;
        gap:15px;
        background:#111;
        padding:20px;
        margin-top:15px;
    }

    .menu.active{
        display:flex;
    }

    .social{
        display:none;
    }

    .main-header{
        flex-wrap:wrap;
        justify-content:space-between;
        padding:15px 20px;
    }

    .logo img{
        height:45px;
    }

    /* HERO */
    .hero-home{
        padding:25px 20px;
    }

    .hero-contenido{
        display:grid;
        grid-template-columns:60% 40%;
        gap:15px;
        align-items:center;
    }

    .hero-texto h1{
        font-size:38px;
    }

    .hero-texto p{
        font-size:14px;
        margin:15px 0;
    }

    .hero-texto h2{
        font-size:16px;
    }

    .hero-botones{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .btn-vivo,
    .btn-saber{
        font-size:13px;
        padding:10px 18px;
    }

    .hero-imagen img{
        width:100%;
        max-width:180px;
    }

    .info-radio{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
        padding:18px 20px;
    }

    .info-item:not(:last-child)::after{
        display:none;
    }

    .contenido-principal{
        padding:30px 20px;
    }
}

/* CELULARES PEQUEÑOS */

@media screen and (max-width:480px){

    .hero-contenido{
        grid-template-columns:55% 45%;
    }

    .hero-texto h1{
        font-size:32px;
    }

    .hero-texto p{
        font-size:13px;
    }

    .hero-imagen img{
        max-width:140px;
    }

    .btn-vivo,
    .btn-saber{
        font-size:12px;
        padding:8px 15px;
    }

    .icon-play{
        width:28px;
        height:28px;
        font-size:10px;
    }
}

