/* Google Fonts - Must be first */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --white: #FFFFFF;
    --black: #000000;
    --red: #E50000;
    --gray-dark: #333333;
    --gray-light: #999999;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
    --spacing-xxxl: 100px;
    --border-radius-small: 12px;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
}

body.loading {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}

html.loading {
    overflow: hidden !important;
}

/* Smooth Scroll & Snap */
html {
    scroll-snap-type: y proximity;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

/* Prevenir zoom en inputs en iOS */
@media screen and (max-width: 480px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Pantalla de Carga */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    margin: 0;
    padding: 0;
    gap: var(--spacing-lg);
}

.loading-screen.fade-out {
    animation: loadingFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadingFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
        visibility: hidden;
    }
}

.loading-video {
    max-width: 70%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Progress Bar del Loading */
.loading-progress-container {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loading-progress-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red), #ff4444);
    border-radius: 2px;
    transition: width 0.3s ease-out;
    position: relative;
}

.loading-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: progressShine 1s ease-in-out infinite;
}

@keyframes progressShine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.loading-percentage {
    font-size: 11px;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
}

.loading-status {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -4px;
}

/* Menú Superior */
.side-menu {
    position: fixed;
    left: var(--spacing-lg);
    top: var(--spacing-lg);
    z-index: 1000;
}

.side-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.side-menu li {
    margin-bottom: 0;
}

.side-menu a {
    color: var(--black);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: color 0.3s ease;
}

.side-menu a:hover,
.side-menu a.active {
    color: var(--red);
}

.side-menu.light-mode a {
    color: var(--white);
}

.side-menu.light-mode a:hover,
.side-menu.light-mode a.active {
    color: var(--red);
}

/* Iconos de Redes Sociales */
.social-icons {
    position: fixed;
    right: var(--spacing-lg);
    top: var(--spacing-lg);
    z-index: 1000;
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--red);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-icons.light-mode .social-link {
    color: var(--white);
}

.social-icons.light-mode .social-link:hover {
    color: var(--red);
}

/* Language Toggle Button */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-left: 4px;
}

.lang-toggle:hover {
    background: var(--black);
    color: var(--white);
}

.social-icons.light-mode .lang-toggle {
    border-color: var(--white);
    color: var(--white);
}

.social-icons.light-mode .lang-toggle:hover {
    background: var(--white);
    color: var(--black);
}

/* Sección Home/Hero */
.section-home {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container {
    margin-bottom: var(--spacing-xl);
}

.logo-svg {
    width: auto;
    height: 100px;
    max-width: 400px;
    display: block;
}

.hero-image {
    width: 65vw;
    max-width: 1000px;
    height: 55vh;
    max-height: 550px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.location-info p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Secciones Generales */
section {
    min-height: 100vh;
    height: 100vh;
    padding: var(--spacing-xxxl) var(--spacing-xxl);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.5px;
    text-align: center;
}

/* About */
.section-about {
    display: flex;
    align-items: center;
    background-color: var(--white);
}

.about-text {
    max-width: 700px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--gray-dark);
    font-weight: 300;
}

/* Eventos - Agenda Style */
.section-eventos {
    background-color: var(--black);
}

.section-eventos .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 900px;
}

.section-eventos .section-header {
    margin-bottom: var(--spacing-xl);
}

.section-eventos .section-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
}

.section-eventos .section-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gray-light);
    font-weight: 400;
}

/* Events Agenda List */
.events-agenda {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--event-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.event-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.event-row:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.event-row:hover::before,
.event-row:hover::after {
    opacity: 1;
}

.event-row > * {
    position: relative;
    z-index: 2;
}

/* Date Block */
.event-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding-right: var(--spacing-md);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.event-day {
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.event-month {
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Event Details */
.event-details {
    flex: 1;
    min-width: 0;
}

.event-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.event-venue {
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Event CTA */
.event-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.event-time {
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 500;
    letter-spacing: 1px;
}

.event-tickets-btn {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.event-tickets-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.event-row:hover .event-tickets-btn {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* Tienda */
.section-tienda {
    background-color: var(--black);
    overflow: hidden;
}

.section-tienda .content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-tienda .section-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gray-light);
    font-weight: 400;
}

/* Products Grid - Index Page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1100px;
    width: 100%;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.product-image-container {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

/* Placeholder for images */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    color: var(--gray-light);
    gap: 12px;
}

.product-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.product-placeholder span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.product-info {
    padding: var(--spacing-md);
    text-align: center;
}

.product-name {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--white);
}

.product-info .product-price {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
}

/* Shopify Button Placeholder */
.shopify-btn-placeholder {
    margin-top: var(--spacing-xs);
}

.buy-btn-placeholder {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.buy-btn-placeholder:hover {
    background-color: var(--red);
    color: var(--white);
}

/* View Collection Button */
.view-collection {
    margin-top: var(--spacing-lg);
}

.view-collection-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 16px 48px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-collection-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.products-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .products-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-item {
    width: 100%;
    max-width: 320px;
}

.product-image {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
    cursor: pointer;
    margin-bottom: var(--spacing-sm);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image:hover {
    transform: translateY(-4px);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-image:hover .product-hover {
    opacity: 1;
}

.product-action {
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 16px 40px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-action:hover {
    background-color: var(--red);
    color: var(--white);
}

.product-details {
    text-align: center;
}

.product-details h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--black);
}

.product-price {
    font-size: 13px;
    color: var(--gray-dark);
    font-weight: 400;
}

/* Productos ocultos */
.product-hidden {
    display: none;
}

.product-hidden.show {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

/* Botón Ver Más */
.view-more-container {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.view-more-btn {
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    padding: 16px 48px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.view-more-btn.hidden {
    display: none;
}

/* Contact */
.section-contact {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--black);
    font-weight: 300;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.social-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--red);
}

/* Footer */
.section-footer {
    min-height: 100vh;
    height: auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background-color: var(--white);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-image {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 55vh;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.sponsors-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.sponsors-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gray-dark);
    font-weight: 500;
}

.sponsors-logos {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.sponsor-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.footer p {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray-light);
    font-weight: 500;
}

/* Legal Section inside Footer */
.legal-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-divider {
    color: var(--gray-light);
    font-size: 9px;
}

.footer-copyright {
    text-align: center;
    margin-top: var(--spacing-xs);
}

.footer-copyright p {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
    font-weight: 400;
    margin-bottom: 4px;
}

.footer-location {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray-light);
    font-weight: 400;
}

/* ================================================
   COOKIE CONSENT BANNER
   ================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--black);
    color: var(--white);
    z-index: 10001;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.cookie-text p {
    font-size: 12px;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: var(--red);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background-color: var(--white);
    color: var(--black);
}

.cookie-btn-accept:hover {
    background-color: var(--red);
    color: var(--white);
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-btn-reject:hover {
    background-color: var(--white);
    color: var(--black);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--gray-light);
    border: 1px solid var(--gray-dark);
}

.cookie-btn-settings:hover {
    border-color: var(--white);
    color: var(--white);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    display: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid var(--gray-dark);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-settings-panel.show {
    display: block;
}

.cookie-settings-panel h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-title {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.cookie-option-desc {
    display: block;
    font-size: 11px;
    color: var(--gray-light);
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-dark);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--red);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(20px);
}

.cookie-toggle.disabled {
    opacity: 0.6;
}

.cookie-toggle.disabled .cookie-slider {
    cursor: not-allowed;
    background-color: var(--gray-dark);
}

.cookie-toggle.disabled input:checked + .cookie-slider {
    background-color: var(--gray-light);
}

.cookie-settings-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 10px 16px;
        font-size: 9px;
    }
    
    .cookie-settings-panel {
        padding: var(--spacing-md);
    }
    
    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .cookie-toggle {
        margin-left: 0;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-buttons .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-text h3 {
        font-size: 12px;
    }
    
    .cookie-text p {
        font-size: 11px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .side-menu {
        left: var(--spacing-md);
        top: var(--spacing-md);
    }

    section {
        padding: var(--spacing-xxl) var(--spacing-lg);
    }

    .hero-image {
        width: 75vw;
        height: 50vh;
    }

    .logo-svg {
        height: 85px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: var(--spacing-lg);
    }
    
    .section-eventos .section-title {
        font-size: 40px;
    }
    
    .event-row {
        gap: var(--spacing-md);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .event-day {
        font-size: 32px;
    }
    
    .event-name {
        font-size: 16px;
    }
    
    /* Tienda responsive 1024px */
    .products-grid {
        gap: var(--spacing-md);
    }
    
    .section-tienda .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .side-menu {
        left: var(--spacing-sm);
        top: var(--spacing-sm);
    }
    
    .side-menu ul {
        gap: var(--spacing-xs);
    }
    
    .side-menu a {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .social-icons {
        right: var(--spacing-sm);
        top: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .lang-toggle {
        padding: 3px 6px;
        font-size: 9px;
    }

    .logo-svg {
        height: 70px;
    }

    .hero-image {
        width: 90vw;
        height: 45vh;
    }

    section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .section-home {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .section-title {
        font-size: 32px;
        margin-bottom: var(--spacing-lg);
    }

    /* Eventos responsive 768px */
    .section-eventos .section-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .event-row {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    
    .event-date-block {
        min-width: 60px;
        padding-right: var(--spacing-sm);
    }
    
    .event-day {
        font-size: 28px;
    }
    
    .event-month {
        font-size: 10px;
    }
    
    .event-name {
        font-size: 14px;
    }
    
    .event-venue {
        font-size: 11px;
    }
    
    .event-cta {
        gap: var(--spacing-sm);
    }
    
    .event-time {
        font-size: 11px;
    }
    
    .event-tickets-btn {
        padding: 8px 16px;
        font-size: 9px;
    }
    
    .products-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Tienda responsive 768px */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .section-tienda .section-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .section-subtitle {
        font-size: 10px;
    }
    
    .product-info {
        padding: var(--spacing-sm);
    }
    
    .product-name {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .product-info .product-price {
        font-size: 12px;
    }
    
    .buy-btn-placeholder {
        padding: 10px 16px;
        font-size: 8px;
    }
    
    .view-collection-btn {
        padding: 14px 32px;
        font-size: 9px;
    }
    
    .footer-image {
        max-height: 45vh;
    }
    
    .sponsors-text {
        font-size: 10px;
        letter-spacing: 3px;
    }
    
    .sponsor-logo {
        height: 35px;
    }
    
    .location-info p {
        font-size: 10px;
        letter-spacing: 3px;
    }
    
    .legal-section {
        margin-top: var(--spacing-md);
        padding-top: var(--spacing-sm);
    }
    
    .footer-links {
        gap: var(--spacing-xs);
    }
    
    .footer-links a {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    
    .footer-divider {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .side-menu {
        left: var(--spacing-xs);
        top: var(--spacing-xs);
    }
    
    .side-menu ul {
        gap: 4px;
    }
    
    .side-menu a {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    
    .logo-svg {
        height: 60px;
        max-width: 280px;
    }

    .hero-image {
        width: 95vw;
        height: 40vh;
    }

    .location-info p {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    section {
        padding: var(--spacing-md) var(--spacing-xs);
    }
    
    .section-home {
        padding: var(--spacing-lg) var(--spacing-xs);
    }

    .section-title {
        font-size: 24px;
        margin-bottom: var(--spacing-md);
    }
    
    /* Eventos responsive 480px */
    .section-eventos .section-title {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .section-eventos .section-subtitle {
        font-size: 9px;
        letter-spacing: 2.5px;
    }
    
    .events-agenda {
        gap: var(--spacing-xs);
    }
    
    .event-row {
        padding: var(--spacing-sm) var(--spacing-xs);
        gap: var(--spacing-xs);
    }
    
    .event-row:hover {
        transform: none;
    }
    
    .event-date-block {
        min-width: 50px;
        padding-right: var(--spacing-xs);
    }
    
    .event-day {
        font-size: 24px;
    }
    
    .event-month {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    
    .event-name {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .event-venue {
        font-size: 10px;
    }
    
    .event-cta {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }
    
    .event-time {
        font-size: 10px;
    }
    
    .event-tickets-btn {
        padding: 6px 12px;
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    
    .products-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .product-image {
        height: 280px;
    }
    
    /* Tienda responsive 480px */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
    
    .section-tienda .section-title {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .section-subtitle {
        font-size: 9px;
        letter-spacing: 2.5px;
    }
    
    .product-info {
        padding: var(--spacing-xs);
    }
    
    .product-name {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .product-info .product-price {
        font-size: 11px;
        margin-bottom: var(--spacing-xs);
    }
    
    .product-placeholder svg {
        width: 32px;
        height: 32px;
    }
    
    .product-placeholder span {
        font-size: 8px;
    }
    
    .buy-btn-placeholder {
        padding: 8px 12px;
        font-size: 7px;
        letter-spacing: 1.5px;
    }
    
    .view-collection-btn {
        padding: 12px 24px;
        font-size: 8px;
        letter-spacing: 2px;
    }
    
    .social-icons {
        right: var(--spacing-xs);
        top: var(--spacing-xs);
        gap: var(--spacing-xs);
    }
    
    .social-link svg {
        width: 14px;
        height: 14px;
    }
    
    .lang-toggle {
        padding: 2px 5px;
        font-size: 8px;
    }
    
    .loading-video {
        max-width: 85%;
        max-height: 50vh;
    }
    
    .loading-progress-container {
        width: 160px;
    }
    
    .loading-percentage {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .loading-status {
        font-size: 8px;
    }
    
    .footer-image {
        max-height: 40vh;
    }
    
    .sponsors-section {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }
    
    .sponsors-text {
        font-size: 9px;
        letter-spacing: 2.5px;
    }
    
    .sponsor-logo {
        height: 30px;
    }
    
    .legal-section {
        margin-top: var(--spacing-sm);
        padding-top: var(--spacing-xs);
        gap: var(--spacing-xs);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 4px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-links a {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    
    .footer-copyright p {
        font-size: 7px;
        letter-spacing: 1.5px;
    }
    
    .footer-location {
        font-size: 7px !important;
        letter-spacing: 1.5px !important;
    }
}

/* Landscape mode en móviles */
@media (max-height: 600px) and (orientation: landscape) {
    .section-home {
        min-height: auto;
        height: auto;
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .logo-svg {
        height: 50px;
    }
    
    .hero-image {
        height: 60vh;
    }
    
    .footer-image {
        max-height: 50vh;
    }
    
    .section-eventos .section-title {
        font-size: 28px;
    }
    
    .event-row {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}
