/* Configuración Global */
html {
    scroll-behavior: smooth;
}

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

body {
    background-color: #0c0d0c;
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Secciones Full Screen */
.hero,
.info-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.info-section {
    border-top: 1px solid #333;
}

/* NUEVA: Instrucción de Video */
.video-instruction {
    margin-bottom: 25px;
    animation: fadeIn 2s ease-in;
}

.video-instruction p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #e0e0e0;
    text-transform: uppercase;
}

.video-instruction strong {
    color: #ff5722;
    display: block;
    font-size: 1.5rem;
    margin-top: 5px;
}

.video-arrows-down {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    color: #ff5722;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Video */
.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0px 10px 30px rgba(255, 87, 34, 0.2);
}

.media-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NUEVO: Botón WhatsApp Estilo Oficial */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25d366;
    /* Verde WhatsApp */
    color: #fff;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 15px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    background-color: #1ebe57;
    box-shadow: 0px 12px 25px rgba(37, 211, 102, 0.5);
}

/* Títulos de sección */
.section-title {
    font-size: 2rem;
    color: #ff5722;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* NUEVO: Disclaimer de Costos Mensuales */
.monthly-disclaimer {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 30px;
    display: block;
}

.monthly-disclaimer::before,
.monthly-disclaimer::after {
    content: " — ";
}

/* Tablas de Horarios */
.schedule-block {
    width: 100%;
    margin-bottom: 40px;
}

.schedule-block h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 87, 34, 0.05);
}

th,
td {
    border: 1px solid #ff5722;
    padding: 15px;
    font-size: 0.9rem;
}

th {
    background: #ff5722;
    color: #000;
    font-weight: 700;
}

td span {
    color: #ff5722;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

/* Tarjetas de Costos */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
}

.price-card {
    border: 1px solid #444;
    padding: 25px;
    border-radius: 10px;
    background: #1a1a1a;
    transition: transform 0.3s ease;
}

.class-count {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.class-count span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.price-row {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 10px 0;
}

.full-pass {
    background: linear-gradient(135deg, #ff5722, #ff8a50);
    border: none;
    color: #000;
}

.full-pass h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
}

.full-pass .price-value {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Indicador de Scroll (Flechas) */
.scroll-link {
    text-decoration: none;
    color: #666;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ff5722;
    border-right: 2px solid #ff5722;
    transform: rotate(45deg);
    margin: -5px;
    animation: scroll-arrow 2s infinite;
}

@keyframes scroll-arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Logo Footer */
.mini-logo {
    max-width: 160px;
    /* Tamaño duplicado */
    height: auto;
    opacity: 0.8;
    display: block;
    margin: 40px auto 20px;
}

@media (max-width: 600px) {
    .btn-whatsapp {
        width: 100%;
    }

    .price-card {
        padding: 15px;
    }
}

/* Estilos para el Mapa */
.map-container {
    width: 100%;
    max-width: 800px;
    border: 2px solid #ff5722;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(255, 87, 34, 0.1);
    margin-bottom: 20px;
}

.map-container iframe {
    display: block;
    filter: grayscale(0.3) contrast(1.1);
    /* Opcional: le da un toque más elegante para combinar con el sitio */
}

@media (max-width: 600px) {
    .map-container iframe {
        height: 300px;
        /* Un poco más corto en móviles para que no ocupe toda la pantalla */
    }

    .btn-whatsapp {
        width: 100%;
        padding: 12px 20px;
        /* Reducimos el relleno vertical */
        font-size: 0.95rem;
        /* Reducimos un poco el texto */
        gap: 8px;
        /* Espacio más pequeño entre icono y texto */
    }
}