/* ====== CSS VARIABLES & PALETTE ====== */
:root {
    --color-navy: #0B132B;       /* Deep elegant blue */
    --color-navy-light: #1C2541; /* Slightly lighter blue for sections */
    --color-gold: #D4AF37;       /* Metallic gold */
    --color-gold-hover: #b5952f;
    --color-white: #FFFFFF;
    --color-gray-light: #f5f5f5;
    --color-gray-dark: #838ca0;
    --color-danger: #e74c3c;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-navy);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* ====== BUTTONS ====== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.btn-accent {
    background-color: var(--color-gold);
    color: var(--color-navy);
    box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

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

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 20px;
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

/* ====== UTILITIES ====== */
.hidden {
    display: none !important;
}

/* ====== GLASSMORPHISM UTILITY ====== */
.glassmorphism {
    background: rgba(28, 37, 65, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* ====== HEADER ====== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition-fast);
}

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

.logo img {
    height: 80px;
    object-fit: contain;
    transition: var(--transition-fast);
}

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

.main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.header-social-nav {
    display: flex;
    gap: 15px;
    margin-right: 15px;
}

.header-social-nav a {
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(11, 19, 43, 0.05);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.header-social-nav a:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links-wrapper ul {
    display: flex;
    gap: 25px;
}

.main-nav ul li a {
    font-size: 1.1rem; /* Agrandada la fuente */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    color: var(--color-navy);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.btn-ticketera {
    margin-left: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-navy);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1540039155732-6761b54cb111?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    animation: zoomSlow 20s infinite alternate linear;
}

@keyframes zoomSlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* ====== PRODUCTION SECTIONS (SPLIT) ====== */
.production-sections {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.prod-col {
    flex: 1;
    min-width: 50%;
    position: relative;
    padding: 80px 5%;
    display: flex;
    align-items: flex-start;
    min-height: 600px;
    overflow: hidden;
}

.prod-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s ease;
}

.prod-col:hover .prod-bg {
    transform: scale(1.05);
}



.cultura-col::before, .ocio-col::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 19, 43, 0.85); /* Dark overlay */
    z-index: 2;
    transition: background 0.5s ease;
}

.prod-col:hover::before {
    background: rgba(11, 19, 43, 0.7);
}

.prod-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.cultura-col .prod-content {
    margin-left: auto; /* Push towards center */
}

.prod-content h2 {
    font-size: 2.8rem;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.prod-thumbnails {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 25px;
    justify-content: center;
}

.prod-thumbnails .thumbnail {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.prod-thumbnails .thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.prod-content p {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 30px;
}

.link-btn {
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-btn:hover {
    gap: 12px;
}

/* ====== DROPDOWN EXPERIENCIAS ====== */
.dropdown-experiences {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 0;
}

.dropdown-toggle i {
    transition: transform var(--transition-fast);
}

.dropdown-experiences.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    bottom: calc(100% + 6px);
    top: auto;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(11, 19, 43, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 260px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: rgba(11, 19, 43, 0.96) transparent;
    display: block;
    width: 0;
    z-index: 101;
}

.dropdown-experiences.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    text-align: left;
}

.dropdown-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    padding-left: 28px;
}

/* ====== SUBPAGES STYLING ====== */
.subpage-hero {
    position: relative;
    padding-top: 180px; /* offset for fixed header */
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(6, 10, 23, 0.7) 0%, var(--color-navy) 100%);
    z-index: 1;
    pointer-events: none;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.subpage-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
    display: inline-block;
}

.subpage-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.subpage-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-gray-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.subpage-section {
    padding: 100px 0;
    background-color: var(--color-navy);
}

.subpage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.subpage-text-side h2 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.subpage-text-side p {
    font-family: var(--font-body);
    color: var(--color-gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.subpage-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(28, 37, 65, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 35px;
    transition: var(--transition-fast);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    background: rgba(28, 37, 65, 0.7);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-family: var(--font-body);
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.subpage-cta {
    padding: 100px 0;
    background-color: var(--color-navy-light);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.subpage-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.subpage-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.subpage-cta p {
    font-family: var(--font-body);
    color: var(--color-gray-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.subpage-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Subpage responsive */
@media (max-width: 768px) {
    .subpage-title {
        font-size: 2.5rem;
    }
    .subpage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .subpage-hero {
        padding-top: 140px;
        min-height: 350px;
    }
}

/* ====== TALENTO WEDDING SECTION ====== */
.wedding-section {
    background-color: var(--color-navy);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 100px 0;
    overflow: hidden;
}

.wedding-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image column */
.wedding-image-col {
    flex: 1;
    min-width: 0;
    position: relative;
}

.wedding-img-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.wedding-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.88) saturate(0.85);
    transition: filter 0.6s ease, transform 0.8s ease;
}

.wedding-img-frame:hover .wedding-img {
    filter: brightness(0.95) saturate(1);
    transform: scale(1.03);
}

/* Decorative vertical accent line */
.wedding-rule {
    position: absolute;
    top: 0;
    left: -18px;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-gold) 30%,
        var(--color-gold) 70%,
        transparent 100%
    );
    opacity: 0.6;
}

/* Text column */
.wedding-text-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.wedding-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0.75;
    margin-bottom: 18px;
    display: block;
}

.wedding-title {
    font-size: 3.4rem;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 28px;
}

/* Thin gold horizontal rule under title */
.wedding-divider {
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 28px;
    opacity: 0.7;
}

.wedding-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--color-gray-light);
    margin-bottom: 44px;
    max-width: 440px;
}

/* CTA button — inherits global btn base, adds its own skin */
.btn-wedding {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 34px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.btn-wedding:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    gap: 18px;
}

/* Mobile: stack vertically, same pattern as prod-col */
@media (max-width: 768px) {
    .wedding-inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
    }

    .wedding-image-col,
    .wedding-text-col {
        width: 100%;
    }

    .wedding-img {
        height: 280px;
    }

    .wedding-rule {
        display: none;
    }

    .wedding-title {
        font-size: 2.4rem;
    }

    .wedding-body {
        max-width: 100%;
    }
}

/* ====== NOSOTROS SECTION ====== */
.about-section {
    padding: 100px 0;
    background-color: var(--color-navy);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.shadow-gold {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ====== CONTACTO SECTION ====== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-navy-light);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05), transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.contact-info, .contact-form-container {
    padding: 40px;
    border-radius: 12px;
}

.contact-info h3 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-list {
    margin-bottom: 30px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-gray-light);
    font-size: 1.05rem;
}

.info-list li i {
    color: var(--color-gold);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-social h4 {
    color: var(--color-gold);
    margin-bottom: 15px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-3px);
}

.glass-input {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(5px);
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    outline: none;
    border-color: var(--color-gold);
}

textarea.mock-input {
    resize: vertical;
    font-family: var(--font-body);
}

.btn-send {
    width: 100%;
    margin-top: 10px;
}

/* ====== TICKETERA SECTION ====== */
.ticketera-section {
    padding: 100px 0;
    background-color: var(--color-navy-light);
    background-image: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 40%);
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.golden-text {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.event-card {
    background: var(--color-navy);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.event-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.event-details {
    padding: 25px;
}

.event-date {
    display: block;
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.event-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.event-venue {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.event-card .btn {
    width: 100%;
}

/* Seat Map Mockup */
.seat-map-mockup {
    padding: 40px;
    margin-top: 40px;
}

.seat-map-header {
    text-align: center;
    margin-bottom: 30px;
}

.seat-map-header h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.stage {
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 40px;
    border-radius: 10px;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
}

.seats-grid {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seat-item {
    width: 20px;
    height: 20px;
    border-radius: 4px 4px 2px 2px;
    background-color: var(--color-gray-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.seat-item:hover {
    transform: scale(1.2);
}

.seat-item.available { background-color: rgba(255,255,255,0.2); }
.seat-item.available:hover { background-color: var(--color-gold); }
.seat-item.selected { background-color: var(--color-gold); box-shadow: 0 0 10px var(--color-gold); }
.seat-item.occupied { background-color: #27314a; cursor: not-allowed; opacity: 0.5; }

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.seat-dot {
    width: 15px; height: 15px; border-radius: 3px;
}

/* ====== CONCEPTUAL CHECKOUT ====== */
.checkout-section {
    padding: 80px 0;
    background: var(--color-navy);
}

.checkout-container {
    max-width: 900px;
    padding: 40px;
}

.conceptual-warning {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--color-danger);
    color: var(--color-danger);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.order-summary, .payment-form {
    background: rgba(11, 19, 43, 0.5);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.order-summary h3, .payment-form h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    color: var(--color-gold);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.summary-item img {
    width: 60px; height: 60px; border-radius: 4px; object-fit: cover;
}

.summary-info h4 { font-size: 1rem; margin-bottom: 5px; }
.summary-info p { font-size: 0.8rem; color: var(--color-gray-dark); }
.price { font-weight: bold; margin-left: auto; color: var(--color-gold); }

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-weight: bold;
    font-size: 1.2rem;
}

.total-price { color: var(--color-gold); font-size: 1.5rem; }

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-gray-light);
}

.mock-input, .blurred-field input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--color-white);
    font-family: inherit;
}

.mock-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.1);
}

.card-gateway-concept {
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    background: rgba(212, 175, 55, 0.05);
}

.gateway-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.payment-logos {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--color-gray-light);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: var(--color-gray-dark);
}

.input-with-icon input {
    padding-left: 45px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.col-half { flex: 1; }

.blurred-field input {
    filter: blur(4px);
    user-select: none;
    opacity: 0.7;
}

.btn-pay {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* ====== FOOTER ====== */
.site-footer {
    background: #060a17;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
    height: 90px; /* Agrandado el logo */
    margin-bottom: 20px;
    /* Eliminado el fondo blanco */
    border-radius: 4px;
}

.footer-brand p {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.footer-links h4, .footer-social h4 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--color-gray-light);
}

.footer-links ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}



.contact-email {
    color: var(--color-gray-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: var(--color-gray-dark);
}

.disclaimer {
    margin-top: 10px;
    color: #e74c3c;
    font-weight: 500;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .header-social-nav {
        margin-right: 0;
        margin-bottom: 20px;
        justify-content: center;
        width: 100%;
    }

    .nav-links-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-ticketera { margin-left: 0; margin-top: 15px; width: 100%; text-align: center; }

    .mobile-menu-toggle { display: block; }
    
    .hero-title { font-size: 2.5rem; }
    
    .prod-col { min-width: 100%; }
    
    .prod-thumbnails { flex-wrap: wrap; }
    .prod-thumbnails .thumbnail { width: 100%; max-width: 250px; height: auto; aspect-ratio: 5/4; }
}

/* Animations Utils */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slow);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.slide-in-left.visible, .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
