/* 
Elite Futbol Experience - Professional Soccer Training Programs
CSS Styles 
*/

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a7e;
    --secondary-color: #e4b528;
    --accent-color: #d63031;
    --dark-color: #222831;
    --light-color: #f8f9fa;
    --gray-color: #a0a0a0;
    --success-color: #28a745;
    /* Qué hacemos section */
    --navy: #0B1F3B;
    --navy-2: #0F2A52;
    --gold-accent: #C8A24A;
    --text-dark: #0E1726;
    --muted: #51607A;
    --bg-light: #F7F9FC;
    --card-glass: rgba(255,255,255,.78);
    --stroke-light: rgba(15,42,82,.12);
    --shadow-whatwe: 0 18px 45px rgba(11,31,59,.12);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
}

/* Páginas sin barra fija (ej. formulario tras pago) */
body.page-no-header {
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.left-align {
    text-align: left;
    margin-left: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 1.5rem;
}

.section-header h2:after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(228, 181, 40, 0.3);
}

.section-header.left-align h2:after {
    left: 0;
    transform: none;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 58, 126, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 181, 40, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-hero-camp {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a83a 100%);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(228, 181, 40, 0.4);
}

.btn-hero-camp::before {
    background: rgba(255, 255, 255, 0.3);
}

.btn-hero-camp:hover {
    background: linear-gradient(135deg, #e8b938 0%, var(--secondary-color) 100%);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(228, 181, 40, 0.5);
}

.btn-hero-camp::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 12px;
    margin-left: 8px;
    vertical-align: middle;
    background: url('images/bandera-usa.webp') no-repeat center/contain;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Header & Navigation */
body > header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(7, 20, 40, 0.35);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    transform: translateY(0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body > header.main-header.hidden {
    transform: translateY(-100%);
}

body > header.main-header.scrolled {
    background: rgba(7, 20, 40, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
    padding: 10px 0;
}

body > header.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body > header.main-header .logo-language-wrapper {
    flex-shrink: 0;
}

.logo {
    flex: 0 0 auto;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0;
    color: #FFFFFF;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.logo h1 span {
    color: var(--secondary-color);
    font-weight: 700;
}

.brand-wordmark {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.brand-wordmark span {
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle i {
    transition: all 0.3s ease;
}

/* Navegación */
nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

nav ul li a:after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.cta-button {
    background-color: var(--secondary-color);
    color: #0b1f3b;
    padding: 10px 20px;
    border-radius: 4px;
}

nav ul li a.cta-button:hover {
    background-color: #f1c84b;
}

nav ul li a.cta-button:after {
    display: none;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    margin-left: 8px;
    border-radius: 4px;
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.language-option:hover, 
.language-option.active {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.flag-icon {
    width: 20px;
    height: 14px;
    margin-right: 4px;
    border: 1px solid #e0e0e0;
    object-fit: cover;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    /* Reposicionamiento de elementos en móvil */
    .logo-language-wrapper {
        display: flex;
        width: 100%;
        position: relative;
        padding: 10px 0;
        justify-content: center;
    }
    
    /* Logo centrado */
    .logo {
        text-align: center;
        margin: 0 auto;
    }
    
    .logo h1 {
        font-size: 1.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.3;
    }
    
    .logo h1 span:last-child {
        display: block;
        margin-top: 3px;
        font-size: 1.3rem;
    }
    
    /* Banderas a la izquierda una debajo de otra */
    .language-selector {
        position: absolute;
        left: 10px;
        top: 22px;
        flex-direction: column;
        margin: 0;
    }
    
    .language-option {
        margin: 2px 0;
        padding: 3px 6px;
    }
    
    .flag-icon {
        width: 18px;
        height: 12px;
    }
    
    /* Menú de navegación */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #071428 0%, #0d1f4a 45%, #0a1830 100%);
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        overflow-y: auto;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    /* Fondo oscuro al abrir menú */
    .main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: -20%;
        width: 20%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav ul li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 8px 0;
        font-size: 1.1rem;
        color: #FFFFFF;
        text-shadow: none;
    }
    
    .main-nav ul li a.active {
        color: var(--secondary-color);
        font-weight: 600;
    }
    
    .main-nav ul li a:hover {
        color: var(--secondary-color);
    }
    
    .main-nav ul li a.cta-button {
        display: inline-block;
        margin-top: 10px;
        text-align: center;
        background-color: var(--secondary-color);
        color: #0b1f3b !important;
    }
    
    .main-nav ul li a.cta-button:hover {
        background-color: #f1c84b;
        color: #071428 !important;
    }
    
    /* Animación para el icono hamburguesa */
    .mobile-menu-toggle i {
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-toggle i.fa-times {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    body > header.main-header {
        padding-top: 20px;
    }
    /* Estilo para que "Experience" aparezca debajo de "Elite Futbol" */
    .logo h1 {
        font-size: 1.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.3;
        margin-top: 6px;
    }
    
    .logo h1 span:last-child {
        display: block;
        margin-top: 3px;
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle {
        top: 25px;
    }
    
    .language-selector {
        top: 25px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    padding: 0;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
    width: 100%;
    box-sizing: border-box;
    background: url('images/butarque-3_jpg.webp') no-repeat center center/cover;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(4, 16, 31, 0.72) 0%,
        rgba(4, 16, 31, 0.78) 45%,
        rgba(4, 16, 31, 0.88) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 52px 0 72px;
    width: 100%;
    box-sizing: border-box;
}

.hero--video {
    height: auto;
    min-height: 0;
    padding: 0;
    margin-top: -100px;
    padding-top: 100px;
}

.hero--video .overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62));
}

.hero-video {
    position: relative;
    width: min(620px, 100%);
    margin: 16px auto 12px;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #000;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-cta-meeting {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px auto 0;
    background: var(--secondary-color);
    border: 1px solid rgba(228, 181, 40, 0.75);
    color: #0b1f3b;
    box-shadow: 0 14px 34px rgba(228, 181, 40, 0.22);
    padding: 14px 28px;
    border-radius: 999px;
}

.hero-cta-meeting:hover {
    background: #f1c84b;
    border-color: rgba(241, 200, 75, 0.95);
    color: #081a35;
    box-shadow: 0 18px 40px rgba(228, 181, 40, 0.28);
    transform: translateY(-2px);
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: #FFFFFF;
    letter-spacing: normal;
    line-height: 1.2;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.55),
        0 8px 28px rgba(0, 0, 0, 0.75);
    animation: fadeInDown 1s ease-out;
}

.hero-content h2 .hero-title-accent {
    color: var(--secondary-color);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.45),
        0 4px 18px rgba(228, 181, 40, 0.28);
}

.hero-content h2 .hero-title-sep {
    color: rgba(228, 181, 40, 0.72);
    font-weight: 500;
    padding: 0 0.12em;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #FFFFFF;
    opacity: 1;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.65);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero: look premium (título + subtítulo) */
.hero--video .hero-content h2 {
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(228, 181, 40, 0.92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
}

.hero--video .hero-content p {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

/* Hero video: compacto para ver todo sin scroll */
.hero--video .hero-content {
    padding: 44px 0 44px;
}

.hero--video .hero-video {
    width: min(560px, 100%);
    margin: 16px auto 18px;
}

@media (max-width: 576px) {
    .hero--video .hero-video {
        width: min(420px, 100%);
        margin: 18px auto 16px;
        border-radius: 16px;
    }

    /* Más aire entre navbar fijo y título en mobile */
    .hero--video .hero-content {
        padding-top: 72px;
        padding-bottom: 68px;
    }

    .hero--video .hero-content h2 {
        margin-bottom: 18px;
    }

    .hero--video .hero-content p {
        margin-bottom: 24px;
        line-height: 1.55;
    }

    .hero--video .hero-cta-meeting {
        margin-top: 12px;
    }
}

.hero--video .hero-cta-meeting {
    margin-top: 18px;
    padding: 12px 22px;
}

@media (max-height: 780px) {
    .hero--video .hero-content {
        padding: 26px 0 34px;
    }

    .hero--video .hero-video {
        width: min(520px, 100%);
    }
}

.hero--video .hero-content p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Club Trust Bar - logos below hero (azul alineado con Nuestro trabajo) */
.club-trust-bar {
    padding: 32px 20px;
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(26, 58, 126, 0.4), transparent 55%),
        linear-gradient(180deg, #071428 0%, #0d1f4a 48%, #0a1830 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.club-trust-bar-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-align: center;
}
.club-trust-bar-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.club-trust-bar-logos img {
    height: 64px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
    opacity: 0.95;
    transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
.club-trust-bar-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}
@media (max-width: 576px) {
    .club-trust-bar {
        padding: 24px 16px;
    }
    .club-trust-bar-logos {
        gap: 32px;
    }
    .club-trust-bar-logos img {
        height: 52px;
    }
}

/* Nuestro trabajo - premium layout 2 columnas (fondo azul alineado con contacto) */
.work {
    padding: clamp(56px, 6vw, 88px) 0;
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(26, 58, 126, 0.35), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(228, 181, 40, 0.08), transparent 50%),
        linear-gradient(135deg, #071428 0%, #0d1f4a 42%, #0a1830 72%, #132a52 100%);
    color: rgba(255, 255, 255, 0.92);
    scroll-margin-top: 110px;
}

.work__container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.work__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
}

.work__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.work__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work__title {
    margin: 12px 0 16px;
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: #fff;
    max-width: 18ch;
}

.work__lead {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 1.1vw, 1.0625rem);
    line-height: 1.6;
    max-width: 54ch;
}

.work__lead strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.work__text {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.work__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 62ch;
}

.work__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.work__pillar {
    padding: 14px 14px 15px;
    border: 1px solid rgba(15, 42, 82, 0.13);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 252, 0.88));
    box-shadow: 0 10px 28px rgba(11, 31, 59, 0.08);
}

.work__pillar-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--navy-2, #0F2A52);
    background: rgba(15, 42, 82, 0.09);
    font-size: 13px;
}

.work__pillar p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #1f2f4a;
    font-weight: 600;
}

.work__right {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: clamp(14px, 1.8vw, 20px);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
}

/* Alineación visual: bajar bloque derecho en desktop */
@media (min-width: 981px) {
    .work__right {
        margin-top: 16px;
    }
}

.work__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: #000;
}

.work__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(6, 17, 37, 0.74), rgba(8, 24, 49, 0.12) 58%, rgba(200, 162, 74, 0.16)),
        linear-gradient(0deg, rgba(6, 17, 37, 0.34), transparent 48%);
}

.work__video {
    position: absolute;
    inset: 0;
    background: #000;
}

.work__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.work__badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
}

.work__badge strong {
    display: block;
    font-size: 1rem;
    line-height: 1.15;
    margin-bottom: 2px;
}

.work__badge span {
    display: block;
    font-size: 11px;
    opacity: 0.92;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.work__features {
    list-style: none;
    padding: 0;
    margin: 18px 0 18px;
    display: grid;
    gap: 10px;
}

.work__right .work__features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.work__right .work__check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 181, 40, 0.22);
    border: 1px solid rgba(228, 181, 40, 0.35);
    color: var(--secondary-color);
    font-weight: 800;
    flex: 0 0 22px;
    margin-top: 1px;
    font-size: 13px;
}

.work__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.work__cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    padding: 12px 14px;
    min-height: 46px;
    border-radius: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.work__cta .btn--primary {
    background: linear-gradient(180deg, #204892, #0b1f3b);
    color: #fff;
    border: none;
    box-shadow: 0 12px 26px rgba(11, 31, 59, 0.24);
}

.work__cta .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(11, 31, 59, 0.28);
}

.work__cta .btn--ghost {
    background: var(--secondary-color);
    border: 1px solid rgba(228, 181, 40, 0.75);
    color: #0b1f3b;
    box-shadow: 0 10px 24px rgba(228, 181, 40, 0.22);
}

.work__cta .btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(241, 200, 75, 0.95);
    background: #f1c84b;
    color: #0b1f3b;
    box-shadow: 0 14px 30px rgba(228, 181, 40, 0.28);
}

.work__trust {
    margin: 14px 2px 2px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Pasos del proceso: panel cristal sobre el mismo azul de la sección */
.work__process-band {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    padding: 20px 18px 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    align-self: stretch;
    box-sizing: border-box;
}

.work__process-lead {
    text-align: left;
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.work__process-lead::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 10px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--secondary-color), rgba(228, 181, 40, 0.35));
}

.work__process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 14px;
}

.work__process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 14px 8px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    min-width: 0;
}

.work__process-step:hover {
    border-color: rgba(228, 181, 40, 0.45);
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.work__process-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(228, 181, 40, 0.22), rgba(255, 255, 255, 0.12));
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.work__process-label {
    font-size: 0.8125rem;
    line-height: 1.38;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    max-width: 100%;
    hyphens: auto;
    -webkit-hyphens: auto;
}

@media (max-width: 620px) {
    .work__process-band {
        padding: 18px 14px 20px;
    }

    .work__process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
    }

    .work__process-icon {
        width: 38px;
        height: 38px;
        font-size: 0.88rem;
    }

    .work__process-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .work__process-steps {
        gap: 8px 10px;
    }

    .work__process-label {
        font-size: 0.6875rem;
    }
}

@media (max-width: 1120px) {
    .work__pillars {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .work__grid {
        grid-template-columns: 1fr;
    }

    .work__title {
        max-width: none;
    }

    .work__right {
        padding: 14px;
    }

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

@media (max-width: 620px) {
    .work {
        padding: 48px 0;
    }

    .work__container {
        padding: 0 15px;
    }

    .work__left {
        align-items: center;
        text-align: center;
    }

    .work__eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .work__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .work__lead {
        font-size: 0.9375rem;
    }

    .work__lead,
    .work__text,
    .work__text p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .work__process-lead {
        text-align: center;
    }

    .work__process-lead::after {
        margin-left: auto;
        margin-right: auto;
    }

    .work__right .work__features li {
        font-size: 0.875rem;
    }

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

    .work__cta .btn {
        width: 100%;
    }
}

@media (max-width: 620px) {
    /* Contact: centrar bloque y CTA principal en mobile */
    .contact .section-header {
        text-align: center;
    }

    .contact-payment-first {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .contact-payment-first__hint,
    .contact-payment-first__credit,
    .contact-payment-notice {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .contact-payment-first__cta {
        max-width: 100%;
    }
}

/* Programs block titles and intro */
.programs-block {
    margin-bottom: 48px;
}
.programs-block:last-of-type {
    margin-bottom: 0;
}
.programs-block-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    font-weight: 700;
}
.programs-block-intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 28px 0;
    max-width: 720px;
}
.program-best-for {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: -4px 0 12px 0;
}
.program-price-below {
    margin-top: 16px !important;
    margin-bottom: 12px !important;
}

/* Tryout International Camp - Sección temporal */
.tryout-camp {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1f4a 0%, #1a3a7e 35%, #243d6a 70%, #1a3a7e 100%);
    color: white;
}

.tryout-camp-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/stadium-background-new.jpg') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.tryout-camp-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.tryout-top-crest {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tryout-top-crest img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.tryout-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tryout-location {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tryout-date {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.tryout-tagline {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 20px;
}

.tryout-meta {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tryout-duration {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 12px;
}

.tryout-price {
    font-size: 1.25rem;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(228, 181, 40, 0.4);
    width: fit-content;
}
.tryout-price-original {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1.1rem;
}
.tryout-price-early {
    font-size: 0.95rem;
    opacity: 0.95;
}
.tryout-price .tryout-price-amount {
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.tryout-deposit {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 12px 0 0 0;
}

.tryout-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(228, 181, 40, 0.6);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    width: 100%;
    box-sizing: border-box;
}

.tryout-highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary-color), #f5c842);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tryout-highlight-text-wrap {
    text-align: left;
}

.tryout-highlight-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: var(--secondary-color);
}

.tryout-highlight-desc {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

.tryout-benefits {
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 24px 28px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.tryout-benefits li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
    max-width: 100%;
}

.tryout-benefits li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tryout-benefits li span {
    text-align: left;
    min-width: 0;
    flex: 1;
}

.tryout-age {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: -8px 0 32px 0;
}

.tryout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    text-align: left;
    align-items: stretch;
    width: 100%;
}

.tryout-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
    min-height: 0;
}

.tryout-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.tryout-block p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 12px;
    opacity: 0.95;
}

.tryout-block p:last-child {
    margin-bottom: 0;
}

.tryout-about-punch {
    font-weight: 700;
    color: white !important;
    margin-top: 14px !important;
}

.tryout-spain-intro {
    margin-bottom: 14px !important;
}

.tryout-spain-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}

.tryout-spain-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
}

.tryout-spain-list li i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.tryout-merit {
    font-size: 0.9rem !important;
    font-weight: 600;
    font-style: italic;
    opacity: 0.95 !important;
}

.tryout-who {
    text-align: left;
    margin-bottom: 24px;
    padding: 24px 28px;
    width: 100%;
    box-sizing: border-box;
}

.tryout-who-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.tryout-who-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
}

.tryout-who-list li i {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.tryout-who-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0 !important;
}

.tryout-urgency {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 28px;
    opacity: 0.95;
}

.tryout-cta {
    background: linear-gradient(135deg, var(--secondary-color), #f5c842);
    border: 2px solid var(--secondary-color);
    color: var(--dark-color);
    font-weight: 700;
    padding: 16px 40px;
    font-size: 1rem;
}

.tryout-cta:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.tryout-cta i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .tryout-camp {
        padding: 60px 20px;
    }
    .tryout-title {
        font-size: 1.75rem;
    }
    .tryout-location {
        font-size: 1rem;
    }
    .tryout-tagline {
        font-size: 1rem;
    }
    .tryout-highlight {
        flex-direction: column;
        padding: 20px 16px;
        text-align: center;
    }
    .tryout-highlight-text-wrap {
        text-align: center;
    }
    .tryout-highlight-title {
        font-size: 1.05rem;
    }
    .tryout-highlight-desc {
        font-size: 0.9rem;
    }
    .tryout-benefits {
        padding: 20px 20px;
    }
    .tryout-benefits li {
        justify-content: flex-start;
    }
    .tryout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tryout-block {
        padding: 20px;
    }
    .tryout-urgency {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .tryout-top-crest img {
        width: 64px;
        height: 64px;
    }
    .tryout-title {
        font-size: 1.5rem;
    }
    .tryout-block-title {
        font-size: 1.1rem;
    }
}

/* Program Cards */
.programs {
    padding: 100px 0;
    position: relative;
    background: url('images/estadio-cd-leganes.jpg') no-repeat center center/cover;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.85));
    z-index: 0;
}

.programs .container {
    position: relative;
    z-index: 1;
}

.programs .section-header h2,
.programs .section-header p {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.programs .section-header p {
    color: rgba(255, 255, 255, 0.92);
}

.programs .programs-block-title {
    color: #fff !important;
}

.programs .programs-block-intro {
    color: rgba(255, 255, 255, 0.88) !important;
}

/* Cards glass/transparentes en la sección con fondo de estadio */
.programs .program-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.programs .program-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.programs .program-content h3 {
    color: #fff;
}

.programs .program-content .program-best-for,
.programs .program-content .program-description,
.programs .program-content ul li,
.programs .program-content .note {
    color: rgba(255, 255, 255, 0.9);
}

.programs .program-content ul li i {
    color: var(--secondary-color);
}

.programs .program-content .price {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    background: none;
}

.programs .program-content .educational-requirements {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--secondary-color);
}

.programs .program-content .educational-requirements h4,
.programs .program-content .requirements-list p {
    color: rgba(255, 255, 255, 0.95);
}

.programs .program-card .btn {
    background: var(--secondary-color);
    border: 1px solid rgba(228, 181, 40, 0.75);
    color: #0b1f3b;
    box-shadow: 0 10px 24px rgba(228, 181, 40, 0.22);
}

.programs .program-card .btn:hover {
    background: #f1c84b;
    border-color: rgba(241, 200, 75, 0.95);
    color: #0b1f3b;
    box-shadow: 0 14px 30px rgba(228, 181, 40, 0.28);
}

/* Short-term: el ul crece y empuja precio+notas abajo; solo el botón tiene margin-top: auto */
.program-card--short .program-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card--short .program-content ul {
    flex: 1 0 auto;
}

.program-card--short .program-content .btn {
    margin-top: auto;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.program-cards .program-card {
    height: 100%;
    min-height: 0;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.program-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.featured {
    border: 2px solid var(--secondary-color);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: -5px;
    background: linear-gradient(135deg, var(--secondary-color), #f5c842);
    color: var(--dark-color);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(228, 181, 40, 0.4);
    border-radius: 4px;
    transform: rotate(5deg);
    letter-spacing: 1px;
}

.featured-tag::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f5c842;
}

@media (max-width: 576px) {
    .featured-tag {
        top: 10px;
        right: -3px;
        padding: 6px 15px;
        font-size: 0.7rem;
    }
}

.premium {
    position: relative;
}

.premium-tag {
    display: none;
}

.program-image {
    position: relative;
}

.program-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.program-duration {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    font-weight: 600;
}

.program-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.program-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.program-content .price {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.program-content .program-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.program-content .note {
    font-size: 14px;
    font-style: italic;
    color: #777;
    margin-top: 10px;
    margin-bottom: 15px;
}

.program-content .educational-requirements {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.program-content .educational-requirements h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.program-content .requirements-list p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.program-content .requirements-list i {
    color: var(--primary-color);
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.program-content ul {
    margin-bottom: 15px;
}

.program-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: baseline;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.program-content ul li:hover {
    padding-left: 5px;
    background-color: rgba(26, 58, 126, 0.02);
    border-radius: 4px;
}

.program-content ul li:last-child {
    border-bottom: none;
}

.program-content ul li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.program-content ul li:hover i {
    transform: scale(1.2);
}

.program-content .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/foto-facha-caminando.JPG') no-repeat center center/cover;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

@media (max-width: 768px) {
    .why-us {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
}

.why-us .section-header h2 {
    color: white;
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

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

.feature {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 181, 40, 0.1), transparent);
    transition: left 0.5s;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    background-color: rgba(0, 0, 0, 0.6);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.feature-icon {
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    background: url('images/foto-facha-caminando.JPG') no-repeat center center/cover;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.88));
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-header h2,
.about .section-header p {
    color: #fff;
}

.about .about-text p,
.about .about-text a {
    color: rgba(255, 255, 255, 0.92);
}

.about .about-text a:hover {
    color: var(--secondary-color);
}

.about .btn {
    border-color: rgba(255, 255, 255, 0.6);
}

.about .btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
}

.about-content {
    gap: 50px;
}

.about-image {
    position: relative;
    margin: 0 auto;
    max-width: 620px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
    width: 100%;
    display: block;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text .btn {
    margin-top: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('images/exito-casos.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}


.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Carrusel: jugadores en CD Leganés */
.testimonials--journey .journey-carousel {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.journey-carousel__viewport {
    flex: 1;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    transition: height 0.35s ease;
}

.journey-carousel__track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.journey-carousel__slide {
    flex: 0 0 100%;
    margin: 0;
    min-width: 0;
    align-self: flex-start;
}

.journey-carousel__slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(72vh, 640px);
}

.journey-carousel__btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.journey-carousel__btn:hover,
.journey-carousel__btn:focus-visible {
    background: rgba(228, 181, 40, 0.25);
    border-color: var(--secondary-color);
    color: #fff;
    outline: none;
}

.journey-carousel__btn:active {
    transform: scale(0.96);
}

.journey-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.journey-carousel__dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.journey-carousel__dots button.is-active {
    background: var(--secondary-color);
    transform: scale(1.15);
}

@media (max-width: 620px) {
    .testimonials--journey .journey-carousel {
        gap: 6px;
        max-width: 100%;
    }

    .journey-carousel__btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .journey-carousel__slide img {
        max-height: min(65vh, 520px);
    }
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 300px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 6rem;
    color: rgba(228, 181, 40, 0.2);
    line-height: 1;
    font-weight: 700;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5) !important;
    border-color: var(--secondary-color);
    background-color: rgba(0, 0, 0, 0.7);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: white;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Facilities Section */
.facilities {
    padding: 100px 0;
    position: relative;
    background: url('images/estadio-cd-leganes.jpg') no-repeat center center/cover;
}

.facilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 0;
}

.facilities .container {
    position: relative;
    z-index: 1;
}

.facilities .section-header h2,
.facilities .section-header p {
    color: #fff;
}

.facility-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.facility-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.facility-image:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.facility-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.facility-image:hover img {
    transform: scale(1.15);
}

.facility-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #071428 0%, #0d1f4a 50%, #091a35 100%);
    color: #fff;
}

.contact .section-header h2,
.contact .section-header p {
    color: #fff;
}

.contact .form-group label {
    color: rgba(255, 255, 255, 0.95);
}

.contact .form-group input,
.contact .form-group select,
.contact .form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact .form-group input:focus,
.contact .form-group select:focus,
.contact .form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(228, 181, 40, 0.2);
}

.contact .contact-info h4 {
    color: #fff;
}

.contact .contact-info p,
.contact .contact-info a {
    color: rgba(255, 255, 255, 0.9);
}

.contact .contact-info a:hover {
    color: var(--secondary-color);
}

.contact .btn {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
}

.contact .btn:hover {
    background: #f1c84b;
    border-color: #f1c84b;
}

.contact .info-item {
    background: rgba(255, 255, 255, 0.08);
}

.contact .info-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.contact .info-item i {
    color: var(--secondary-color);
}

.contact .info-box {
    background: rgba(255, 255, 255, 0.08);
}

.contact .info-box h4 {
    color: #fff;
}

.contact .info-box ol li {
    color: rgba(255, 255, 255, 0.9);
}

/* Proceso de solicitud — franja horizontal */
.application-process {
    width: 100%;
    max-width: 1100px;
    margin: 48px auto 0;
    padding: 22px 18px 26px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.application-process__heading {
    margin: 0 0 18px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.application-process__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.application-process__step {
    flex: 1 1 0;
    min-width: 112px;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 12px 8px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.application-process__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dark-color);
    background: var(--secondary-color);
    flex-shrink: 0;
}

.application-process__text {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.application-process__arrow {
    flex: 0 0 auto;
    align-self: center;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid rgba(228, 181, 40, 0.55);
    margin: 0 2px;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .application-process__track {
        justify-content: flex-start;
        gap: 8px;
    }

    .application-process__step {
        min-width: 118px;
    }

    .application-process__arrow {
        display: none;
    }

    .application-process__step:not(:last-child) {
        border-right: none;
    }
}

@media (max-width: 520px) {
    .application-process {
        margin-top: 36px;
        padding: 16px 12px 20px;
    }

    .application-process__text {
        font-size: 0.72rem;
    }
}

.contact-payment-first__credit {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(228, 181, 40, 0.4);
    background: rgba(228, 181, 40, 0.1);
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.contact-payment-first__credit strong {
    color: #fff;
    font-weight: 700;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 58, 126, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    color: var(--gray-color);
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.info-item {
    display: flex;
    margin-bottom: 35px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.info-item:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
    padding-top: 5px;
    transition: all 0.3s ease;
}

.info-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .info-item {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .info-item:hover {
        transform: none;
    }
    
    .info-item i {
        font-size: 1.5rem;
        margin-right: 15px;
        min-width: 35px;
    }
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.info-box h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-box ol {
    padding-left: 20px;
    list-style-type: decimal;
}

.info-box ol li {
    padding: 8px 0;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: url('images/estadio-cd-leganes.jpg') no-repeat center center/cover;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    opacity: 0.58;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta .btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 700;
}

.cta .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 2;
    min-width: 250px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo h3 span {
    color: var(--secondary-color);
}

.footer-logo p {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.footer-links,
.footer-programs,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

footer h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
}

footer ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom ul {
    display: flex;
    gap: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
    z-index: 2;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 15px;
        font-size: 0.7rem;
    }
    
    .scroll-indicator i {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding-bottom: 80px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 44px;
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 1.85rem !important;
        padding: 0;
        width: 100%;
        margin-top: 15px;
        letter-spacing: -0.01em;
        line-height: 1.25;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
        padding: 0;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.scroll-indicator span {
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: scrollDown 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    body > header.main-header {
        padding: 15px 0;
    }
    
    body > header.main-header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 20px;
        width: 100%;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom ul {
        justify-content: center;
    }
    
    .language-selector {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    @media (max-width: 576px) {
        body > header.main-header .container {
            flex-direction: column;
        }
        
        .logo-language-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 80px;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .hero {
        min-height: 500px;
        padding-top: 120px;
        margin-top: -80px;
    }
    
    .hero-content {
        padding-bottom: 100px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 40px;
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 1.7rem !important;
        line-height: 1.25;
        margin-bottom: 20px;
        margin-top: 20px;
        padding: 0;
        width: 100%;
        letter-spacing: -0.01em;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 30px;
        padding: 0;
        width: 100%;
    }
    
    .hero-buttons {
        padding: 0;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .program-card {
        min-width: 100%;
    }
    
    .program-content {
        padding: 18px 12px;
    }
    
    .program-content ul li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form,
    .contact-info {
        min-width: 100%;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 25px 20px;
    }
    
    .testimonial {
        min-width: 100%;
        padding: 25px 20px;
    }
    
    .facility-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-text {
        padding: 0 15px;
    }
    
    .about-image {
        padding: 0 15px;
    }

    .about-image {
        max-width: 520px;
    }
    
    .why-us,
    .testimonials {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .cta p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-logo,
    .footer-links,
    .footer-programs,
    .footer-contact {
        min-width: 100%;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.65rem;
    }
    
    .scroll-indicator i {
        font-size: 1rem;
    }
}

/* Update header container for language selector */
body > header.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Make logo smaller to accommodate language selector */
.logo {
    flex: 0 0 auto;
}

/* Media query updates for language selector */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    body > header.main-header .container {
        flex-direction: column;
    }
    
    /* Keep language selector on same row as logo on smaller screens */
    @media (max-width: 576px) {
        body > header.main-header .container {
            flex-direction: column;
        }
        
        .logo-language-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
    }
}

/* Estilos para validación de formularios */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #d63031 !important;
    box-shadow: 0 0 0 1px rgba(214, 48, 49, 0.2);
    background-color: rgba(214, 48, 49, 0.05);
}

.error-message {
    color: #d63031;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in-out;
}

.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    animation: slideInRight 0.3s ease-out;
    max-width: calc(100% - 40px);
}

@media (max-width: 576px) {
    .success-message {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: calc(100% - 30px);
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

.success-message i {
    margin-right: 10px;
    font-size: 1.3rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Estilos para el indicador de carga */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
    .program-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .programs {
        padding: 60px 0;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .program-card {
        min-height: auto;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .program-content {
        padding: 20px 15px;
    }
    
    .program-content .price {
        font-size: 24px;
    }
    
    .program-content h3 {
        font-size: 1.1rem;
    }
}

/* Long-term programs: two equal cards, centered */
.program-cards--longterm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
    max-width: 860px;
    margin: 0 auto;
    align-items: stretch;
}

.program-cards--longterm .program-card {
    height: 100%;
}

.program-card--long .program-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card--long .program-content ul {
    flex: 1 0 auto;
}

.program-card--long .program-content .btn {
    margin-top: auto;
}

.programs-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.programs-logo--after {
    margin-top: 36px;
    padding: 8px 0 0;
}

.programs-logo--after .brand-wordmark {
    color: #0b1f3b;
    text-shadow: none;
}

@media (max-width: 768px) {
    .program-cards--longterm {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .programs-logo--after {
        margin-top: 28px;
    }
}

/* Program cards: altura automática para long-term; short-term mantiene altura igual */
.programs .program-card {
    height: auto;
}

/* Short-term: cards misma altura, botón abajo */
.programs .programs-block:first-of-type .program-cards {
    align-items: stretch;
}

.programs .programs-block:first-of-type .program-cards .program-card {
    height: 100% !important;
}

.programs .programs-block--longterm .program-cards {
    align-items: stretch;
}

/* ========== Camp Registration Modal ========== */
.camp-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.camp-modal.camp-modal-open {
    opacity: 1;
    visibility: visible;
}
.camp-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}
.camp-modal-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.camp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
    z-index: 1;
    transition: background 0.2s, color 0.2s;
}
.camp-modal-close:hover {
    background: var(--primary-color);
    color: #fff;
}
.camp-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 24px 0;
    padding: 24px 24px 0;
    padding-right: 56px;
}
.camp-form {
    padding: 0 24px 24px;
}
.camp-form-section {
    border: none;
    margin: 0 0 24px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #eee;
}
.camp-form-section:last-of-type { border-bottom: none; }
.camp-form-section legend {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 14px;
    padding: 0;
}
.camp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
.camp-form-group { margin-bottom: 0; }
.camp-form-group.full { grid-column: 1 / -1; }
.camp-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}
.camp-form-group label small { font-weight: 400; color: #666; }
.camp-form-group input,
.camp-form-group select,
.camp-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
}
.camp-form-group input:focus,
.camp-form-group select:focus,
.camp-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.camp-form-checkboxes { display: flex; flex-direction: column; gap: 12px; }
.camp-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #444;
}
.camp-checkbox-label input { margin-top: 4px; flex-shrink: 0; }
.camp-form-submit {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    font-size: 1rem;
}
.camp-register-nav { font-weight: 600; }

@media (max-width: 640px) {
    .camp-form-grid { grid-template-columns: 1fr; }
    .camp-modal-box { max-height: 95vh; }
}

/* ========== FAQ Section (azul alineado con Nuestro trabajo / contacto) ========== */
.faq {
    padding: 100px 0;
    background:
        radial-gradient(ellipse 75% 55% at 15% 20%, rgba(26, 58, 126, 0.38), transparent 52%),
        radial-gradient(ellipse 55% 45% at 90% 85%, rgba(228, 181, 40, 0.07), transparent 48%),
        linear-gradient(135deg, #071428 0%, #0d1f4a 42%, #0a1830 72%, #132a52 100%);
    color: rgba(255, 255, 255, 0.9);
}
.faq .section-header h2 {
    color: #fff;
}
.faq .section-header p {
    color: rgba(255, 255, 255, 0.82);
}
.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
}
.faq-item--open {
    border-color: rgba(228, 181, 40, 0.45);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(228, 181, 40, 0.12) inset;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover {
    color: var(--secondary-color);
}
.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--secondary-color);
}
.faq-item--open .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item--open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}
@media (max-width: 576px) {
    .faq {
        padding: 60px 0;
    }
    .faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }
    .faq-answer {
        padding: 0 18px;
    }
    .faq-item--open .faq-answer {
        padding: 0 18px 16px;
    }
}

/* Contact: aviso pago confirmación (Stripe) */
.contact-payment-notice {
    margin: 8px 0 22px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(228, 181, 40, 0.45);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.contact-payment-notice__title {
    margin: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.contact-payment-notice__title strong {
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-payment-notice__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.contact-payment-notice__text strong {
    color: #fff;
    font-weight: 700;
}

.contact-payment-first {
    max-width: 560px;
}

.contact-payment-first__step {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.contact-payment-first__title {
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: #fff;
    line-height: 1.25;
}

.contact-payment-first__lead {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.contact-payment-first__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-bottom: 12px;
}

.contact-payment-first__hint {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    max-width: 480px;
}

.post-payment-page .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.post-payment-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
    margin: 0 auto 1.35rem;
    flex-wrap: wrap;
}

.post-payment-brand__crest {
    width: 72px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.post-payment-brand__name {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3.8vw, 1.7rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.2;
    text-align: left;
}

.post-payment-brand__gold {
    color: var(--secondary-color);
}

.post-payment-lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.post-payment-lead--paid {
    color: rgba(200, 230, 210, 0.95) !important;
    font-weight: 500;
}

.post-payment-gate--hidden {
    display: none !important;
}

.post-payment-gate--pending {
    max-width: 560px;
    margin: 0 auto 28px;
    padding: 18px 20px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.post-payment-gate__intro {
    margin: 0 0 14px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.post-payment-gate__row {
    margin: 0 0 12px;
}

.post-payment-gate__link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.post-payment-gate__link:hover {
    color: #f5d56a;
}

.post-payment-gate__details {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.65);
}

.post-payment-gate__details summary {
    cursor: pointer;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 0;
    list-style-position: outside;
}

.post-payment-gate__details-body {
    padding: 8px 0 4px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.post-payment-gate__details-body code {
    font-size: 0.78rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.92);
}

.post-payment-gate__details-body a {
    color: var(--secondary-color);
}

.container--post-payment {
    max-width: 720px;
}

.post-payment-page--verified .container--post-payment {
    max-width: 680px;
}

.post-payment-form-shell.contact-wrapper {
    flex-direction: column;
    gap: 0;
}

.post-payment-page--verified .post-payment-form-shell {
    margin-top: 8px;
}

.post-payment-form-main {
    flex: none;
    width: 100%;
    max-width: 100%;
}

.post-payment-form-wrap--visible {
    display: flex;
}

/* Footer en solicitud-tras-pago: continuidad con la sección contacto (sin bloque negro brusco) */
.contact.post-payment-page {
    padding-bottom: 48px;
}

footer.footer--post-payment {
    background: linear-gradient(180deg, #060f1f 0%, #0a1628 35%, #0c1a30 100%);
    color: rgba(255, 255, 255, 0.65);
    padding: 0 0 48px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

footer.footer--post-payment .container {
    max-width: 720px;
}

.footer-bottom--post-payment {
    border-top: none !important;
    padding: 28px 0 0 !important;
    justify-content: center !important;
    display: flex !important;
}

a.footer-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(228, 181, 40, 0.35);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

a.footer-back-link i {
    font-size: 0.85rem;
    opacity: 0.9;
}

a.footer-back-link:hover {
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--secondary-color), #d4a83a);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(228, 181, 40, 0.22);
}

a.footer-back-link:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Modal post-envío: Stripe checkout */
.payment-step-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-step-modal[hidden] {
    display: none !important;
}

.payment-step-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 12, 28, 0.72);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.payment-step-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    padding: 28px 26px 24px;
    border-radius: 16px;
    background: linear-gradient(165deg, #0f1f3d 0%, #0b1f3b 55%, #132a52 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.payment-step-modal__kicker {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(228, 181, 40, 0.95);
}

.payment-step-modal__title {
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.payment-step-modal__lead {
    margin: 0 0 12px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.payment-step-modal__body {
    margin: 0 0 14px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
}

.payment-step-modal__body strong {
    color: #fff;
    font-weight: 700;
}

.payment-step-modal__price {
    margin: 0 0 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(228, 181, 40, 0.98);
    letter-spacing: 0.02em;
}

.payment-step-modal__cta {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--dark-color) !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 28px rgba(228, 181, 40, 0.35);
}

.payment-step-modal__cta:hover {
    background: #f1c84b !important;
    border-color: #f1c84b !important;
    color: var(--dark-color) !important;
}

.payment-step-modal__secure {
    margin: 0 0 16px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.payment-step-modal__close {
    display: block;
    width: 100%;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.payment-step-modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 480px) {
    .payment-step-modal__panel {
        padding: 22px 18px 20px;
    }
    .payment-step-modal__title {
        font-size: 1.35rem;
    }
}