/* =============================================
   NUNITO FONT FACES
   ============================================= */
@font-face {
    font-family: 'Nunito';
    src: url('./fonts/nunito/Nunito-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/nunito/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/nunito/Nunito-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/nunito/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/nunito/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/nunito/Nunito-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* =============================================
   CSS VARIABLES - PALETA LUXURY GOLF CLUB
   ============================================= */
:root {
    /* Colores principales */
    --color-dark-primary: hsl(215deg 100% 9.41%);
    --color-dark-secondary: #1a2521;
    --color-dark-tertiary: #2d4a35;
    
    /* Dorados */
    --color-gold-primary: #d4af37;
    --color-gold-secondary: #f4e4b8;
    --color-gold-accent: #b8941f;
    
    /* Verde esmeralda */
    --color-emerald-primary: #50c878;
    --color-emerald-secondary: #2d5a41;
    --color-emerald-light: #7dd99c;
    
    /* Neutros */
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-medium-gray: #6c757d;
    --color-dark-gray: #343a40;
    
    /* Gradientes */
    --gradient-dark: linear-gradient(135deg, hsl(215deg 100% 9.41%), var(--color-dark-secondary));
    --gradient-gold: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-accent));
    --gradient-emerald: linear-gradient(135deg, var(--color-emerald-primary), var(--color-emerald-secondary));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    
    /* Tipografías */
    --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-secondary: 'Nunito', Georgia, 'Times New Roman', Times, serif;
    
    /* Espacios */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Bordes */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.3);
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-white);
    background: var(--gradient-dark);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "kern" 1;
}

/* =============================================
   TIPOGRAFÍA
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
}

/* =============================================
   ICONOS SVG DORADOS
   ============================================= */
.icon-svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--color-gold-primary);
    fill: none;
    stroke-width: 1.5;
    transition: var(--transition-normal);
    margin: 0 auto;
    display: block;
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
    height: 3rem;
}

.welcome-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    height: 2.5rem;
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    height: 2rem;
}

.card-icon .icon-svg {
    width: 2.5rem;
    height: 2.5rem;
}

.welcome-icon .icon-svg {
    width: 2rem;
    height: 2rem;
}

.benefit-icon .icon-svg {
    width: 1.8rem;
    height: 1.8rem;
}

.card:hover .icon-svg,
.welcome-item:hover .icon-svg,
.benefit-item:hover .icon-svg {
    stroke: var(--color-gold-secondary);
    transform: scale(1.1);
}

/* Responsive para iconos */
@media (max-width: 480px) {
    .card-icon .icon-svg {
        width: 2rem;
        height: 2rem;
    }
    
    .welcome-icon .icon-svg {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    .benefit-icon .icon-svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* =============================================
   CONTENEDORES RESPONSIVOS
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

/* Desktop XL - Monitores grandes */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 var(--spacing-xl);
    }
    
    .section {
        padding: calc(var(--spacing-xxl) * 1.5) 0;
    }
}

/* Desktop estándar */
@media (min-width: 1200px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
        padding: 0 var(--spacing-lg);
    }
}

/* Laptop */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 1000px;
        padding: 0 var(--spacing-md);
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 750px;
        padding: 0 var(--spacing-md);
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* Mobile grande */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section {
        padding: var(--spacing-md) 0;
    }
}

/* Mobile pequeño */
@media (max-width: 479px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .section {
        padding: var(--spacing-sm) 0;
    }
}

/* Fondos específicos para secciones con imágenes de golf */
.objetivo {
    background: 
        linear-gradient(rgba(45,74,53,0.85), rgba(10,15,13,0.9)),
        url('https://images.unsplash.com/photo-1587436403751-73de6340caa2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.experiencia {
    background: 
        linear-gradient(hsla(215, 100%, 9.41%, 0.8), hsla(215, 100%, 9.41%, 0.85)),
        url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.faq {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/faqs.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

.registro {
    min-height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.registro-hero {
    min-height: 100vh;
    background: url('img/registro.png') center center / cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.registro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 47, 0.6) 0%,
        rgba(17, 24, 39, 0.5) 25%,
        rgba(7, 26, 42, 0.6) 50%,
        rgba(15, 23, 42, 0.5) 75%,
        rgba(10, 25, 47, 0.6) 100%
    );
    z-index: 1;
}

.registro-overlay {
    display: none; /* Temporarily disabled to test background visibility */
}

.registro-main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
}

/* Impact Header */
.registro-impact-header {
    color: white;
}

.impact-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

.badge-exclusive {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: hsl(215deg 100% 9.41%);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    animation: floatBadge 2s ease-in-out infinite;
}

.badge-limited {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.registro-main-title {
    margin: 0 0 2rem 0;
    line-height: 1.1;
}

.title-gradient {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: titleShine 3s ease-in-out infinite;
}

.title-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.registro-value-prop {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.value-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Iconos SVG de membresía */
.membresia-svg-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.value-item:hover .membresia-svg-icon {
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.6)) brightness(1.2);
    transform: scale(1.1) rotate(5deg);
}

.value-text {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Form Container */
.registro-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: formFloat 3s ease-in-out infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: 0 0 1rem 0;
}

.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

/* Premium Form Styling */
.registro-form-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

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

.error-message {
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Premium Button */
.form-actions-premium {
    margin-top: 1rem;
}

.btn--premium {
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: hsl(215deg 100% 9.41%);
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn--premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-amount {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 900;
    color: hsl(215deg 100% 9.41%);
}

.btn-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn--premium:hover .btn-glow-effect {
    left: 100%;
}

/* Features Section */
.registro-features {
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.95) 0%, rgba(7, 26, 42, 0.98) 100%);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   GRILLAS RESPONSIVAS GLOBALES
   ============================================= */

.feature-grid,
.cards-grid,
.welcome-grid,
.benefits-grid,
.info-grid,
.premios-principais,
.gastro-grid,
.stations-grid,
.evento-details-grid {
    display: grid;
    gap: var(--spacing-lg);
    width: 100%;
}

/* Desktop XL */
@media (min-width: 1440px) {
    .feature-grid,
    .cards-grid,
    .welcome-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xl);
    }
    
    .premios-principais {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
    
    .evento-details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: calc(var(--spacing-xl) * 1.5);
    }
}

/* Desktop estándar */
@media (min-width: 1200px) and (max-width: 1439px) {
    .feature-grid,
    .cards-grid,
    .welcome-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
    
    .premios-principais,
    .evento-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Laptop */
@media (min-width: 1024px) and (max-width: 1199px) {
    .feature-grid,
    .cards-grid,
    .welcome-grid,
    .premios-principais,
    .evento-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .feature-grid,
    .cards-grid,
    .welcome-grid,
    .premios-principais,
    .evento-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stations-grid,
    .gastro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .feature-grid,
    .cards-grid,
    .welcome-grid,
    .premios-principais,
    .evento-details-grid,
    .stations-grid,
    .gastro-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

/* Iconos SVG de features */
.feature-svg-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-svg-icon {
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.6)) brightness(1.2);
    transform: scale(1.15) rotate(5deg);
}

/* Asegurar que no haya conflictos entre feature-cards y section classes */
.feature-card.networking,
.feature-card.exclusive,
.feature-card.investment,
.feature-card.experience {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold-primary);
    margin: 0 0 0.8rem 0;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Guarantee Section */
.registro-guarantee {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.guarantee-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #22c55e;
    margin: 0 0 1rem 0;
}

.guarantee-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Animations */
@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes titleShine {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}

@keyframes formFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .registro-hero {
        background-attachment: scroll;
    }
    
    .registro-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .title-gradient {
        font-size: 3rem;
    }
    
    .registro-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .registro-hero {
        background-attachment: scroll;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .title-gradient {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.3rem;
    }
    
    .registro-form-container {
        padding: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .registro-main-content {
        padding: 1rem;
    }
    
    .registro-form-container {
        padding: 1rem;
    }
    
    .btn--premium {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-amount {
        font-size: 1.1rem;
    }
}

.informacion {
    background: 
        linear-gradient(rgba(10,15,13,0.85), rgba(26,37,33,0.9)),
        url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.agenda {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/campo.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.agenda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

.activaciones {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/campo.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.activaciones::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

/* Ajuste texto y tarjetas seccion activaciones */
#activaciones .station-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#activaciones .station-card h3 {
  font-size: 29px;
}

#activaciones .station-card p {
  width: 91%;
}
.gastronomia {
    background: 
        linear-gradient(rgba(10, 25, 47, 0.85), rgba(15, 23, 42, 0.8)),
        url('img/gastronomica.png') center/cover no-repeat ;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* =============================================
   GASTRONÓMICO HERO SECTION
   ============================================= */
.gastro-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
}

.gastro-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.gastro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--color-gold-primary);
    animation: float 6s ease-in-out infinite;
}

.gastro-badge-icon {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.gastro-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.gastro-title-main {
    display: block;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.gastro-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--color-gold-primary), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

.gastro-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Elementos flotantes decorativos */
.gastro-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.gastro-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatAround 8s ease-in-out infinite;
}

.gastro-float-1 {
    top: 20%;
    left: 15%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.gastro-float-2 {
    top: 30%;
    right: 20%;
    animation-delay: -4s;
    animation-duration: 12s;
}

.gastro-float-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: -6s;
    animation-duration: 9s;
}

.gastro-float-4 {
    top: 15%;
    right: 15%;
    animation-delay: -1s;
    animation-duration: 11s;
}

/* =============================================
   EXPERIENCIA GASTRONÓMICA GRID
   ============================================= */
.gastro-experience-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Carta principal destacada */
.gastro-featured-card {
    background: rgba(hsl(215deg 100% 9.41%), 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gastro-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.gastro-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gastro-featured-card:hover .gastro-card-glow {
    opacity: 1;
}

.gastro-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.gastro-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.gastro-main-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

.gastro-icon-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.gastro-card-badge {
    background: linear-gradient(135deg, var(--color-gold-primary), #ffd700);
    color: var(--color-dark-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gastro-featured-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gastro-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gastro-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.gastro-highlight:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.gastro-highlight-icon {
    font-size: 1.5rem;
    min-width: 24px;
}

/* Cartas secundarias */
.gastro-secondary-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gastro-card {
    background: rgba(hsl(215deg 100% 9.41%), 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gastro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.gastro-card-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.gastro-secondary-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.gastro-svg-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.gastro-secondary-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.gastro-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.gastro-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.gastro-feature-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold-primary);
    border-radius: 50%;
    min-width: 6px;
}

/* Carta VIP especial */
.gastro-card--vip {
    background: linear-gradient(135deg, 
        rgba(hsl(215deg 100% 9.41%), 0.9) 0%, 
        rgba(hsl(215deg 100% 12%), 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.gastro-vip-crown {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.gastro-vip-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.gastro-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.gastro-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold-primary);
}

.gastro-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gastro-vip-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    margin-top: 1rem;
}

.gastro-vip-icon {
    font-size: 1.3rem;
}

/* =============================================
   CALL TO ACTION GASTRONÓMICO
   ============================================= */
.gastro-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, 
        rgba(hsl(215deg 100% 9.41%), 0.9) 0%, 
        rgba(hsl(215deg 100% 12%), 0.7) 100%);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.gastro-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.gastro-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.gastro-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gastro-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--color-gold-primary), #ffd700);
    color: var(--color-dark-primary);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gastro-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gastro-cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gastro-cta-btn:hover .gastro-cta-arrow {
    transform: translateX(5px);
}

/* =============================================
   ANIMACIONES GASTRONÓMICAS
   ============================================= */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes goldShimmer {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, -30px) rotate(180deg); }
    75% { transform: translate(-20px, 10px) rotate(270deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.premios {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/premios.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.premios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

.section:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

/* Excepción para sección networking con fondo específico */
.networking.section:nth-child(even) {
    background: 
        linear-gradient(rgba(10, 25, 47, 0.8), rgba(15, 23, 42, 0.85)),
        url('img/nacelegacy.png') center/cover no-repeat !important;
    background-attachment: fixed !important;
}

/* Excepción para sección gastronómica con fondo específico */
.gastronomia.section:nth-child(even) {
    background: 
        linear-gradient(rgba(10, 25, 47, 0.85), rgba(15, 23, 42, 0.8)),
        url('img/gastronomica.png') center/cover no-repeat !important;
    background-attachment: fixed !important;
}

/* Excepción para sección información con fondo específico */
.informacion.section:nth-child(even) {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/file-2023041418CLUBKARIBANAGALERIA4.jpg') center/cover no-repeat !important;
    background-attachment: fixed !important;
}

/* Excepción para sección experiencia con fondo específico */
.experiencia.section:nth-child(even) {
    background: 
        linear-gradient(hsla(215, 100%, 9.41%, 0.8), hsla(215, 100%, 9.41%, 0.85)),
        url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat !important;
    background-attachment: fixed !important;
}

/* Excepción para sección tarjeta exclusiva con fondo específico */
.tarjeta-exclusiva.section:nth-child(even) {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat !important;
    background-attachment: fixed !important;
}

/* Excepción para sección agenda con fondo específico */
.agenda.section:nth-child(even) {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/campo.png') center/cover no-repeat !important;
    background-attachment: fixed !important;
}

/* Excepción para sección activaciones con fondo específico */
.activaciones.section:nth-child(even) {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/campo.png') center/cover no-repeat !important;
    background-attachment: fixed !important;
}

/* Excepción para sección FAQ con fondo específico */
.faq.section:nth-child(even) {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/faqs.png') center/cover no-repeat !important;
    background-attachment: fixed !important;
}

/* =============================================
   RESPONSIVE GASTRONÓMICO
   ============================================= */
@media screen and (max-width: 1024px) {
    .gastro-experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gastro-secondary-cards {
        flex-direction: row;
        gap: 1rem;
    }
    
    .gastro-card {
        flex: 1;
    }
    
    .gastro-hero-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .gastro-featured-card {
        padding: 2rem;
    }
    
    .gastro-highlight-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .gastro-hero {
        height: 50vh;
        margin-bottom: 2rem;
    }
    
    .gastro-secondary-cards {
        flex-direction: column;
    }
    
    .gastro-featured-title {
        font-size: 2rem;
    }
    
    .gastro-cta-title {
        font-size: 2rem;
    }
    
    .gastro-cta-section {
        padding: 2rem 1rem;
    }
}

/* =============================================
   FIX RESPONSIVE PARA BACKGROUND-ATTACHMENT
   ============================================= */

/* Fix para iOS, iPad y móviles - background-attachment fixed no funciona bien */
/* Específico para Safari/iOS */
@supports (-webkit-touch-callout: none) {
    .premios,
    .agenda,
    .activaciones,
    .gastronomia,
    .networking,
    .informacion,
    .experiencia,
    .tarjeta-exclusiva,
    .faq,
    .eventos-hero,
    .evento-cta-section,
    .objetivo,
    .club,
    .registro-hero {
        background-attachment: scroll !important;
    }
}

/* iPad y tablets */
@media (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .premios,
    .agenda,
    .activaciones,
    .gastronomia,
    .networking,
    .informacion,
    .experiencia,
    .tarjeta-exclusiva,
    .faq,
    .eventos-hero,
    .evento-cta-section,
    .objetivo,
    .club,
    .registro-hero {
        background-attachment: scroll !important;
    }
}

/* Móviles */
@media (max-width: 767px) {
    .premios,
    .agenda,
    .activaciones,
    .gastronomia,
    .networking,
    .informacion,
    .experiencia,
    .tarjeta-exclusiva,
    .faq,
    .eventos-hero,
    .evento-cta-section,
    .objetivo,
    .club,
    .registro-hero {
        background-attachment: scroll !important;
    }
    
    /* Ajustar overlays para mobile */
    .premios::before,
    .agenda::before,
    .activaciones::before,
    .gastronomia::before,
    .faq::before,
    .eventos-overlay,
    .evento-cta-section::before {
        opacity: 0.6 !important;
    }
}

/* Optimización adicional para pantallas muy pequeñas */
@media (max-width: 479px) {
    .premios::before,
    .agenda::before,
    .activaciones::before,
    .gastronomia::before,
    .faq::before,
    .evento-cta-section::before {
        opacity: 0.7 !important;
    }
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(215, 100%, 9.41%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo {
    text-align: left;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.logo-image {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: var(--transition-normal);
    aspect-ratio: auto;
}

.logo-image:hover {
    filter: drop-shadow(0 4px 8px rgba(212,175,55,0.4)) brightness(1.1);
    transform: scale(1.05);
}

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

/* Desktop XL */
@media (min-width: 1440px) {
    .nav-container {
        max-width: 1400px;
        height: 120px;
        padding: 0 var(--spacing-xl);
    }
    
    .logo-image {
        max-width: 110px;
        max-height: 110px;
    }
}

/* Laptop */
@media (min-width: 1024px) and (max-width: 1199px) {
    .nav-container {
        height: 90px;
    }
    
    .logo-image {
        max-width: 80px;
        max-height: 80px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-container {
        height: 80px;
        padding: 0 var(--spacing-sm);
    }
    
    .logo-image {
        max-width: 70px;
        max-height: 70px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .nav-container {
        height: 70px;
        padding: 0 var(--spacing-xs);
    }
    
    .logo-image {
        max-width: 60px;
        max-height: 60px;
    }
    
    .logo {
        gap: var(--spacing-xs);
    }
}

@media (max-width: 479px) {
    .nav-container {
        height: 60px;
    }
    
    .logo-image {
        max-width: 50px;
        max-height: 50px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold-primary);
    margin: 0;
    letter-spacing: 0.1em;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--color-emerald-light);
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-gold-primary);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-light-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link:hover {
    color: var(--color-gold-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--primary {
    background: var(--gradient-gold);
    color: var(--color-dark-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 600;
}

.nav-link--primary:hover {
    color: var(--color-dark-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-link--primary::after {
    display: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(rgba(10,15,13,0.7), rgba(26,37,33,0.8)),
        url('https://images.unsplash.com/photo-1535132011086-b8818f016104?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    background-attachment: fixed;
    flex-direction: row-reverse;
    gap: var(--spacing-lg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="golf" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23golf)"/></svg>');
    opacity: 0.3;
}

.hero .hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 999;
    position: relative;
    text-align: left;
    margin-left: 5%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    text-align: left;
    margin-left: 5%;
}

.hero .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    justify-content: flex-start;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 999;
}

.hero .badge {
    background: var(--gradient-glass);
    border: 1px solid rgba(212,175,55,0.3);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-secondary);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 999;
}

.badge {
    background: var(--gradient-glass);
    border: 1px solid rgba(212,175,55,0.3);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-secondary);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
    display: inline-block;
}

.hero-title {
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: var(--color-emerald-light);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: flex-start;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 5%;
    max-width: 450px;
}

.hero-card {
    width: 380px;
    height: 240px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 0 1px rgba(80,200,120,0.3);
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    aspect-ratio: 1.585/1;
    max-width: 90vw;
}

.hero-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 70%
    );
    animation: shine 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

/* =============================================
   BOTONES
   ============================================= */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-fast);
}

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

.btn--primary {
    background: var(--gradient-gold);
    color: var(--color-dark-primary);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.btn--secondary {
    background: transparent;
    color: var(--color-emerald-light);
    border: 2px solid var(--color-emerald-primary);
}

.btn--secondary:hover {
    background: var(--color-emerald-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--color-gold-primary);
    border: 1px solid var(--color-gold-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
}

.btn--ghost:hover {
    background: var(--color-gold-primary);
    color: var(--color-dark-primary);
}

/* =============================================
   TARJETA EXCLUSIVA SECTION
   ============================================= */
.tarjeta-exclusiva {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.tarjeta-exclusiva::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

.tarjeta-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.tarjeta-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.tarjeta-image-container {
    position: relative;
    width: 400px;
    height: auto;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-normal);
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.4),
        0 16px 48px rgba(212,175,55,0.2);
}

.tarjeta-image-container:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(0,0,0,0.6),
        0 24px 64px rgba(212,175,55,0.3);
}

.tarjeta-real-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
    transition: var(--transition-normal);
}

.tarjeta-image-container:hover .tarjeta-real-image {
    filter: contrast(1.2) saturate(1.3) brightness(1.1);
}

.tarjeta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212,175,55,0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(80,200,120,0.1), transparent 50%);
    pointer-events: none;
    border-radius: 16px;
    opacity: 0;
    transition: var(--transition-normal);
}

.tarjeta-image-container:hover .tarjeta-overlay {
    opacity: 1;
}

.tarjeta-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.tarjeta-image-container:hover .tarjeta-shine {
    transform: rotate(45deg) translateX(100%);
}



.tarjeta-benefits h3 {
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.benefit-item {
    background: var(--gradient-glass);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold-primary);
    box-shadow: var(--shadow-md);
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.benefit-item h4 {
    color: var(--color-emerald-light);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.benefit-item p {
    color: var(--color-light-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive para tarjeta */
@media (max-width: 768px) {
    .tarjeta-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .tarjeta-image-container {
        width: 320px;
        transform: none;
    }
    
    .tarjeta-image-container:hover {
        transform: scale(1.02);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .tarjeta-image-container {
        width: 280px;
    }
    
    .logo {
        gap: var(--spacing-xs);
    }
}

/* =============================================
   PREMIUM THEME ENHANCEMENTS
   ============================================= */

/* Efectos de partículas doradas */
@keyframes floatingParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 1;
    }
}

/* Cursor premium para elementos interactivos */
.btn,
.nav-link,
.card,
.welcome-item,
.station-card,
.benefit-item {
    cursor: pointer;
}

.btn:hover,
.tarjeta-card:hover {
    cursor: pointer;
}

/* Scroll suave mejorado */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold-primary) var(--color-dark-primary);
}

/* Webkit scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold-primary), var(--color-emerald-primary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-emerald-primary), var(--color-gold-primary));
}

/* Efectos de hover mejorados */
.nav-link:hover,
.footer-nav a:hover {
    text-shadow: 0 0 8px var(--color-gold-primary);
}

.card:hover,
.gastro-card:hover,
.premio-card:hover {
    box-shadow: 
        var(--shadow-xl),
        0 0 30px rgba(212,175,55,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Animación de texto premium */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.section-title::after {
    background: linear-gradient(90deg, 
        var(--color-emerald-primary) 0%, 
        var(--color-gold-primary) 50%, 
        var(--color-emerald-primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* Efectos de glassmorphism mejorados */
.card,
.info-panel,
.gastro-card,
.premio-card,
.beneficios-club,
.participantes,
.stats-counter,
.registro-form,
.registro-info,
.accordion-item,
.benefit-item {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Hover states premium */
.welcome-item:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--color-gold-primary);
    box-shadow: 
        0 8px 25px rgba(212,175,55,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.station-card:hover {
    background: rgba(80,200,120,0.1);
    box-shadow: 
        0 12px 35px rgba(80,200,120,0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Text selection styling */
::selection {
    background: rgba(212,175,55,0.3);
    color: var(--color-white);
}

::-moz-selection {
    background: rgba(212,175,55,0.3);
    color: var(--color-white);
}

/* Focus improvements */
*:focus-visible {
    outline: 2px solid var(--color-gold-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
}

/* Loading animation for images */
@keyframes fadeInImage {
    from { opacity: 0; filter: blur(5px); }
    to { opacity: 1; filter: blur(0); }
}

.logo-image,
.tarjeta-logo {
    animation: fadeInImage 0.5s ease-out;
}

/* Premium button glow effect */
.btn--primary {
    position: relative;
    overflow: hidden;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn--primary:hover::after {
    width: 200px;
    height: 200px;
}

/* Improved mobile interactions */
@media (max-width: 768px) {
    .section::after {
        display: none;
    }
    
    .card:hover,
    .welcome-item:hover,
    .station-card:hover {
        transform: none;
    }
    
    .card:active,
    .welcome-item:active,
    .station-card:active {
        transform: scale(0.98);
    }
}

/* High contrast mode enhancements */
@media (prefers-contrast: high) {
    .card,
    .info-panel,
    .benefit-item {
        border-width: 2px;
        border-style: solid;
    }
    
    .btn--primary {
        border: 2px solid var(--color-gold-primary);
    }
    
    .btn--secondary {
        border-width: 3px;
    }
}

/* Reduce motion enhancements */
@media (prefers-reduced-motion: reduce) {
    .section::after {
        animation: none;
    }
    
    .section-title::after {
        animation: none;
        background: var(--color-gold-primary);
    }
    
    .logo-image,
    .tarjeta-logo {
        animation: none;
    }
}
.section-title {
    text-align: center;
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-xl);
    position: relative;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 15vw, 100px);
    height: 3px;
    background: var(--gradient-emerald);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-emerald-light);
    margin-bottom: var(--spacing-md);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

/* =============================================
   TIPOGRAFÍA RESPONSIVA
   ============================================= */

/* Desktop XL */
@media (min-width: 1440px) {
    .section-title {
        font-size: 3.5rem;
        margin-bottom: calc(var(--spacing-xl) * 1.5);
    }
    
    .section-subtitle {
        font-size: 1.75rem;
    }
}

/* Laptop */
@media (min-width: 1024px) and (max-width: 1199px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .section-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
    }
}
    font-weight: 400;
}

.section-description {
    text-align: center;
    color: var(--color-light-gray);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: url('https://images.unsplash.com/photo-1593111774240-d529f12cf4bb?ixlib=rb-4.0.3&auto=format&fit=crop&w=200&q=80') center/cover;
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(15deg);
    transition: var(--transition-normal);
}

.card:hover::after {
    opacity: 0.2;
    transform: rotate(25deg) scale(1.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gold-primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.card h3 {
    color: var(--color-gold-secondary);
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

/* =============================================
   INFORMACIÓN SECTION
   ============================================= */
.informacion {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/file-2023041418CLUBKARIBANAGALERIA4.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.informacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

/* =============================================
   INFORMACIÓN PANEL
   ============================================= */
.info-panel {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-primary), #FFD700);
    opacity: 0.8;
}

.info-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-label {
    font-size: 0.9rem;
    color: var(--color-emerald-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

.info-value {
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 700;
}

.info-item--highlight .info-value {
    color: var(--color-gold-primary);
    font-size: 1.4rem;
}

/* =============================================
   WELCOME PACK GRID
   ============================================= */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.welcome-item {
    background: var(--gradient-glass);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.welcome-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold-primary);
    box-shadow: var(--shadow-md);
}

.welcome-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.welcome-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-light-gray);
}

/* =============================================
   TABS SYSTEM
   ============================================= */
.tabs-container {
    margin-top: var(--spacing-xl);
}

.tabs-nav {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--color-medium-gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
    font-size: 1rem;
}

.tab-btn.active {
    color: var(--color-gold-primary);
    border-bottom-color: var(--color-gold-primary);
}

.tab-btn:hover {
    color: var(--color-gold-secondary);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    text-align: center;
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-lg);
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--spacing-lg);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    padding-left: var(--spacing-xl);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gold-primary);
    box-shadow: 0 0 0 3px var(--color-dark-primary);
}

.timeline-time {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-xs);
}

.timeline-content h4 {
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-xs);
}

.timeline-content p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

/* =============================================
   STATIONS GRID
   ============================================= */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.station-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.station-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(transparent, rgba(255, 215, 0, 0.1));
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    opacity: 0.3;
    z-index: 0;
}

.station-card > * {
    position: relative;
    z-index: 1;
}

.station-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gold-primary);
}

.station-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--color-dark-primary);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: var(--spacing-md);
}

.station-card h3 {
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-sm);
}

.station-card p {
    color: var(--color-light-gray);
    margin-bottom: var(--spacing-md);
}

/* =============================================
   GASTRONOMÍA GRID
   ============================================= */
.gastro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.gastro-card {
    background: rgba(15, 31, 61, 0.15);
    border: 1px solid rgba(15, 31, 61, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(15px);
    transition: var(--transition-normal);
}

.gastro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: hsl(215deg 100% 9.41%);
    background: rgba(15, 31, 61, 0.25);
}

.gastro-icon {
    font-size: 3rem;
    text-align: center;
    display: block;
    margin-bottom: var(--spacing-md);
}

.gastro-svg-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.gastro-card:hover .gastro-svg-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(255, 215, 0, 0.5));
}

.gastro-card h3 {
    color: #FFD700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.gastro-card ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.9);
}

.gastro-card li {
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: var(--spacing-md);
    line-height: 1.6;
}

.gastro-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* =============================================
   PREMIOS SECTION
   ============================================= */
.premios-principales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.premio-card {
    background: var(--gradient-glass);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.premio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.premio-card--first::before {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.premio-card--second::before {
    background: linear-gradient(90deg, #c0c0c0, #e8e8e8);
}

.premio-card--third::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.premio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.premio-position {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    line-height: 80px;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark-primary);
}

.premio-card--first .premio-position {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.premio-card--second .premio-position {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.premio-card--third .premio-position {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.premio-card h3 {
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-xs);
}

.premio-card h4 {
    color: var(--color-emerald-light);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.premio-card ul {
    list-style: none;
    text-align: left;
}

.premio-card li {
    padding: var(--spacing-xs) 0;
    color: var(--color-light-gray);
    position: relative;
    padding-left: var(--spacing-md);
    font-size: 0.9rem;
}

.premio-card li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--color-gold-primary);
}

.premios-categorias {
    text-align: center;
    background: var(--gradient-glass);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.2);
}

.premios-categorias h3 {
    color: var(--color-emerald-light);
    margin-bottom: var(--spacing-lg);
}

.categorias-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.categoria-badge {
    background: var(--gradient-gold);
    color: var(--color-dark-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
}

/* =============================================
   NETWORKING SECTION
   ============================================= */
.networking {
    background: 
        linear-gradient(rgba(10, 25, 47, 0.8), rgba(15, 23, 42, 0.85)),
        url('img/nacelegacy.png') center/cover no-repeat ;
    background-attachment: fixed;
    position: relative;
}

.networking-announcement {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.announcement-text {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.networking-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.section-content-networking{
    display: flex;
    align-items: center;
}
.beneficios-club,
.participantes {
    background: rgba(hsl(215deg 100% 9.41%), 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.beneficios-club:hover,
.participantes:hover {
    background: rgba(hsl(215deg 100% 9.41%), 0.9);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.beneficios-club h3,
.participantes h3 {
    color: var(--color-gold-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
}

.beneficios-club ul,
.participantes ul {
    list-style: none;
}

.beneficios-club li,
.participantes li {
    padding: var(--spacing-xs) 0;
    color: var(--color-light-gray);
    position: relative;
    padding-left: var(--spacing-md);
}

.beneficios-club li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold-primary);
}

.participantes li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--color-emerald-primary);
}

.stats-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xxl);
    background: transparent;
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-xl) 0;
}

.stat-item {
    text-align: center;
    background: transparent;
    border: none;
    padding: 0;
    transition: all var(--transition-smooth);
    position: relative;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-gold-primary);
    font-family: var(--font-secondary);
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gold-primary), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    opacity: 0.9;
    margin-top: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

/* =============================================
   EQUIPO DIRECTIVO
   ============================================= */
.equipo-directivo {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/nuestroequipo.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.equipo-directivo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.miembro-card {
    background: var(--gradient-glass);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.2);
}

.miembro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gold-primary);
}

.miembro-imagen {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all var(--transition-normal);
}

.miembro-imagen:hover {
    border-color: var(--color-gold-primary);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.miembro-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.miembro-card:hover .miembro-foto {
    transform: scale(1.05);
}

.miembro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.miembro-card:hover .miembro-overlay {
    opacity: 1;
}

.miembro-social {
    display: flex;
    gap: var(--spacing-xs);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-link:hover {
    background: var(--color-gold-primary);
    color: var(--color-dark-primary);
    transform: scale(1.1);
}

.miembro-info {
    position: relative;
    z-index: 2;
}

.miembro-nombre {
    color: var(--color-gold-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.miembro-cargo {
    color: var(--color-emerald-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.miembro-descripcion {
    color: var(--color-light-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive para equipo directivo */
@media (max-width: 768px) {
    .equipo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .miembro-imagen {
        width: 120px;
        height: 120px;
    }
    
    .miembro-card {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .equipo-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .miembro-imagen {
        width: 100px;
        height: 100px;
    }
    
    .miembro-nombre {
        font-size: 1.1rem;
    }
    
    .miembro-cargo {
        font-size: 0.9rem;
    }
}

/* =============================================
   ACCORDION (FAQ)
   ============================================= */
.accordion {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
}

.accordion-item {
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
}

.accordion-header {
    width: 100%;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    color: var(--color-gold-primary);
    background: rgba(212,175,55,0.1);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--color-gold-primary);
    transition: var(--transition-fast);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: var(--spacing-md) 0 var(--spacing-md) var(--spacing-lg);
    color: var(--color-light-gray);
    line-height: 1.6;
    text-indent: var(--spacing-md);
}

/* =============================================
   FORMS - NEW REGISTRATION SYSTEM
   ============================================= */

/* =============================================
   OPTIMIZACIONES FINALES RESPONSIVE
   ============================================= */

/* Asegurar que no hay scroll horizontal */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Optimización de imágenes responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Text wrapping para evitar overflow */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    hyphens: auto;
}

/* Ajustes finales para mobile muy pequeño */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .section {
        padding: 1rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-height: 44px; /* Para accesibilidad táctil */
    }
}

/* Mejorar rendimiento en móviles */
@media (max-width: 767px) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Reducir animaciones en móviles para mejor rendimiento */
    .fade-in,
    .float,
    *[class*="animate"] {
        animation-duration: 0.3s !important;
    }
}

/* =============================================
   FOOTER RESPONSIVE
   ============================================= */
.footer {
    background: var(--color-dark-primary);
    border-top: 1px solid rgba(212,175,55,0.2);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-logo h3 {
    color: var(--color-gold-primary);
    margin: 0;
    font-size: 1.2rem;
}

.footer-logo p {
    color: var(--color-emerald-light);
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-nav a:hover {
    color: var(--color-gold-primary);
    background: rgba(212,175,55,0.1);
}

.footer-disclaimer {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212,175,55,0.1);
}

.footer-disclaimer p {
    color: var(--color-medium-gray);
    font-size: 0.8rem;
    margin-bottom: var(--spacing-xs);
}

/* =============================================
   MODALS
   ============================================= */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: var(--gradient-dark);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-gold-primary);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-white);
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
}

.modal-content h3 {
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-md);
    margin-right: 30px;
}

.modal-content p {
    color: var(--color-light-gray);
    line-height: 1.6;
}

.resumen-content {
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    font-family: monospace;
    font-size: 0.9rem;
}

/* =============================================
   TOOLTIP
   ============================================= */
.tooltip {
    position: absolute;
    background: var(--color-dark-primary);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    max-width: 200px;
    z-index: 1500;
    border: 1px solid var(--color-gold-primary);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   TOAST
   ============================================= */
.toast {
    position: fixed;
    top: 120px;
    right: var(--spacing-md);
    background: var(--gradient-emerald);
    color: var(--color-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateX(400px);
    transition: var(--transition-normal);
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

/* =============================================
   ANIMACIONES
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

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

/* Resoluciones medianas (hasta 1024px) - No afectar MacBook Pro 13" */
@media (max-width: 1024px) {
    .hero-badges {
        justify-content: center;
        margin-bottom: var(--spacing-md);
        gap: var(--spacing-xs);
    }
    
    .badge {
        font-size: 0.8rem;
        padding: var(--spacing-xs) calc(var(--spacing-sm) * 0.8);
    }
    
    .hero-content {
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-visual {
        margin-top: var(--spacing-lg);
    }
}

/* Tablets grandes y pantallas medianas */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }
    
    .hero {
        padding: 100px var(--spacing-md) var(--spacing-xl);
    }
    
    .hero-badges {
        z-index: 999 !important;
    }
    
    .badge {
        z-index: 999 !important;
    }
    
    .nav-container {
        height: 90px;
    }
}

/* iPad y tablets grandes */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Forzar scroll para todas las secciones con fondo */
    .objetivo {
        background: url('img/campo.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .experiencia {
        background: url('img/campo.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .faq {
        background: url('img/faqs.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .networking {
        background: url('img/nacelegacy.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .registro-hero {
        background: url('img/registro.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .gastronomia {
        background: url('img/ceremonia.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .premios,
    .agenda,
    .activaciones,
    .tarjeta-exclusiva,
    .informacion {
        background-attachment: scroll !important;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .hero {
        padding: 90px var(--spacing-sm) var(--spacing-lg);
    }
    
    .hero-badges {
        z-index: 999 !important;
    }
    
    .badge {
        z-index: 999 !important;
    }
    
    /* Desactivar parallax en móviles para mejor rendimiento */
    .hero,
    .objetivo,
    .informacion,
    .experiencia,
    .agenda,
    .gastronomia,
    .premios,
    .faq,
    .registro,
    .tarjeta-exclusiva,
    .eventos,
    .eventos-hero,
    .club,
    .networking {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    /* Mejorar visibilidad de fondos en iPhone */
    .gastronomia::before,
    .networking::before,
    .registro-hero::before {
        background: rgba(0, 0, 0, 0.3) !important;
    }
    
    .gastronomia {
        background: url('img/gastronomica.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .networking {
        background: url('img/nacelegacy.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .registro-hero {
        background: url('img/registro.png') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .eventos-hero {
        min-height: 70vh;
    }
    
    .evento-badge-floating {
        position: relative;
        display: inline-block;
        transform: none;
        margin: 0 auto var(--spacing-sm) auto;
        animation: none;
        top: auto;
        right: auto;
        text-align: center;
        z-index: 10;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 8px;
        max-width: 150px;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .evento-badge-floating .badge-text {
        font-size: 0.7rem;
        font-weight: 600;
    }
    
    .evento-badge-floating .badge-year {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .evento-countdown {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .countdown-item {
        min-width: 100px;
        padding: var(--spacing-md);
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .evento-details-grid {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg);
        justify-items: center;
        gap: var(--spacing-lg);
    }
    
    .detail-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        height: 80px;
        padding: 0 var(--spacing-sm);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: hsla(215, 100%, 9.41%, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: var(--spacing-md);
        border-top: 1px solid rgba(212,175,55,0.3);
        z-index: 998;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: 85vh;
        padding: 120px var(--spacing-sm) var(--spacing-xxl);
        gap: var(--spacing-lg);
    }
    
    .hero-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        order: 2;
    }
    
    .hero-visual {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        order: 1;
        max-width: 100%;
    }
    
    .hero-card {
        width: min(90vw, 320px);
        height: auto;
        aspect-ratio: 1.585/1;
        margin: 0 auto;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .tabs-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 80px;
    }
    
    .timeline {
        padding-left: var(--spacing-sm);
    }
    
    .timeline-item {
        padding-left: var(--spacing-md);
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
    }
    
    .gastro-grid {
        grid-template-columns: 1fr;
    }
    
    .premios-principais {
        grid-template-columns: 1fr;
    }
    
    .networking-content {
        grid-template-columns: 1fr;
    }
    
    .stats-counter {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .modal-content {
        margin: var(--spacing-md);
        max-width: none;
    }
}

/* Tablets pequeños */
@media (max-width: 640px) {
    .hero-card {
        width: min(90vw, 300px);
        height: auto;
        aspect-ratio: 1.585/1;
    }
    
    .hero-badges {
        justify-content: center;
        gap: var(--spacing-xs);
    }
    
    .badge {
        font-size: 0.8rem;
        padding: var(--spacing-xs);
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 var(--spacing-sm);
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: 80px var(--spacing-sm) var(--spacing-xl);
        min-height: 70vh;
    }
    
    .hero-content {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-visual {
        margin-top: var(--spacing-lg);
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-card {
        width: min(85vw, 280px);
        height: auto;
        aspect-ratio: 1.585/1;
        margin: 0 auto;
    }
    
    .hero-badges {
        justify-content: center;
        gap: var(--spacing-xs);
    }
    
    .badge {
        font-size: 0.75rem;
        padding: calc(var(--spacing-xs) * 0.75) var(--spacing-xs);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .welcome-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .gastro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stats-counter {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .categorias-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .categoria-badge {
        width: 100%;
        text-align: center;
    }
    
    .evento-details-grid {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
        justify-items: center;
        gap: var(--spacing-md);
    }
    
    .detail-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .detail-card h3 {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .timeline-time {
        font-size: 0.8rem;
    }
    
    .accordion-header {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .toast {
        top: 70px;
        right: var(--spacing-xs);
        left: var(--spacing-xs);
        max-width: none;
        z-index: 999;
        padding: var(--spacing-sm);
        font-size: 0.9rem;
        transform: translateY(-100px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}

/* =============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================= */
*:focus {
    outline: 2px solid var(--color-gold-primary);
    outline-offset: 2px;
}

.btn:focus,
.nav-link:focus,
.accordion-header:focus,
.tab-btn:focus {
    outline: 2px solid var(--color-gold-primary);
    outline-offset: 2px;
}

/* Reduce motion para usuarios que lo prefieren */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-card {
        animation: none;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --color-dark-primary: #000000;
        --color-white: #ffffff;
        --color-gold-primary: #ffff00;
        --color-emerald-primary: #00ff00;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    .header,
    .mobile-menu-btn,
    .hero-actions,
    .btn,
    .modal,
    .tooltip,
    .toast {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* =============================================
   NUNITO TYPOGRAPHY UTILITIES
   ============================================= */
.text-nunito-light {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
}

.text-nunito-regular {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.text-nunito-medium {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.text-nunito-semibold {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.text-nunito-bold {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.text-nunito-extrabold {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.text-nunito-black {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
}

/* Mejorar legibilidad para títulos con Nunito */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.hero-title {
    font-weight: 800 !important;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-weight: 500 !important;
    letter-spacing: -0.02em;
}

/* Optimizaciones específicas para Nunito */
.btn {
    font-weight: 600 !important;
    letter-spacing: 0.025em;
}

.nav-link {
    font-weight: 500 !important;
    letter-spacing: 0.01em;
}

/* =============================================
   CLUB SECTION
   ============================================= */
.club {
    background: linear-gradient(
        rgba(15, 31, 61, 0.5), 
        rgba(15, 31, 61, 0.6)
    ), url('img/imagemercedez.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.club::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

/* =============================================
   EVENTOS SECTION - VANGUARDIA
   ============================================= */
.eventos {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Responsive para eventos */
@media (min-width: 1440px) {
    .eventos-hero {
        min-height: 110vh;
    }
}

@media (max-width: 1023px) {
    .eventos {
        min-height: 80vh;
    }
    
    .eventos-hero {
        min-height: 80vh;
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 767px) {
    .eventos {
        min-height: 70vh;
    }
    
    .eventos-hero {
        min-height: 70vh;
        padding: var(--spacing-md) 0;
    }
}

.eventos-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/file-2025081383FotoKaribana42.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.eventos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(15, 31, 61, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 31, 61, 0.7) 0%, rgba(15, 31, 61, 0.3) 100%);
    z-index: 1;
}

.eventos-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-xl);
}

.evento-badge-floating {
    position: absolute;
    top: 20px;
    right: 10px;
    background: linear-gradient(135deg, var(--color-gold-primary), #FFD700);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: rotate(8deg);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

/* Responsive para badge flotante */
@media (min-width: 1440px) {
    .evento-badge-floating {
        top: 30px;
        right: 30px;
        padding: var(--spacing-sm) var(--spacing-lg);
    }
}

@media (max-width: 1023px) {
    .evento-badge-floating {
        top: 15px;
        right: 15px;
        padding: var(--spacing-xs) var(--spacing-sm);
        transform: rotate(6deg);
    }
}

@media (max-width: 767px) {
    .evento-badge-floating {
        top: 10px;
        right: 10px;
        padding: 0.5rem 0.75rem;
        transform: rotate(4deg);
    }
}

@media (max-width: 479px) {
    .evento-badge-floating {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin-bottom: var(--spacing-sm);
        display: inline-block;
    }
}

@keyframes float {
    0%, 100% { transform: rotate(8deg) translateY(0px); }
    50% { transform: rotate(8deg) translateY(-8px); }
}

.badge-text {
    display: block;
    color: var(--color-dark-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-year {
    display: block;
    color: var(--color-dark-primary);
    font-weight: 900;
    font-size: 1rem;
    text-align: center;
}

.evento-title-container {
    margin-bottom: var(--spacing-xxl);
    position: relative;
}

.evento-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--color-gold-primary);
    font-family: var(--font-secondary);
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-gold-primary), #FFD700, var(--color-gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.evento-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.05em;
}

.evento-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-emerald-light);
    font-style: italic;
    opacity: 0.9;
}

/* Responsive específico para títulos de eventos */
@media (min-width: 1440px) {
    .evento-main-title {
        font-size: 5rem;
        margin-bottom: var(--spacing-md);
    }
    
    .evento-subtitle {
        font-size: 2.5rem;
    }
    
    .evento-tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .evento-main-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
    }
    
    .evento-subtitle {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .evento-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 479px) {
    .evento-main-title {
        font-size: 1.8rem;
    }
    
    .evento-subtitle {
        font-size: 1.2rem;
    }
    
    .evento-tagline {
        font-size: 0.9rem;
    }
}

.evento-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xxl) 0;
    flex-wrap: wrap;
}

.evento-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

/* Responsive para countdown y location */
@media (min-width: 1440px) {
    .evento-countdown {
        gap: calc(var(--spacing-lg) * 1.5);
        margin: calc(var(--spacing-xxl) * 1.5) 0;
    }
}

@media (max-width: 767px) {
    .evento-countdown {
        gap: var(--spacing-md);
        margin: var(--spacing-lg) 0;
        flex-direction: row;
    }
    
    .countdown-item {
        flex: 1;
        min-width: 80px;
    }
    
    .evento-location {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
}

@media (max-width: 479px) {
    .evento-countdown {
        gap: var(--spacing-sm);
        margin: var(--spacing-md) 0;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.5rem !important;
    }
    
    .countdown-label {
        font-size: 0.8rem !important;
    }
}

.countdown-item {
    text-align: center;
    background: rgba(15, 31, 61, 0.8);
    backdrop-filter: blur(15px);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-width: 120px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gold-primary);
    font-family: var(--font-secondary);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: var(--spacing-xs);
    opacity: 0.9;
}

.countdown-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-gold-primary), transparent);
}

.evento-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: var(--spacing-xl);
}

.location-icon {
    font-size: 1.5rem;
}

.location-text {
    text-align: left;
}

.location-main {
    display: block;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.location-sub {
    display: block;
    color: var(--color-emerald-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.evento-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Responsive para detail cards */
@media (min-width: 1440px) {
    .detail-card {
        padding: calc(var(--spacing-xl) * 1.5);
    }
    
    .detail-card h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 1023px) {
    .detail-card {
        padding: var(--spacing-lg);
    }
    
    .detail-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .detail-card {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .detail-card h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .card-icon {
        font-size: 2.5rem !important;
        margin-bottom: var(--spacing-sm) !important;
    }
}

@media (max-width: 479px) {
    .detail-card {
        padding: var(--spacing-sm);
    }
    
    .card-icon {
        font-size: 2rem !important;
    }
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
}

.detail-card:hover::before {
    left: 100%;
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.detail-card .card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.detail-card h3 {
    color: var(--color-gold-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.detail-card ul {
    list-style: none;
    padding: 0;
    color: var(--color-white);
}

.detail-card li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-card li:last-child {
    border-bottom: none;
}

.investment-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-lg) 0;
}

.currency {
    font-size: 1.2rem;
    color: var(--color-emerald-light);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-gold-primary);
    font-family: var(--font-secondary);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.evento-cta-section {
    background: 
        linear-gradient(rgba(15, 31, 61, 0.5), rgba(15, 31, 61, 0.6)),
        url('img/ceremonia.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: var(--spacing-xxl);
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
}

.evento-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-primary);
    opacity: 0.4;
    z-index: 1;
}

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

.cta-content h3 {
    font-size: 2rem;
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.cta-content p {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

/* Responsive para botones */
@media (min-width: 1440px) {
    .cta-buttons {
        gap: calc(var(--spacing-lg) * 1.5);
    }
    
    .btn {
        padding: var(--spacing-md) calc(var(--spacing-xl) * 1.5);
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.95rem;
    }
}

@media (max-width: 479px) {
    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.9rem;
    }
}

.btn--glow {
    position: relative;
    overflow: hidden;
}

.btn--glow .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.btn--glow:hover .btn-shine {
    left: 100%;
}

.evento-intro {
    background: rgba(80,200,120,0.05);
    border-left: 4px solid var(--color-emerald-primary);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.evento-intro p {
    color: var(--color-emerald-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.evento-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.evento-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    background: rgba(255,255,255,0.02);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212,175,55,0.1);
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-content strong {
    color: var(--color-gold-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content span {
    color: var(--color-white);
    font-size: 0.95rem;
}

.evento-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-accent));
    color: var(--color-dark-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.evento-principal h3 {
    color: var(--color-gold-primary);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.evento-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.evento-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-emerald-light);
    font-size: 0.9rem;
}

.detail-icon {
    font-size: 1.1rem;
}

.evento-description {
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.evento-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.highlight-category h4 {
    color: var(--color-emerald-primary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.highlight-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.highlight {
    background: rgba(80,200,120,0.08);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    color: var(--color-emerald-light);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(80,200,120,0.15);
    transition: var(--transition-fast);
}

.highlight:hover {
    background: rgba(80,200,120,0.12);
    border-color: rgba(80,200,120,0.3);
}

.evento-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.golf-experience {
    background: var(--gradient-gold);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 20px 40px rgba(212,175,55,0.3);
}

.golf-icon-main {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.stat-item {
    background: rgba(0,0,0,0.2);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive para eventos */
@media (max-width: 968px) {
    .evento-principal {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .evento-details {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .evento-highlights {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .evento-actions {
        flex-direction: column;
    }
}

/* Específico para dispositivos iOS/Safari */
@supports (-webkit-overflow-scrolling: touch) {
    .hero,
    .gastronomia,
    .networking,
    .registro-hero,
    .eventos-hero {
        background-attachment: scroll !important;
        -webkit-background-size: cover !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    /* Overlay más claro para mejor visibilidad en iOS */
    .gastronomia::before,
    .networking::before {
        background: rgba(0, 0, 0, 0.2) !important;
    }
    
    .registro-hero::before {
        background: linear-gradient(135deg, 
            rgba(10, 25, 47, 0.4) 0%,
            rgba(17, 24, 39, 0.3) 25%,
            rgba(7, 26, 42, 0.4) 50%,
            rgba(15, 23, 42, 0.3) 75%,
            rgba(10, 25, 47, 0.4) 100%
        ) !important;
    }
}

@media (max-width: 768px) {
    .golf-experience {
        padding: var(--spacing-md);
    }
    
    .golf-icon-main {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .experience-stats {
        gap: var(--spacing-xs);
    }
}