html{
    scroll-behavior:smooth;
    scroll-padding-top:96px;
}

:root{
    --bg:#070707;
    --surface:#101216;
    --surface-soft:#171a20;
    --surface-elevated:#1d2027;
    --blue:#123c9c;
    --blue-soft:#1d4fb8;
    --yellow:#f2b705;
    --yellow-soft:#ffd766;
    --text:#f5f5f5;
    --muted:#c7c7c7;
    --line:rgba(255,255,255,0.1);
    --shadow:rgba(0,0,0,0.38);
}

body{
    margin:0;
    font-family:"Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    font-size:16px;
    line-height:1.5;
    padding-top:86px;
}

html, body{
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

#menu-check{
    display:none;
}

.menu-toggle{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
    line-height:1;
}

/* NAV */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(7,8,10,0.94);
    backdrop-filter:blur(12px);
    box-shadow:0 4px 18px var(--shadow);
    padding:0;
}

nav{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1240px;
    min-height:86px;
    margin:auto;
    padding:8px 24px;
}

nav a{
    text-decoration:none;
    background:var(--blue);
    color:var(--text);
    padding:10px 18px;
    border-radius:999px;
    font-weight:800;
    letter-spacing:0.02em;
    transition:background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

nav a:hover{
    background:var(--yellow);
    color:#101010;
    transform:translateY(-2px);
    text-shadow:none;
}

nav a.active{
    background:var(--yellow);
    color:#000;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:auto;
}

@media(min-width:769px){
    .nav-links{
        display:flex !important;
    }
}

/* HERO */
.hero{
    text-align:center;
    padding:0;
    margin:0;
    background:linear-gradient(180deg, #030303, var(--surface) 70%, var(--bg));
    box-shadow:0 4px 15px var(--shadow);
    overflow:hidden;
}

.hero-img{
    width:min(100%, 1180px);
    max-width:100%;
    max-height:calc(100vh - 86px);
    object-fit:contain;
    display:block;
    margin:0 auto;
}

/* BANNER */
.banner{
    background:linear-gradient(90deg, #0d2868, var(--blue), #0d2868);
    color:var(--yellow-soft);
    text-align:center;
    padding:18px 20px;
    font-weight:900;
    font-size:28px;
    letter-spacing:1px;
    text-transform:uppercase;
    animation:none;
    text-shadow:none;
    box-shadow:0 5px 18px var(--shadow);
}

.location{
    background:var(--surface);
    text-align:center;
    padding:20px;
    font-size:26px;
    font-weight:bold;
    letter-spacing:1px;
}

/* HORARIOS */
.section-yellow{
    background:linear-gradient(180deg, var(--surface-soft), var(--surface));
    padding:46px 20px;
    text-align:center;
}

.section-title{
    background:var(--blue);
    display:inline-block;
    padding:10px 30px;
    border-radius:5px;
    font-weight:bold;
    margin-bottom:20px;
}

.section-yellow .section-title{
    background:var(--blue);
    color:var(--text);
    font-size:24px;
    padding:10px 25px;
    box-shadow:0 5px 15px var(--shadow);
    border-radius:10px;
}

/* BIENVENIDA */
.about-section{
    background:var(--surface);
    padding:15px 30px 60px;
    margin-top:50px; 
}

.about-section h2{
    font-size:55px;
    color:var(--yellow);
    margin-bottom:10px;
    margin-top:-10px; 

    text-align:center; 
    display:block;
    width:100%;
}

.about-section p{
    max-width:900px;
    margin:15px auto;
    font-size:22px;
    line-height:1.8;
    text-align:justify;
}

/* BENEFICIOS */
.benefits-section{
    background:var(--bg);
    padding:70px 30px;
    text-align:center;
}

.benefits-section h2{
    font-size:45px;
    color:var(--blue-soft);
    margin-bottom:25px;
    text-transform:uppercase;
}

.benefits-list{
    list-style:none;
    padding:0;
    max-width:700px;
    margin:auto;
}

.benefits-list li{
    background:var(--surface);
    margin:12px 0;
    padding:18px;
    border-left:5px solid var(--yellow);
    border-radius:8px;
    font-size:22px;
    text-align:left;
}

/* CARRUSEL */
.carousel{
    overflow:hidden;
    background:var(--surface);
    padding:30px 0;
}

.carousel-track{
    display:flex;
    gap:20px;
    animation:scroll 30s linear infinite;
    width:max-content;
}

.carousel-track img{
    width:380px;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    flex-shrink:0;
}

@keyframes scroll{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}

/* MAPA */
.map-section{
    padding:20px;
    background:var(--surface);
}

.map-section iframe{
    display:block;
    margin:auto;
    max-width:550px;
    width:100%;
    border-radius:15px;
}

.map-title{
    color:#fff;
    font-size:38px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
    margin:0;
}
.map-title-container{
    background:var(--surface);
    text-align:center;
    padding-top:25px;
}

/* CARD */
.card{
    background:linear-gradient(145deg, var(--surface), var(--surface-elevated));
    max-width:700px;
    margin:auto;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 35px var(--shadow);
    border:2px solid rgba(242,183,5,0.7);
}

.card p{
    font-size:22px;
    margin:12px 0;
    letter-spacing:1px;
}

.yellow-text{
    color:var(--yellow);
    font-size:28px;
    text-transform:uppercase;
}

.blue-text{
    color:var(--blue-soft);
    font-size:24px;
    font-weight:bold;
}

.section-yellow .section-title{
    background:var(--blue);
    color:var(--text);
    font-size:30px;
    padding:15px 35px;
    box-shadow:0 5px 15px var(--shadow);
}

/* VIDEO */
.video-section{
    position:relative;
    background: url("../images/video-bg.png") no-repeat left center;
    background-size:cover;
    text-align:center;
    padding:70px 24px;
    overflow:hidden;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
    width:min(92%, 860px);
    margin:auto;
    align-items:stretch;
}

.video-grid img{
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    border:2px solid rgba(242,183,5,0.72);
    border-radius:18px;
    box-shadow:0 16px 32px var(--shadow);
    display:block;
}

/* PLANES */
#planes{
    background:linear-gradient(180deg, var(--surface), var(--surface-soft));
    padding-bottom:48px;
}

.blue-banner{

    background:var(--blue);
    color:var(--text);
    text-align:center;
    padding:15px;
    font-weight:bold;
    font-size:25px;
}

.plans{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    padding:30px;
}

.plan{
    background:var(--surface-elevated);
    width:250px;
    border-radius:15px;
    padding:20px;
    text-align:center;
    transition:0.3s;
}

.plan h2{
    color:var(--yellow);
}

.plan h1{
    font-size:55px;
    color:var(--text);
}

.plan:hover{
    transform:scale(1.1);
    z-index:10;
    box-shadow:0 15px 30px var(--shadow);
}

.large{
    width:530px;
}

/* TABLA */
.table-section{
    background:var(--surface);
    padding:60px 20px;
    text-align:center;
}

.table-section .section-title{
    background:none;
    color:white;
    box-shadow:none;
    padding:0;
    border-radius:0;
    font-size:42px;
    font-weight:bold;
    margin-bottom:30px;
    letter-spacing:1px;
}

table{
    width:90%;
    max-width:900px;
    margin:auto;
    border-collapse:separate;
    border-spacing:0;
    background:var(--surface-elevated);
    border-radius:12px;
    overflow:hidden;

    border:2px solid rgba(242,183,5,0.72); 
    box-shadow:0 10px 25px var(--shadow);
}

th{
    background:var(--yellow);
    color:#000;
    padding:15px;
    font-size:20px;
}

td{
    padding:15px;
    border-bottom:1px solid var(--line);
    font-size:18px;
}

tr:last-child td{
    border-bottom:none;
}

tr:hover{
    background:#232832;
}

/* LOGO */
.logo{
    width:180px;
    max-height:70px;
    height:auto;
    display:block;
    object-fit:contain;
    filter:drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}


.logo-link{
    background:none !important;
    padding:0 !important;
    flex:0 0 auto;
}

.logo-link:hover{
    background:none !important;
    transform:none !important;
    text-shadow:none !important;
}

/* FORM */
.form-section{
    background:linear-gradient(180deg, var(--surface-soft), var(--surface));
    text-align:center;
    padding:60px 20px;
}

.formulario{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;

    background:rgba(7,7,7,0.94); 
    padding:30px;

    border:2px solid rgba(242,183,5,0.72);
    border-radius:20px;
}

.formulario input,
.formulario select{
    padding:15px;
    border:none;
    border-radius:10px;
}


.form-section .section-title{
    background:linear-gradient(90deg, var(--blue), var(--blue-soft));
    color:var(--text);
    font-size:46px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:18px;
    display:inline-block;
    padding:12px 35px;
    border-radius:12px;
    box-shadow:0 8px 20px var(--shadow);
    -webkit-text-stroke:0;
    text-shadow:none;
}

.form-section .section-title::after{
    content:"";
    display:block;
    width:120px;
    height:5px;
    background:var(--yellow);
    margin:8px auto 0;
    border-radius:10px;
}

.formulario button{
    padding:15px 25px;
    border:none;
    background:var(--blue); 
    color:var(--text);
    font-weight:bold;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;

    width:fit-content;
    align-self:flex-end;
}

.formulario button:hover{
    background:var(--blue-soft);
    transform:scale(1.05);
}

/* CONTACTO */
.footer{
    background:linear-gradient(135deg, var(--surface-elevated), var(--surface), #090a0d);
    padding:35px 20px 14px;
}

.contact-info{
    width:100%;
    text-align:center;
}

.contact-info h2{
    margin:0 0 24px;
    color:var(--yellow);
    font-size:34px;
    letter-spacing:0.08em;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
    width:100%;
}

.contact-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:86px;
    padding:18px 20px;
    background:rgba(0,0,0,0.22);
    border:1px solid var(--line);
    border-radius:8px;
    color:#fff;
    font-size:22px;
    font-weight:800;
    text-decoration:none;
    transition:background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.contact-item:hover{
    background:rgba(18,60,156,0.42);
    border-color:rgba(242,183,5,0.74);
    transform:translateY(-3px);
}

.contact-item img{
    flex:0 0 auto;
}

.contact-container{
    max-width:1100px;
    margin:auto;
    width:100%;
}

.contact{
    background:var(--bg);
    max-width:700px;
    margin:auto;
    border-radius:20px;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.copyright{
    text-align:center;
    margin-top:28px;
    font-size:18px;
    color:var(--muted);
}


/*RESPONSIVO*/
@media(max-width:768px){

    html{
        scroll-padding-top:78px;
    }

    body{
        padding-top:80px;
    }

    /* ===== NAVBAR ===== */
    nav{
        display:flex;
        justify-content:space-between;
        align-items:center;
        min-height:80px;
        padding:8px 18px;
    }

    .menu-toggle{
        display:block;
        padding:10px;
    }

    .nav-links{
        position:absolute;
        top:76px;
        left:50%;
        transform:translateX(-50%);
        width:90%;
        max-width:350px;
        background:var(--surface);
        border:1px solid var(--line);
        border-radius:15px;
        flex-direction:column;
        align-items:center;
        overflow:hidden;
        box-shadow:0 10px 25px var(--shadow);
        display:none;
    }

    .nav-links a{
        width:100%;
        text-align:center;
        padding:15px;
        border-bottom:1px solid var(--line);
        border-radius:0;
    }

    #menu-check:checked ~ .nav-links{
        display:flex;
    }

    .logo{
        width:142px;
        max-height:60px;
    }

.logo-link{
    background:none !important;
    padding:0 !important;
}

.logo-link:hover{
    background:none !important;
    transform:none !important;
    text-shadow:none !important;
}

    /* ===== HERO ===== */
    .hero{
    overflow:hidden;
}

   .hero-img{
    width:100%;
    height:auto;
    max-height:none;
}

    /* ===== BANNER ===== */
    .banner{
        font-size:18px;
        padding:15px;
    }
    .about-section h2{
        font-size:28px;
    }

    .about-section p{
        font-size:16px;
    }

    /* ===== BENEFICIOS ===== */
    .benefits-section h2{
        font-size:26px;
    }

    .benefits-list li{
        font-size:16px;
    }

    /* ===== CARRUSEL ===== */
  .carousel-track{
    display:flex;
    gap:20px;
    width:max-content;
}

.carousel-track img{
    max-width:100%;
}


    .plans{
        flex-direction:column;
        align-items:center;
    }

    .plan{
        width:90%;
        max-width:320px;
    }

    .plan h1{
        font-size:40px;
    }

    .plan h2{
        font-size:20px;
    }

    .plan p{
        font-size:16px;
    }

    .large{
        width:90%;
    }


    .plan{
        border:1px solid rgba(242,183,5,0.62);
    }
    .card{
        padding:20px;
    }

    .card p{
        font-size:16px;
    }

    /* ===== VIDEO ===== */
    .video-section{
        padding:38px 16px;
    }

    .video-grid{
        grid-template-columns:1fr;
        gap:14px;
        width:100%;
        max-width:420px;
    }

    .video-grid img{
        border-radius:15px;
    }

    /* ===== MAPA ===== */
    .map-title{
        font-size:22px;
    }

    .location{
        font-size:18px;
    }

    /* ===== TABLA ===== */
    table{
        font-size:14px;
    }

    th, td{
        padding:10px;
    }

    /* ===== FORMULARIO ===== */
    .formulario{
        padding:20px;
    }

    .formulario button{
        width:100%;
        align-self:center;
    }

    .form-section .section-title{
        font-size:24px;

    letter-spacing:1px;

    -webkit-text-stroke: 0;

    text-shadow:none;
    }
    
    /* ===== FOOTER ===== */
    .contact-container{
        padding-left:0;
    }

    .contact-info{
        text-align:center;
    }

    .contact-info h2{
        font-size:26px;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .contact-item{
        min-height:70px;
        font-size:18px;
    }
}
