/* CSS Variables & Reset */
:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-light-dark: #151515;
    --text-primary: #f5f5f5;
    --text-muted: #a0a0a0;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --gold-light: rgba(212, 175, 55, 0.2);
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.26, 1.55);
}

/* Custom cursor styles removed to restore default system pointer */

/* Fix Hero Actions Centering */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.italic { font-style: italic; }
.font-serif { font-family: var(--font-serif); }
.underline { text-decoration: underline; text-underline-offset: 4px; }
.w-full { width: 100%; }

/* Layout & Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.narrow { max-width: 800px; margin: 0 auto; }
.section { position: relative; }
.padding-lg { padding: 100px 0; }
.padding-md { padding: 60px 0; }
.margin-top { margin-top: 40px; }
.margin-top-sm { margin-top: 20px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-gold {
    background-color: var(--gold);
    color: #000;
}

.neon-effect {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.neon-effect:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically in the column */
    position: relative;
    overflow: hidden;
    background-color: transparent; /* Remove opaque background to reveal video */
}

.hero-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Hero Slideshow Transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-video-layer, .hero-image-layer {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-color: #000;
    filter: brightness(1.1) contrast(1.1);
}

.section-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10,10,10,0.3) 0%, 
        rgba(10,10,10,0.6) 50%,
        rgba(10,10,10,0.95) 100%);
    z-index: 1; /* Overlay sits on top of the video */
}

/* Ensure content stays on top of video layers and overlays */
.section-video-container > *:not(.hero-video-layer):not(.section-video-bg):not(.section-overlay):not(.hero-bg-fallback):not(.scroll-indicator) {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20; /* Ensure it's above the overlay and video */
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 40px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    line-height: 1.1;
    font-weight: 600;
}

.hero-quote-box {
    margin: 0 auto 50px;
    max-width: 650px;
    padding: 20px;
    border-left: 1px solid var(--gold-light);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    border-radius: 0 8px 8px 0;
}

.quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.quote-author {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

/* Sections Styling */
.dark-bg-1 { background-color: var(--bg-dark); }
.dark-bg-2 { background-color: var(--bg-light-dark); }
.pattern-bg {
    background-color: var(--bg-darker);
    background-image: radial-gradient(var(--gold-light) 1px, transparent 1px);
    background-size: 40px 40px;
}

.section-header { margin-bottom: 60px; }
.overline {
    display: block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title { font-size: 2.5rem; }
.lead { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 20px; }

/* Elegant Services List (Qué Hacemos) */
.elegant-services {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.elegant-service-item {
    display: flex;
    gap: 50px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    align-items: center;
    transition: var(--transition-smooth);
}

.elegant-service-item:hover {
    background: rgba(212, 175, 55, 0.03);
    padding-left: 20px;
    padding-right: 20px;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.6);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.3;
    font-style: italic;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.elegant-service-item:hover .service-number {
    opacity: 0.8;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
}

@media (max-width: 768px) {
    .elegant-service-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 30px 0;
    }
    .elegant-service-item:hover {
        padding-left: 0;
    }
    .service-number {
        font-size: 2.5rem;
    }
}

/* Concept Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.align-center { align-items: center; }

.img-fluid { width: 100%; height: auto; display: block; }
.rounded-edge { border-radius: 4px; }
.shadow-gold { box-shadow: -20px 20px 0 var(--gold-light); }

/* Event List */
.event-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.event-date-badge {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 10px;
    text-align: center;
    min-width: 70px;
    border-radius: 4px;
}

.event-date-badge h3 { margin: 0; font-family: var(--font-sans); font-size: 1.5rem; font-weight: 700; }
.event-date-badge span { font-size: 0.8rem; text-transform: uppercase; font-weight: 500; }

.event-info h4 { margin: 0; font-size: 1.2rem; }
.event-info span { color: var(--gold); font-size: 0.9rem; font-family: var(--font-serif); font-style: italic; }

/* Subscription Box */
.dark-bg-amigos {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.subscription-box {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--gold-light);
    padding: 50px;
    max-width: 600px;
    margin: 40px auto 0;
    border-radius: 4px;
}

.friend-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.friend-form input {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    font-family: var(--font-sans);
    border-radius: 2px;
}
.friend-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Partners */
.partners-logo-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.partner-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-smooth);
}
.partner-logo:hover {
    opacity: 1;
    color: var(--gold);
}

/* Footer */
.main-footer {
    background-color: var(--bg-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-sans);
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-brand p { color: var(--text-muted); max-width: 300px; }
.quote-small { font-family: var(--font-serif); font-style: italic; margin-top: 15px; }

.footer-links h4, .footer-contact h4 { font-size: 1.1rem; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 5px; }
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-serif); }
.social-icons a:hover { background: var(--gold); color: var(--bg-darker); border-color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.legal-links { display: flex; gap: 20px; }
.legal-links a { color: var(--text-muted); }
.legal-links a:hover { color: var(--gold); }

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.popup-content {
    background: var(--bg-light-dark);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--gold-light);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.popup-with-poster {
    max-width: 800px;
    display: flex;
    padding: 0; /* Remove padding to let poster hit edges */
    overflow: hidden;
    text-align: left;
}

.popup-poster {
    flex: 0 0 50%;
    background: #000;
}

.popup-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.popup-poster a:hover img {
    opacity: 0.8;
}

.popup-info {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .popup-with-poster {
        flex-direction: column;
        max-width: 400px;
    }
    .popup-poster {
        height: 250px;
    }
    .popup-info {
        padding: 30px 20px;
        text-align: center;
    }
}

.popup-overlay.hidden .popup-content { transform: translateY(50px); }
.close-popup {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
}
.close-popup:hover { color: var(--gold); }
.popup-subtitle {
    display: block; font-family: var(--font-sans); text-transform: uppercase;
    color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 10px;
}
/* Animations & Utilities */
.fade-in-up { 
    opacity: 0; 
    transform: translateY(30px); 
    animation: fadeInUpAnim 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.fade-in.visible { opacity: 1; }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: all 1s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: all 1s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.mouse {
    width: 25px; height: 40px; border: 2px solid var(--text-muted);
    border-radius: 15px; position: relative;
}
.wheel {
    width: 3px; height: 6px; background: var(--text-muted);
    border-radius: 2px; position: absolute;
    top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Director Photo Styling */
.director-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    z-index: 1;
}

.director-img-wrapper img {
    transition: var(--transition-smooth);
}

.director-img-wrapper:hover img {
    transform: scale(1.05);
}

.director-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(10,10,10,0.4) 0%, transparent 50%);
    pointer-events: none;
}



/* --- Modern Concerts Section --- */
.concerts-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.concert-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    height: 100%;
}

.concert-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.concert-card.featured {
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(30, 25, 15, 0.7);
}

.concert-poster {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.concert-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.concert-card:hover .concert-poster img {
    transform: scale(1.1);
}

.concert-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 3;
}

.concert-date-badge.gold {
    background: var(--gold);
    color: black;
}

.concert-date-badge .day {
    font-size: 1.4rem;
    line-height: 1;
}

.concert-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.concert-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-badge {
    display: inline-block;
    background: var(--gold);
    color: black;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.concert-name {
    font-family: var(--font-header);
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white;
}

.concert-venue {
    color: var(--gold);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 500;
}

.concert-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.concert-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.btn-buy {
    background: var(--gold);
    color: black !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-buy:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Sparkle Effect for featured button */
.sparkle-effect {
    position: relative;
    overflow: hidden;
    animation: buttonGlow 3s infinite alternate;
}

@keyframes buttonGlow {
    from { box-shadow: 0 0 5px var(--gold); }
    to { box-shadow: 0 0 25px var(--gold); }
}

@media (max-width: 768px) {
    .concerts-grid {
        grid-template-columns: 1fr;
    }
    
    .concert-card {
        max-width: 450px;
        margin: 0 auto;
    }
}

.netflix-card:hover .netflix-card-info {
    transform: translateY(0);
}

.netflix-card-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--gold);
}

.netflix-card-info p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

.badge-proximamente {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.btn-sm {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
}

.btn-sm.outline {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

@media (max-width: 900px) {
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .padding-lg { padding: 60px 0; }
    
    .mobile-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--bg-darker);
        display: flex; align-items: center; justify-content: center;
        transition: var(--transition-smooth);
    }
    .main-nav.active { right: 0; }
    .main-nav ul { flex-direction: column; text-align: center; gap: 40px; }
    .main-nav a { font-size: 1.2rem; }
    
    .mobile-toggle.active .hamburger { background: transparent; }
    .mobile-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; background: var(--gold); }
    .mobile-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 0; background: var(--gold); }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .floating-cta { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 0.8rem; }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
    z-index: 9999;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212,175,55,0.6);
    color: #000;
}
/* --- Compañeros de Escenarios (Sponsors) --- */
.aliados-section {
    padding: 100px 0;
    background-color: #060606;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 50px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.partner-item {
    font-family: var(--font-header);
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 15px;
    position: relative;
    white-space: nowrap;
    text-decoration: none; /* Premium look: no underlines */
}

.partner-item:hover {
    color: var(--gold);
    transform: translateY(-5px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.partner-item span {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 20px 30px;
    }
    
    .partner-item {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* ===================================================
   HAZTE AMIGO SPLIT SECTION (two-column unified)
   =================================================== */
.hazte-amigo-split {
    padding: 0;
    background: var(--bg-darker);
}

.hazte-amigo-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.hazte-col {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Dividing line between columns */
.hazte-col-left {
    border-right: 1px solid rgba(212, 175, 55, 0.25);
}

.hazte-col-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image at the top of each column */
.hazte-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
}

.hazte-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    display: block;
}

.hazte-col:hover .hazte-img {
    transform: scale(1.05);
}

.hazte-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.2) 0%,
        rgba(10,10,10,0.75) 100%
    );
    pointer-events: none;
}

/* Content area below each image */
.hazte-col-content {
    flex: 1;
    padding: 40px 50px 50px;
    background: var(--bg-darker);
}

/* Featured partners (Talán, Clear Channel, VivoFacil) */
.partners-featured {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0 24px;
}

.partner-featured-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.partner-featured-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    opacity: 0.6;
}

.partner-featured-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    color: #fff;
}

/* Secondary partners (smaller grid below featured) */
.partners-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.partners-secondary .partner-item {
    font-size: 0.78rem;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.partners-secondary .partner-item:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

/* Subscription box inside column - remove restrictive max-width */
.hazte-col .subscription-box {
    max-width: 100%;
    margin: 0;
    padding: 30px;
    background: rgba(15, 15, 15, 0.9);
}

/* ===== Responsive: stack columns on mobile ===== */
@media (max-width: 900px) {
    .hazte-amigo-columns {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hazte-col-left {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .hazte-col-content {
        padding: 30px 24px 40px;
    }

    .hazte-img-wrapper {
        height: 240px;
    }

    .partner-featured-item {
        font-size: 1rem;
        padding: 12px 18px;
    }
}

/* ===================================================
   HAZTE AMIGO VIDEO HEADER & LARGER TYPOGRAPHY
   =================================================== */
.hazte-video-header {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hazte-header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hazte-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hazte-header-titles {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hazte-header-main {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hazte-col-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hazte-col-sub {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Poster variant for the left column image */
.hazte-img-wrapper-poster {
    height: 600px;
}

.hazte-img-wrapper-poster .hazte-img {
    object-position: top center;
}

.pointer-overlay {
    background: rgba(10, 10, 10, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hazte-img-wrapper-poster:hover .pointer-overlay {
    opacity: 1;
}

@media (max-width: 900px) {
    .hazte-img-wrapper-poster {
        height: 450px;
    }
}


/* Partner Spotlight Section */
.partner-spotlight-section {
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.spotlight-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 auto;
}

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

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.sound-toggle-btn {
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition-bounce);
}

.sound-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--gold);
}

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

.spotlight-info {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.spotlight-info .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.spotlight-tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
    animation: goldPulse 2s infinite;
    text-transform: uppercase;
}

@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@media (max-width: 768px) {
    .partner-spotlight-section {
        padding: 60px 0;
    }
    .spotlight-container {
        padding: 20px;
        width: 95%;
    }
    .video-player-wrapper {
        aspect-ratio: 16 / 9; /* Keep cinematic aspect ratio even on mobile */
    }
    .sound-toggle-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    .spotlight-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
}
