/* ===========================
   CSS Variables & Design System
   =========================== */
:root {
    /* Colors */
    --color-primary: #6b7c5a;
    --color-primary-dark: #556b47;
    --color-primary-light: #8a9a7a;
    --color-text: #2c2c2c;
    --color-text-light: #555;
    --color-text-lighter: #666;
    --color-bg: #f5f5f0;
    --color-bg-white: #ffffff;
    --color-bg-alt: #f9f9f6;
    --color-white: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-shadow-hover: rgba(107, 124, 90, 0.2);
    --color-whatsapp: #25d366;

    /* Spacing System (4px base) */
    --space-xs: 0.25rem;    /* 4px */
    --space-sm: 0.5rem;     /* 8px */
    --space-md: 1rem;       /* 16px */
    --space-lg: 1.5rem;     /* 24px */
    --space-xl: 2rem;       /* 32px */
    --space-2xl: 3rem;      /* 48px */
    --space-3xl: 4rem;      /* 64px */
    --space-4xl: 6rem;      /* 96px */

    /* Border Radius */
    --radius-sm: 0.375rem;  /* 6px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 10px var(--color-shadow);
    --shadow-md: 0 5px 20px var(--color-shadow);
    --shadow-lg: 0 10px 30px rgba(107, 124, 90, 0.3);
    --shadow-xl: 0 15px 40px var(--color-shadow-hover);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Typography */
    --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Z-index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal-backdrop: 3000;
    --z-modal: 3001;
    --z-navbar: 2000;
    --z-navbar-toggle: 2001;
}

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

*:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    padding-top: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    backdrop-filter: blur(10px);
    padding: var(--space-lg) var(--space-xl);
    z-index: var(--z-navbar);
    box-shadow: var(--shadow-md);
    transition: padding var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.navbar.scrolled {
    padding: var(--space-md) var(--space-xl);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(107,124,90,0.95) 0%, rgba(85,107,71,0.95) 100%);
}

.navbar-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
}

.navbar-brand {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.navbar-brand:hover,
.navbar-brand:focus {
    opacity: 0.9;
    transform: scale(1.02);
}

.navbar-title {
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
    text-align: center;
}

.navbar.scrolled .navbar-title {
    font-size: 1.3em;
}

.navbar-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    position: relative;
}

.navbar-menu a:hover,
.navbar-menu a:focus {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.navbar-menu a.active {
    background: rgba(255,255,255,0.2);
    font-weight: 600;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--color-white);
    transition: transform var(--transition-base);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Desktop Layout - Centered Brand Above Menu */
@media (min-width: 769px) {
    .navbar-content {
        flex-direction: column;
        gap: var(--space-md);
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    transition: all var(--transition-base);
    /* Touch target size (min 44x44px) */
    min-width: 44px;
    min-height: 44px;
    position: relative;
    z-index: var(--z-navbar-toggle);
    border-radius: var(--radius-sm);
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background: rgba(255,255,255,0.1);
}

.navbar-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-white);
    transition: all var(--transition-base);
    border-radius: 3px;
    box-shadow: var(--shadow-sm);
}

.navbar-toggle.active {
    gap: 0;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translateY(-3px);
}

@media (max-width: 768px) {
    .navbar {
        padding: var(--space-md) var(--space-lg);
    }

    .navbar-content {
        flex-direction: row;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar-title {
        font-size: 1em;
        letter-spacing: 1px;
    }

    .navbar.scrolled .navbar-title {
        font-size: 0.9em;
    }

    .navbar-menu {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 78px);
        background: linear-gradient(135deg, #6b7c5a 0%, #556b47 100%);
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        transition: right 0.4s ease;
        align-items: flex-start;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .navbar-menu a {
        font-size: 1.2em;
        padding: 12px 20px;
        width: 100%;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: auto;
    }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.hero-content {
    margin-top: 180px;
    margin-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 0px 20px;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 1200px;
}

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

.logos-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
    margin-bottom: -60px;
    flex-wrap: wrap;
}

.logo-hero {
    width: 120px;
    animation: float 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-hero:hover {
    transform: scale(1.05);
}

.logo-hero:nth-child(2) {
    animation-delay: 0.5s;
}

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

.logo-hero img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    object-fit: cover;
}

.logo-name {
    margin-top: 15px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.95;
    text-align: center;
}

.invitation-text {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.hero h1 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 300;
    margin-bottom: var(--space-lg);
    letter-spacing: 3px;
}

.hero p {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.de-la-mano {
    text-align: center;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

.de-la-mano p {
    font-size: clamp(1.2rem, 2vw + 0.5rem, 1.8rem);
    font-weight: 300;
    color: var(--color-white);
    opacity: 0.95;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.scroll-section {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-indicator {
    animation: bounce 2s infinite;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

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

.scroll-indicator::after {
    content: '↓';
    font-size: 2em;
    color: rgba(255,255,255,0.7);
}

.scroll-indicator:hover::after {
    color: rgba(255,255,255,1);
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out;
}

.section-title {
    font-size: 2.8em;
    font-weight: 300;
    color: #6b7c5a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #8a9a7a;
}

.section-subtitle {
    font-size: 1.2em;
    color: #666;
    font-weight: 300;
}

/* Bienvenida Section */
.bienvenida {
    background: white;
}

.welcome-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-text {
    width: 100%;
}

.welcome-text h3 {
    font-size: 2em;
    color: #6b7c5a;
    margin-bottom: 20px;
    font-weight: 400;
}

.welcome-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.welcome-image {
    background: linear-gradient(135deg, #6b7c5a 0%, #556b47 100%);
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(107, 124, 90, 0.2);
    animation: slideInRight 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
}

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

/* Ver Adelanto Button */
.ver-adelanto-btn {
    background: linear-gradient(135deg, #6b7c5a 0%, #556b47 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 124, 90, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ver-adelanto-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(107, 124, 90, 0.4);
    background: linear-gradient(135deg, #7a8c68 0%, #647957 100%);
}

.ver-adelanto-btn:active {
    transform: translateY(-1px);
}

/* ===========================
   Paquetes Section
   =========================== */
.paquetes {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-white) 100%);
    position: relative;
    padding: 70px 20px;
}

.paquetes .section-header {
    margin-bottom: 40px;
}

.paquetes .section-title {
    font-size: 2.4em;
    margin-bottom: 12px;
}

.paquetes .section-subtitle {
    font-size: 1.1em;
}

.paquetes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(107, 124, 90, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(138, 154, 122, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Banner Niños Gratis */
.kids-free-banner {
    background: linear-gradient(135deg, rgba(107, 124, 90, 0.08) 0%, rgba(138, 154, 122, 0.05) 100%);
    border: 2px solid var(--color-primary-light);
    border-radius: 10px;
    padding: 10px 18px;
    margin: 12px auto 30px;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(107, 124, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.banner-emoji {
    font-size: 1.2em;
}

.banner-title {
    color: var(--color-primary-dark);
    font-size: 1em;
    font-weight: 700;
}

.banner-subtitle {
    color: var(--color-text-light);
    font-size: 0.85em;
    font-weight: 500;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.package-card {
    background: var(--color-bg-white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(107, 124, 90, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    display: flex;
    flex-direction: column;
}

/* Patrón decorativo de fondo */
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    clip-path: ellipse(100% 100% at 50% 0%);
    opacity: 0.08;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.package-card:hover::before {
    opacity: 0.12;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(107, 124, 90, 0.25);
    border-color: var(--color-primary-light);
}

/* Diseño especial para paquetes destacados */
.package-card.package-featured {
    background: linear-gradient(135deg, rgba(107, 124, 90, 0.02) 0%, var(--color-bg-white) 100%);
    border: 2px solid var(--color-primary);
    box-shadow: 0 12px 40px rgba(107, 124, 90, 0.2);
}

.package-card.package-featured::before {
    opacity: 0.15;
    height: 120px;
}

.package-card.package-featured:hover {
    box-shadow: 0 30px 70px rgba(107, 124, 90, 0.35);
    border-color: var(--color-primary-dark);
}

.package-card.package-featured:hover::before {
    opacity: 0.2;
}

.package-title {
    font-size: 1.6em;
    margin: 0;
    padding: 25px 25px 12px 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Contenedor del precio */
.event-prize {
    text-align: center;
    padding: 0 25px;
    margin: 8px 0 5px 0;
    position: relative;
    z-index: 1;
    font-size: 2.2em;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Subtítulo del paquete */
.package-subtitle {
    text-align: center;
    color: var(--color-text-lighter);
    margin-bottom: 20px;
    font-size: 1em;
    font-weight: 500;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Divisor decorativo movido después de los items */
.package-items {
    list-style: none;
    padding: 0 28px 0 28px;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-items::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary-dark), transparent);
    margin: 22px auto 28px auto;
    border-radius: 2px;
    flex-shrink: 0;
}

.package-items li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(107, 124, 90, 0.08);
    color: var(--color-text-light);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98em;
    line-height: 1.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.package-items li:hover {
    padding-left: 8px;
    color: var(--color-text);
    background: rgba(107, 124, 90, 0.02);
    border-radius: 8px;
    margin: 0 -10px;
    padding-right: 10px;
    padding-left: 20px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.package-items li::before {
    content: '✓';
    color: var(--color-bg-white);
    font-weight: bold;
    font-size: 0.95em;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(107, 124, 90, 0.25);
}

.package-card.package-featured .package-items li::before {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    box-shadow: 0 3px 10px rgba(107, 124, 90, 0.35);
}

.package-items li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info {
    margin-top: 25px;
    padding: 20px;
    background: #f5f5f0;
    border-radius: 6px;
    border-left: 3px solid #6b7c5a;
}

.contact-name {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.contact-phone {
    color: #6b7c5a;
    font-size: 1.2em;
    font-weight: 600;
}

/* Torneos Section */
.torneos {
    background: white;
}

.tournaments-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tournament-card {
    flex: 0 0 auto;
    max-width: 500px;
    width: 100%;
    background: linear-gradient(135deg, #6b7c5a 0%, #556b47 100%);
    border-radius: 8px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 124, 90, 0.3);
    transition: transform 0.4s ease;
}

.tournament-image {
    width: clamp(120px, 40%, 180px);
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 8px auto 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.tournament-info {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 16px 18px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 180px;
}

.tournament-info.bg-domino {
    background-image: linear-gradient(135deg, rgba(107,124,90,0.55), rgba(85,107,71,0.85)), url('./Assets/Domino.jpg');
}

.tournament-info.bg-bolas {
    background-image: linear-gradient(135deg, rgba(107,124,90,0.55), rgba(85,107,71,0.85)), url('./Assets/Bolas criollas.jpg');
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.tournament-card:hover {
    transform: scale(1.03);
}

.tournament-card:hover::before {
    transform: translate(-20%, -20%);
}

.tournament-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.tournament-prize {
    font-size: 2.5em;
    font-weight: 300;
    margin: 20px 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.tournament-date {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.tournament-contact {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.more-info-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.more-info-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.modal-header {
    background: linear-gradient(135deg, #6b7c5a 0%, #556b47 100%);
    color: white;
    padding: 30px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.8em;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-prize {
    font-size: 2.2em;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 10px;
}

.modal-body {
    padding: 30px;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    color: #6b7c5a;
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section p, .modal-section ul {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.modal-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b7c5a;
    font-weight: bold;
}

.contact-box {
    background: #f9f9f6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6b7c5a;
    margin-top: 15px;
}

.contact-box .contact-name {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.contact-box .contact-phone {
    color: #6b7c5a;
    font-size: 1.3em;
    font-weight: 600;
}

.contact-box a {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 85vh;
    }

    .modal-header {
        padding: 25px 20px;
    }

    .modal-title {
        font-size: 1.6em;
    }

    .modal-prize {
        font-size: 1.8em;
    }

    .modal-body {
        padding: 20px;
    }
}

/* Video Modal Styles */
.modal-video-content {
    background: transparent;
    border-radius: 0;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    overflow: visible;
}

.modal-video-content .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0,0,0,0.8);
    border: 2px solid rgba(255,255,255,0.9);
    width: 50px;
    height: 50px;
    font-size: 2em;
    transition: all 0.3s ease;
}

.modal-video-content .modal-close:hover {
    background: rgba(255,255,255,0.9);
    color: #000;
    transform: rotate(90deg) scale(1.1);
}

.modal-video-content video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* Sound Indicator */
.sound-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    pointer-events: none;
    animation: simplePulse 2s ease-in-out infinite;
}

.sound-indicator svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.sound-indicator.hidden {
    display: none;
}

@keyframes simplePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .sound-indicator svg {
        width: 40px;
        height: 40px;
    }
}

/* Custom Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.modal-video-content:hover .video-controls {
    opacity: 1;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar:hover {
    height: 8px;
}

.progress-filled {
    height: 100%;
    background: #fff;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-filled::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-bar:hover .progress-filled::after {
    opacity: 1;
}

.controls-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.control-btn.play-pause {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.3);
}

.control-btn.play-pause svg {
    width: 30px;
    height: 30px;
}

.control-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #000;
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .modal-video-content {
        max-width: 100vw;
        max-height: 100vh;
    }

    .modal-video-content .modal-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.8em;
    }

    .modal-video-content video {
        max-height: 100vh;
    }

    .video-controls {
        padding: 15px;
        opacity: 1; /* Always visible on mobile */
    }

    .controls-buttons {
        gap: 15px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
    }

    .control-btn svg {
        width: 20px;
        height: 20px;
    }

    .control-btn.play-pause {
        width: 55px;
        height: 55px;
    }

    .control-btn.play-pause svg {
        width: 26px;
        height: 26px;
    }
}

/* Stands Section */
.stands {
    background: white;
}

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

.stand-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stand-card:hover {
    box-shadow: 0 8px 25px rgba(107, 124, 90, 0.15);
    transform: translateX(5px);
}

.stand-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b7c5a, #8a9a7a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2em;
    flex-shrink: 0;
}

.stand-name {
    color: #2c2c2c;
    font-size: 1.1em;
    font-weight: 500;
}

.stands-contact {
    margin-top: 50px;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stands-contact h3 {
    color: #6b7c5a;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 400;
}

.stands-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-links {
    color: #666;
    font-size: 1em;
}

/* Infinite Slider */
.slider-container {
    margin-top: 50px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
    gap: 20px;
}

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

.slider-slide {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(222, 40, 40, 0.1);
    transition: transform 0.3s ease;
    background: #fffcfc;
}

.slider-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(107, 124, 90, 0.3);
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

/* Carousel Carnaval 2025 */
.carousel-carnaval-container {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.carousel-carnaval-track {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-carnaval-slide {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(4px) brightness(0.5);
    transform: scale(0.75);
    opacity: 0.6;
    position: relative;
}

.carousel-carnaval-slide.active {
    filter: blur(0) brightness(1);
    transform: scale(1.25);
    box-shadow: 0 20px 50px rgba(107, 124, 90, 0.4);
    z-index: 10;
    opacity: 1;
}

.carousel-carnaval-slide img,
.carousel-carnaval-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f5f5f0;
}

.carousel-carnaval-slide video {
    background: #000;
    object-fit: cover;
}

/* Botón siguiente del carrusel */
.carousel-next-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(107, 124, 90, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
    font-family: var(--font-sans);
}

.carousel-next-btn:hover {
    background: var(--color-primary-dark);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 124, 90, 0.5);
}

.carousel-next-btn:active {
    transform: translateX(-50%) translateY(-1px);
}

/* Artistas Section */
.artistas {
    background: #f9f9f6;
}

.artistas-content {
    margin-top: 20px;
}

.carousel-artistas-container {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.carousel-artistas-track {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-artistas-slide {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(4px) brightness(0.5);
    transform: scale(0.75);
    opacity: 0.6;
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.carousel-artistas-slide.active {
    filter: blur(0) brightness(1);
    transform: scale(1.25);
    box-shadow: 0 20px 50px rgba(107, 124, 90, 0.4);
    z-index: 10;
    opacity: 1;
}

.carousel-artistas-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f5f5f0;
}

.artist-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    padding: 15px 20px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-artistas-slide.active .artist-name {
    opacity: 1;
}

.carousel-artistas-slide:hover .artist-name {
    opacity: 1;
}

/* Sponsors Section */
.sponsors {
    background: white;
    padding: 100px 20px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: #f9f9f6;
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 124, 90, 0.15);
}

.sponsor-logo {
    width: 150px;
    height: 150px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 20px rgba(107, 124, 90, 0.2);
    overflow: hidden;
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.sponsor-logo-dark {
    background: #000000 !important;
}

.sponsor-logo-brown {
    background: #99642f !important;
}

.sponsor-card:hover .sponsor-logo {
    transform: rotate(5deg) scale(1.05);
}

.sponsor-name {
    font-size: 1.1em;
    color: #2c2c2c;
    font-weight: 600;
    text-align: center;
}

/* Resumen Final Section */
.resumen-final {
    background: linear-gradient(135deg, #6b7c5a 0%, #556b47 100%);
    padding: 70px 20px;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .resumen-final {
        padding: 60px 30px;
    }
}

.resumen-final .container {
    width: 100%;
}

.resumen-final .section-header {
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .resumen-final .section-header {
        margin-bottom: 35px;
    }
}

.resumen-final .section-title {
    color: white;
    font-size: 2.4em;
}

@media (min-width: 1024px) {
    .resumen-final .section-title {
        font-size: 2.2em;
    }
}

.resumen-final .section-title::after {
    background: rgba(255, 255, 255, 0.3);
}

/* Layout de 2 columnas para desktop */
.ubicacion-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 1024px) {
    .ubicacion-layout {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

.resumen-content {
    text-align: left;
}

@media (max-width: 1023px) {
    .resumen-content {
        text-align: center;
        order: 1;
    }

    .mapa-container {
        order: 2;
    }
}

.resumen-content p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

@media (min-width: 1024px) {
    .resumen-content p {
        font-size: 1em;
        line-height: 1.65;
        margin-bottom: 14px;
    }
}

.resumen-content p:first-child {
    margin-top: 0;
}

.resumen-content p:last-of-type {
    margin-bottom: 25px;
}

@media (min-width: 1024px) {
    .resumen-content p:last-of-type {
        margin-bottom: 20px;
    }
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

@media (min-width: 1024px) {
    .event-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .event-highlights {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 30px;
    }
}

.highlight-item {
    background: rgba(255,255,255,0.1);
    padding: 14px 18px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 0.95em;
    font-weight: 600;
    text-align: center;
}

.highlight-item:nth-child(5) {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .highlight-item {
        padding: 12px 15px;
        font-size: 0.9em;
    }

    .highlight-item:nth-child(5) {
        max-width: 250px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 1023px) {
    .highlight-item:nth-child(5) {
        grid-column: auto;
    }
}

.mapa-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mapa-container h3 {
    color: #6b7c5a;
    font-size: 1.6em;
    margin-bottom: 10px;
    text-align: center;
}

@media (min-width: 1024px) {
    .mapa-container h3 {
        font-size: 1.5em;
    }
}

.mapa-address {
    text-align: center;
    color: #666;
    font-size: 1em;
    margin-bottom: 18px;
}

@media (min-width: 1024px) {
    .mapa-address {
        font-size: 0.95em;
    }
}

.mapa-container iframe {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 8px;
}

@media (min-width: 1024px) {
    .mapa-container iframe {
        height: 400px;
    }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.event-prize {
    font-size: 2.5em;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Responsive Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: var(--space-md) var(--space-lg);
    }

    .navbar-title {
        font-size: 1.4em;
    }

    .navbar.scrolled .navbar-title {
        font-size: 1.2em;
    }

    .navbar-menu {
        gap: var(--space-md);
    }

    .navbar-menu a {
        font-size: 0.95rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .hero {
        padding-top: 0;
    }

    .hero-content {
        padding: 30px;
        margin-top: 140px;
        margin-bottom: 70px;
    }

    .invitation-text {
        font-size: 2em;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero p {
        font-size: 1.2em;
        max-width: 550px;
    }

    .logos-container {
        gap: 50px;
        margin-top: 35px;
    }

    .logo-hero {
        width: 100px;
    }

    .logo-hero img {
        width: 100px;
        height: 100px;
    }

    /* Carousel tablet */
    .carousel-carnaval-container {
        padding: 60px 15px;
    }

    .carousel-carnaval-track {
        gap: 20px;
    }

    .carousel-carnaval-slide {
        width: 300px;
        height: 200px;
    }

    .carousel-carnaval-slide.active {
        transform: scale(1.2);
    }

    /* Carousel artistas tablet */
    .carousel-artistas-container {
        padding: 60px 15px;
    }

    .carousel-artistas-track {
        gap: 20px;
    }

    .carousel-artistas-slide {
        width: 300px;
        height: 200px;
    }

    .carousel-artistas-slide.active {
        transform: scale(1.2);
    }

    .artist-name {
        font-size: 1em;
        padding: 12px 15px;
    }

    .logo-name {
        font-size: 0.85em;
    }

    .section-title {
        font-size: 2.5em;
    }

    .section-subtitle {
        font-size: 1.1em;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .package-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .tournament-card {
        max-width: 450px;
    }

    .stands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .slider-slide {
        width: 280px;
        height: 190px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .modal-content {
        max-width: 650px;
    }

    .faq-question-text {
        font-size: 1.15em;
    }
}

/* ===========================
   Responsive: Mobile Small (320px - 480px)
   =========================== */
@media (max-width: 480px) {
    :root {
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
    }

    .navbar {
        padding: var(--space-md) var(--space-md);
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .hero {
        min-height: 100vh;
        padding: 0;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        padding: var(--space-md);
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .logos-container {
        gap: var(--space-lg);
        margin-top: var(--space-md);
        margin-bottom: -30px;
        flex-direction: row;
        justify-content: center;
    }

    .logo-hero {
        width: 90px;
    }

    .logo-hero img {
        width: 90px;
        height: 90px;
    }

    .logo-name {
        font-size: 0.75rem;
        margin-top: var(--space-sm);
        font-weight: 700;
    }

    .invitation-text {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }

    .hero p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 0 var(--space-sm);
        margin-bottom: var(--space-lg);
    }

    .de-la-mano {
        margin-top: var(--space-lg);
        margin-bottom: var(--space-sm);
    }

    .de-la-mano p {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .package-card {
        padding: var(--space-lg) var(--space-md);
    }

    .slider-slide {
        width: 200px;
        height: 150px;
    }

    /* Carousel extra small screens */
    .carousel-carnaval-container {
        padding: 40px 10px;
    }

    .carousel-carnaval-track {
        gap: 10px;
    }

    .carousel-carnaval-slide {
        width: 200px;
        height: 140px;
    }

    .carousel-carnaval-slide.active {
        transform: scale(1.15);
    }

    /* Carousel artistas extra small screens */
    .carousel-artistas-container {
        padding: 40px 10px;
    }

    .carousel-artistas-track {
        gap: 10px;
    }

    .carousel-artistas-slide {
        width: 200px;
        height: 140px;
    }

    .carousel-artistas-slide.active {
        transform: scale(1.15);
    }

    .artist-name {
        font-size: 0.9em;
        padding: 12px 15px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ===========================
   Responsive: Mobile (481px - 768px)
   =========================== */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 0;
        justify-content: flex-start;
    }

    .hero-content {
        padding: var(--space-lg);
        margin-top: 80px;
        margin-bottom: 65px;
    }

    .logos-container {
        gap: var(--space-xl);
        margin-top: var(--space-lg);
        margin-bottom: -40px;
        flex-direction: row;
        justify-content: center;
    }

    .logo-hero {
        width: 110px;
    }

    .logo-hero img {
        width: 110px;
        height: 110px;
    }

    .logo-name {
        font-size: 0.85rem;
        margin-top: var(--space-sm);
        font-weight: 700;
    }

    .invitation-text {
        font-size: clamp(1.4rem, 4vw, 1.7rem);
        line-height: 1.25;
        font-weight: 700;
        margin-bottom: var(--space-lg);
    }

    .hero p {
        font-size: clamp(1rem, 2.5vw, 1.15rem);
        line-height: 1.5;
        margin-bottom: var(--space-xl);
    }

    .de-la-mano {
        margin-top: var(--space-xl);
        margin-bottom: var(--space-md);
    }

    .de-la-mano p {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
    }

    .slider-slide {
        width: 220px;
        height: 160px;
    }

    /* Carousel artistas medium screens */
    .carousel-artistas-container {
        padding: 50px 10px;
    }

    .carousel-artistas-track {
        gap: 15px;
    }

    .carousel-artistas-slide {
        width: 220px;
        height: 160px;
    }

    .carousel-artistas-slide.active {
        transform: scale(1.18);
    }

    .artist-name {
        font-size: 0.95em;
        padding: 12px 15px;
    }
}

/* ===========================
   Responsive: Mobile General (max-width 768px)
   =========================== */
@media (max-width: 768px) {
    .scroll-section {
        bottom: var(--space-lg);
        position: fixed;
    }

    .scroll-text {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        font-weight: 600;
    }

    .scroll-indicator::after {
        font-size: 2.5em;
    }

    .welcome-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    .tournament-card {
        max-width: 100%;
    }

    .stands-contact-info {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .slider-container {
        padding: var(--space-xl) 0;
    }

    .slider-track {
        gap: var(--space-md);
    }

    /* Carousel responsive */
    .carousel-carnaval-container {
        padding: 50px 10px;
    }

    .carousel-carnaval-track {
        gap: 15px;
    }

    .carousel-carnaval-slide {
        width: 250px;
        height: 180px;
    }

    .carousel-carnaval-slide.active {
        transform: scale(1.18);
    }

    /* Carousel artistas responsive general */
    .carousel-artistas-container {
        padding: 50px 10px;
    }

    .carousel-artistas-track {
        gap: 15px;
    }

    .carousel-artistas-slide {
        width: 250px;
        height: 180px;
    }

    .carousel-artistas-slide.active {
        transform: scale(1.18);
    }

    .artist-name {
        font-size: 0.95em;
        padding: 12px;
    }

    /* Touch targets for mobile */
    button,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .stand-card,
    .package-card,
    .tournament-card {
        transition: transform var(--transition-base);
    }

    .stand-card:active,
    .package-card:active,
    .tournament-card:active {
        transform: scale(0.98);
    }
}

/* ===========================
   Loading States & Skeletons
   =========================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #e0e0e0 20%,
        #f0f0f0 40%,
        #f0f0f0 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s linear infinite;
    border-radius: var(--radius-sm);
}

/* Image lazy loading */
img {
    opacity: 0;
    transition: opacity var(--transition-slow);
}

img.loaded,
img[src] {
    opacity: 1;
}

/* Smooth image loading */
.slider-slide img {
    will-change: opacity;
    background: var(--color-bg-alt);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.2em;
}

/* Loading spinner for buttons */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-full);
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

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

/* FAQ Section */
.faq {
    background: white;
    padding: 100px 20px;
}

.faq-item {
    background: #f9f9f6;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f0f0ed;
}

.faq-question-text {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c2c2c;
}

.faq-icon {
    font-size: 1.5em;
    color: #6b7c5a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.payment-info {
    background: #f9f9f6;
    padding: 25px;
    border-radius: 8px;
    margin-top: 32px;
    text-align: center;
    border: 2px dashed #6b7c5a;
}

.payment-info h3 {
    color: #6b7c5a;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.payment-info p {
    font-size: 1em;
    color: #555;
    margin-bottom: 8px;
}

.payment-alias-container {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.payment-alias {
    font-size: 1.4em;
    font-weight: 700;
    color: #6b7c5a;
    background: white;
    padding: 15px 30px;
    border-radius: 6px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.payment-alias:hover {
    background: #f5f5f0;
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(107, 124, 90, 0.2);
}

.payment-alias:active {
    transform: scale(0.98);
}

.copy-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #6b7c5a;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1000;
}

.copy-tooltip.show {
    opacity: 1;
}

.payment-alias-modal:hover {
    background: #f5f5f0 !important;
    transform: scale(1.02);
}

.payment-alias-modal:active {
    transform: scale(0.98);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--color-bg);
    padding: 20px 0;
    text-align: center;
}

.footer-content p {
    color: #999;
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

/* ===========================
   Volume Control Button
   =========================== */
.volume-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
    padding: 0;
}

.volume-control:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 124, 90, 0.3);
}

.volume-control:active {
    transform: scale(0.95);
}

.volume-control svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: all var(--transition-base);
}

.volume-control.muted svg {
    fill: #ff6b6b;
}

@media (max-width: 768px) {
    .volume-control {
        width: 48px;
        height: 48px;
        bottom: 15px;
        left: 15px;
    }

    .volume-control svg {
        width: 24px;
        height: 24px;
    }
}
