*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#F8FAFC;
    color:#111827;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=========================
        HERO
=========================*/

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(17,24,39,.72),rgba(17,24,39,.72)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
    color:#fff;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 8%;
}

.logo{
    font-size:30px;
    display:flex;
    gap:12px;
    align-items:center;
}

.logo i{
    color:#22C55E;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar a{
    color:#fff;
    transition:.3s;
}

.navbar a:hover{
    color:#22C55E;
}

.navbar .home-link{
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:999px;
    background:rgba(34,197,94,.16);
}

.navbar .home-link:hover{
    background:#22C55E;
    color:#111827;
}

.hero-content{
    height:82vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.badge{
    padding:10px 18px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    border-radius:30px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.hero-content h1{
    font-size:70px;
    margin-bottom:25px;
}

.hero-content p{
    max-width:700px;
    color:#E5E7EB;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:15px 35px;
    border-radius:10px;
    transition:.3s;
}

.btn-primary{
    background:#22C55E;
    color:#fff;
}

.btn-primary:hover{
    background:#16A34A;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.1);
}

/*=========================
      TITULOS
=========================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:12px;
}

.section-title p{
    color:#6B7280;
}

/*=========================
      BENEFICIOS
=========================*/

.benefits{
    padding:100px 8%;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:40px;
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.08);
}

.card i{
    font-size:48px;
    color:#22C55E;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:#6B7280;
    line-height:1.7;
}

/*=========================
        PLANES
=========================*/

.plans{
    padding:100px 8%;
    background:#fff;
}

.plan{
    border:1px solid #E5E7EB;
    border-radius:20px;
    padding:40px;
    text-align:center;
    transition:.3s;
}

.plan:hover{
    transform:translateY(-8px);
}

.plan h1{
    font-size:58px;
    margin:20px 0 10px;
    color:#22C55E;
}

.plan span{
    color:#6B7280;
}

.plan ul{
    margin:35px 0;
}

.plan li{
    margin:14px 0;
}

.plan a{
    display:block;
    background:#111827;
    color:#fff;
    padding:14px;
    border-radius:10px;
}

.active{
    border:2px solid #22C55E;
}

/*=========================
      HORARIOS
=========================*/

.schedule{
    padding:90px 8%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    text-align:center;
}

.schedule div{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.schedule i{
    font-size:42px;
    color:#22C55E;
    margin-bottom:20px;
}

.schedule h3{
    margin-bottom:15px;
}

.schedule p{
    color:#6B7280;
    margin:8px 0;
}

/*=========================
        FOOTER
=========================*/

footer{
    background:#111827;
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

footer h2{
    margin-bottom:10px;
}

footer p{
    color:#D1D5DB;
    margin-bottom:25px;
}

.social{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:30px;
}

.social a{
    color:#fff;
    font-size:24px;
    transition:.3s;
}

.social a:hover{
    color:#22C55E;
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

    .hero-content h1{
        font-size:54px;
    }

    .schedule{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .navbar ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:16px;
    }

    .navbar .home-link{
        display:inline-block;
        padding:9px 16px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:15px;
    }

    .section-title h2{
        font-size:34px;
    }

}

@media(max-width:480px){

    .hero-content h1{
        font-size:32px;
    }

    .hero{
        min-height:90vh;
    }

    .benefits,
    .plans,
    .schedule{
        padding:70px 20px;
    }

    .card,
    .plan{
        padding:28px;
    }

    .logo{
        font-size:24px;
    }

}
