

html {
    font-size: clamp(14px, 1vw, 18px);
}


* {
    box-sizing: border-box;
}


body {
    background-color: #000000;
    /* negro */
    color: white;
    /* para que el texto se vea sobre fondo negro */
    margin: 0;
    /* elimina márgenes predeterminados para que ocupe toda la pantalla */
}


/* ===== NAVBAR ===== */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

.logo {
    font-size: 18px;
    letter-spacing: 3px;
    color: #ffffff;

}

.gold {
    color: #c5a059;
}

.nav-links a {
    color: rgb(255, 232, 232);
    margin-left: 25px;
    text-decoration: none;
    font-size: 14px;

}

.nav-links a:hover {
    color: var(--oro-suave);

}

/* ===== HERO PILATES ===== */
.hero-pilates {
    background: url('../Imagenes/Html/niños\ saltando.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
    min-height: 70vh;
    padding: 100px 20px 60px;

}

.hero-pilates::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    color: #c5a059;
    font-style: italic;
    margin-bottom: 20px;
}

.hero-content p {
    color: #eee;
    font-size: clamp(0.95rem, 3vw, 1.2rem);
}

/* ===== BENEFICIOS ===== */
.pilates-benefits {
    margin: 60px auto;
    max-width: 1100px;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    color: #c5a059;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #111;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 10px;
    padding: 35px 20px;
    color: #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Icono dorado */
.benefit-card i {
    font-size: 30px;
    color: #c5a059;
    margin-bottom: 15px;
    display: block;
    transition: 0.4s ease;
}

/* Título */
.benefit-card h4 {
    color: #c5a059;
    margin-bottom: 12px;
}

/* Efecto brillo suave */
.benefit-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(197, 160, 89, 0.2),
            transparent 70%);
    transform: rotate(25deg);
    transition: 0.6s;
}

/* Hover elegante */
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.3);
    
}

.benefit-card:hover::before {
    top: 100%;
    left: 100%;
}

/*Galeria de fotos*/

.gallery {
    padding: 60px 5%;
    background-color: #000; /* si tu web es oscura */
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas */
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Imagen grande */
.gallery-item.large {
    grid-row: span 2;
}

/* Hover elegante */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.wide {
    grid-column: span 2; /* ocupa 2 columnas hacia la derecha */
}

/*Table*/

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide,
    .gallery-item.wide-3 {
        grid-column: span 2;
    }
}

/*Movil*/

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.wide,
    .gallery-item.wide-3 {
        grid-column: span 1;
    }

    .gallery-item {
        height: 220px;
    }
}


/* ============================= */
/*   ENTREVISTA CAMPAMENTO      */
/* ============================= */

.entrevista-section {
    border-radius: 10%;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #111, #1a1a1a);
    text-align: center;
    color: white;
}

.entrevista-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.entrevista-texto {
    max-width: 750px;
    margin: 0 auto 40px auto;
    font-size: 17px;
    color: #c5a059;
}

.video-container video {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
}

/* ============================= */
/*   SECCIÓN ENTREVISTA PRO      */
/* ============================= */

.entrevista-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
    text-align: center;
    color: white;
}

/* Encabezado */

.entrevista-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.etiqueta {
    display: inline-block;
    background: #c5a059;
    color: #111;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.entrevista-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.entrevista-header p {
    font-size: 18px;
    color: #c5a059;
    line-height: 1.6;
}

/* Video */

.video-box {
    position: relative;
    max-width: 950px;
    margin: auto;
    cursor: pointer;
}

.video-box img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: transform 0.5s ease;
}

.video-box:hover img {
    transform: scale(1.02);
}

.video-box video {
    width: 100%;
    border-radius: 18px;
    display: none;
}

/* Botón dorado PRO */

.play-dorado {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, #c5a059, #f0d28a);
    color: white;
    font-size: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    transition: all 0.3s ease;
}

.video-box:hover .play-dorado {
    transform: translate(-50%, -50%) scale(1.1);
}

/* brillo sutil */

.play-dorado::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    border: 2px solid rgba(197,160,89,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    70% { transform: scale(1.2); opacity: 0; }
    100% { opacity: 0; }
}

/* SECCIÓN INSTRUCTORA */

.instructora {
    background-color: #000000;
    padding: 60px 20px;
    color: white;
}

.instructora-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.instructora-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.instructora-texto h2 {
    color: #c5a059;
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 10px;
}

.instructora-texto h3 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 20px;
}

.instructora-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-instructora {
    background-color: #d4af37;
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-instructora:hover {
    background-color: white;
    color: black;
}

/*Video*/

.video-section {
    position: relative;
    padding: 100px 10%;
    text-align: center;
    color: white;
    background: #000;
    overflow: hidden;
}

/* Mantener contenido encima */
.video-wrapper {
    position: relative;
    z-index: 2;
}

.video-section h2 {
    color: #c5a059;
    font-size: clamp(1.8rem, 5vw, 36px);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.video-container video {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}



/* RESPONSIVE */

@media (max-width: 900px) {
    .instructora-container {
        flex-direction: column;
        text-align: center;
    }

    .instructora-img img {
        max-width: 300px;
    }
}


/* ===== AUTORIDAD ===== */
.authority {
    background: #111;
    padding: 50px 20px;
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
    font-family: 'Arial', sans-serif;
}

.authority-container h2 {
    font-size: 1.8rem;
    color: #c5a059;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    justify-items: center;
}

.stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.stat p {
    font-size: 1rem;
    color: #ccc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .benefits-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 10px;
    }
}

/*Contacto abajo del todo*/
footer {
    background: #000;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* ===== Dropdown Disciplinas ===== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
    padding: 10px 0;
    display: inline-block;
}

/* Menú desplegable */
.dropdown-content {
    position: absolute;
    top: 100%; /* pegado justo debajo */
    right: 0;
    background-color: #111;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Mostrar al hacer hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Enlaces */
.dropdown-content a {
    display: block;
    padding: 14px 18px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #c5a46d;
    color: black;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .navbar nav {
        display: flex;
        flex-direction: row;
        /* cambia columna a fila */
        justify-content: space-around;
        /* para distribuirlos con espacio */
        width: 100%;
        gap: 10px;
    }

    .navbar nav a,
    .dropbtn {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
        white-space: nowrap;
    }

    /* Dropdown oculto por defecto */
    .dropdown-content {
        display: none;
        position: static;
        background-color: #111;
        border-radius: 8px;
        box-shadow: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Cuando tenga clase show, se muestra */
    .dropdown-content.show {
        display: block;
    }

    .dropdown-content a {
        padding: 12px 15px;
        font-size: 15px;
        border-bottom: 1px solid #333;
    }

    .dropdown-content a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 15px;
        text-align: center;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* ============================= */
/*        INSCRIPCIÓN CAMPUS     */
/* ============================= */

.inscripcion-section {
    padding: 80px 10%;
    background: linear-gradient(to bottom, #000, #0c0c0c);
    text-align: center;
}

.inscripcion-form {
    margin-top: 60px;
    background: #111;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Grid igual proporción que services */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.inscripcion-form h3 {
    color: #c5a059;
    margin: 70px 0 25px;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.inscripcion-form h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #c5a059;
    margin-top: 10px;
}

.inscripcion-form input {
    background: #0d0d0d;
    border: 1px solid #222;
    padding: 18px 20px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.inscripcion-form input::placeholder {
    color: #666;
}

.inscripcion-form input:focus {
    border-color: #c5a059;
    box-shadow: 0 0 0 3px rgba(197,160,89,0.15);
    outline: none;
    transform: translateY(-2px);
}

/* Botón igual estilo premium */
.btn-inscripcion {
    display: block;
    margin: 50px auto 0;
    margin-top: 50px;
    padding: 16px 50px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(135deg, #c5a059, #e6c17c);
    color: black;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-inscripcion:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197,160,89,0.4);
}
/* ============================= */
/*        INFO DESCUENTO         */
/* ============================= */

.info-box {
    margin-top: 60px;
    padding: 20px;
    border: 1px solid var(--oro-suave);
    color: #ddd;
    font-size: 14px;
}

/* ============================= */
/*        AUTORIZACIÓN           */
/* ============================= */

.autorizacion-box {
    margin-top: 40px;
    padding: 40px;
    border-radius: 18px;
    background: #0d0d0d;
    border: 1px solid rgba(197,160,89,0.15);
}

.autorizacion-text {
    color: var(--oro-suave);
    margin-bottom: 30px;
    font-weight: 600;
}

.radio-group {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    color: #ccc;
}

.radio-group input[type="radio"] {
    accent-color: #c5a059;
    transform: scale(1.2);
    cursor: pointer;
}

.firma-block label {
  display: block;
  color: #c5a059;
  margin-bottom: 10px;
  font-weight: 600;
}

.firma-block canvas {
  cursor: crosshair;
}

.check-final input[type="checkbox"] {
    accent-color: #c5a059;
    transform: scale(1.2);
    margin-right: 8px;
    cursor: pointer;
}

.firma-block canvas {
    width: 100%;
    max-width: 400px;
    height: 150px;
}

/* ============================= */
/*        RESPONSIVE MÓVIL       */
/* ============================= */

@media (max-width: 768px) {

    .inscripcion-section {
        padding: 60px 20px;
    }

    .inscripcion-form {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-inscripcion {
        width: 100%;
        padding: 18px;
    }

    .firma-block canvas {
        width: 100%;
        height: 180px;
    }
}

.infantil{
    text-align: center;
    background-color: #c5a059;
    color: #000;
}

.benefits-description {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #0a0a0a, #111);
}

.container-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ccc;
    line-height: 1.9;
    font-size: 18px;
}

.benefits-title {
    color: #c5a059;
    font-size: 32px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.intro {
    font-size: 22px;
    color: #fff;
    margin-bottom: 40px;
}

.intro span {
    color: #c5a059;
    font-weight: 500;
}

.container-text p {
    margin-bottom: 30px;
}