/* 
   4 GATOS PARDOS - DESIGN SYSTEM
   "Dark Jazz" Aesthetic
*/

:root {
    /* Colors */
    --color-bg: #0A0A0A;
    --color-bg-card: #141414;
    --color-bg-alt: #0F0F0F;
    --color-gold: #C9A84C;
    --color-gold-light: #E8C97A;
    --color-gold-dark: #8B6914;
    --color-text: #F5F0E8;
    --color-text-muted: #A89E8E;
    --color-border: rgba(201, 168, 76, 0.15);
    
    /* Fonts */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.1);
}

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

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

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

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 8rem 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.section-title em {
    font-style: italic;
    color: var(--color-gold);
}

.text-center { text-align: center; }
.dark-bg { background-color: var(--color-bg-alt); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-gold:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

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

.btn-full {
    width: 100%;
    border: none;
    font-family: var(--font-body);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

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

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo img {
    height: 55px;
}

.nav-menu-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.nav-left { margin-right: 15rem; } /* Espacio para el logo centrado */
.nav-right { margin-left: 15rem; }

@media (max-width: 992px) {
    .nav-menu-wrapper {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        gap: 2rem;
        border-bottom: 1px solid var(--color-border);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu-wrapper.active-menu {
        display: flex;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-left, .nav-right {
        margin: 0;
    }
    
    .nav-logo {
        position: static;
        transform: none;
    }
    
    .nav-container {
        justify-content: space-between;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

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

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

.btn-nav {
    border: 1px solid var(--color-gold) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    color: var(--color-gold) !important;
}

.btn-nav:hover {
    background-color: var(--color-gold) !important;
    color: #000 !important;
}

.nav-emoji {
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}

.btn-nav::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    transition: 0.3s;
    transform-origin: left center;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(10,10,10,1) 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-tagline {
    color: var(--color-gold);
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-title .italic {
    font-style: italic;
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--color-gold);
}

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

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.about-img-caption {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--color-gold);
    color: #000;
    padding: 1rem 2rem;
    font-weight: 700;
    font-style: italic;
    font-family: var(--font-title);
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-title);
    color: var(--color-gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--color-text-muted);
}

/* Genres */
.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.genre-card {
    background-color: var(--color-bg-card);
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: 0.4s ease;
}

.genre-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.genre-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.2);
}

.genre-icon svg {
    width: 40px;
    height: 40px;
}

.genre-card:hover .genre-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--color-gold-light);
    box-shadow: 0 15px 35px rgba(201, 168, 76, 0.4);
}

.genre-card h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.genre-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Banda */
.band-featured-grid {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.band-card.main-featured {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 600px;
    border: 1px solid var(--color-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: var(--color-bg-card);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.band-card.main-featured #featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease, transform 0.6s ease, object-position 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.band-card.main-featured .band-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
    z-index: 2;
}

.band-card.main-featured h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.band-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.band-item {
    background: rgba(20, 20, 20, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.band-thumb {
    display: none;
}

.band-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
    background: rgba(201, 168, 76, 0.05);
}

.band-item.active {
    border-color: var(--color-gold);
    background: var(--color-gold);
}

.band-item.active strong, 
.band-item.active span {
    color: #000;
}

.band-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.band-item span {
    color: var(--color-text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.band-card:hover img {
    transform: scale(1.05);
}

.band-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.band-info h3 {
    font-family: var(--font-title);
    font-size: 2rem;
}

.band-info p {
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
}

.band-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.band-item {
    background: var(--color-bg-card);
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--color-gold);
}

.band-item strong {
    display: block;
    font-size: 1.2rem;
}

.band-item span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-sm);
}

.video-item video {
    width: 100%;
    display: block;
}

.video-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--color-gold);
    font-size: 0.9rem;
    background: var(--color-bg-card);
}

/* Marquee Gallery */
.gallery-marquee {
    background: var(--color-bg-alt);
    padding: 4rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 40s linear infinite; /* Increased speed (from 60s to 40s) */
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.marquee-track img {
    height: 300px;
    width: auto;
    object-fit: cover;
    border-radius: 1rem;
    filter: none;
    opacity: 0.85;
    transition: all 0.5s ease;
}

.marquee-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.contact-list {
    margin: 2.5rem 0;
}

.contact-list li {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.social-links {
    margin-top: 2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.social-btn:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--color-bg-card);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    color: var(--color-text);
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.1);
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--color-border);
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
}

.footer-location {
    color: var(--color-gold);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 1rem 0 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-social a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-social a:hover {
    color: var(--color-gold);
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* WhatsApp Chat Window */
.wa-chat-window {
    position: fixed;
    bottom: 95px;
    right: 2rem;
    width: 320px;
    background: #fff;
    border-radius: 1rem;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    z-index: 2000;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

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

.wa-chat-window.active {
    display: flex;
}

.wa-chat-header {
    background: #075E54;
    padding: 1rem 1.2rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-chat-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wa-chat-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}

.wa-status {
    display: flex;
    flex-direction: column;
}

.wa-status strong {
    font-size: 0.9rem;
    display: block;
    line-height: 1.2;
}

.wa-status span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.wa-chat-header .wa-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.wa-msg-sent {
    background: #DCF8C6;
    padding: 0.8rem;
    border-radius: 0.5rem 0 0.5rem 0.5rem;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    max-width: 90%;
    align-self: flex-end;
    line-height: 1.4;
}

.wa-msg-sent::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    border-top: 8px solid #DCF8C6;
    border-right: 8px solid transparent;
}

.wa-chat-body {
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background: #E5DDD5; 
    max-height: 350px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.wa-msg-received {
    background: #fff;
    padding: 0.8rem;
    border-radius: 0 0.5rem 0.5rem 0.5rem;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    max-width: 90%;
    line-height: 1.4;
}

.wa-msg-received::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
}

.wa-chat-window .wa-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wa-chat-window .wa-option {
    background: #DCF8C6;
    border: none;
    color: #333;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    text-align: left;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-chat-window .wa-option:hover {
    background: #d1f1b6;
    transform: translateX(3px);
}

.wa-chat-footer {
    padding: 0.8rem;
    background: #f0f0f0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.wa-chat-footer input {
    flex: 1;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
}

.wa-chat-footer input:focus {
    outline: none;
}

.wa-chat-footer button {
    background: none;
    border: none;
    color: #075E54;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.wa-chat-footer button svg {
    width: 24px;
    height: 24px;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 999;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.whatsapp-fab svg {
    width: 35px;
    height: 35px;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
}

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

/* Reveal Animations */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.active {
    opacity: 1;
    transform: translate(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    
    .nav-toggle { display: flex; }
    
    .nav-menu-wrapper {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(10, 10, 10, 0.95);
        padding: 2rem;
        gap: 2rem;
        backdrop-filter: blur(20px);
        text-align: center;
        z-index: 999;
        border-bottom: 1px solid var(--color-gold);
    }
    
    .nav-menu-wrapper.active-menu {
        display: flex;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-left, .nav-right {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .nav-logo {
        z-index: 1001;
    }

    .about-grid, 
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-title { font-size: 4.5rem; }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section { padding: 5rem 0; }
    
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }
    
    .about-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .stat-item {
        align-items: center;
    }

    .band-card.main-featured h3 {
        font-size: 2.2rem;
    }
    
    .marquee-track img {
        height: 200px;
        width: auto; /* Changed to auto to preserve aspect ratio */
        min-width: 250px; /* Ensure a minimum size on mobile */
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; gap: 1rem; width: 100%; }
    .hero-btns .btn { width: 100%; text-align: center; }
    
    .section-title { font-size: 2.2rem; }
    
    .band-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        width: 100%;
        padding: 0;
    }

    .band-item {
        min-width: 0;
        width: 100%;
        padding: 0.8rem;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }
    
    .band-thumb {
        display: block;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .band-item.active .band-thumb {
        border-color: #000;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-brand { font-size: 1.5rem; }
    
    .wa-chat-window {
        width: 90%;
        right: 5%;
        bottom: 85px;
    }
}


/* ==========================================
   CHRISTMAS SECTION
   ========================================== */
.christmas {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.christmas-card {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(20, 14, 2, 0.95) 100%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 2rem;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(201, 168, 76, 0.1);
    transition: all 0.5s ease;
}

.christmas-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 40%);
    pointer-events: none;
    border-radius: 2rem;
}

.christmas-card:hover {
    border-color: rgba(201, 168, 76, 0.6);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15), inset 0 1px 0 rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.christmas-ornaments {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    opacity: 0.7;
}

.ornament {
    display: inline-block;
    animation: sway 3s ease-in-out infinite;
}

.ornament:nth-child(1) { animation-delay: 0s; }
.ornament:nth-child(2) { animation-delay: 0.3s; }
.ornament:nth-child(3) { animation-delay: 0.6s; }
.ornament:nth-child(4) { animation-delay: 0.9s; }
.ornament:nth-child(5) { animation-delay: 1.2s; }
.ornament:nth-child(6) { animation-delay: 1.5s; }

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

.christmas-content {
    position: relative;
    z-index: 1;
}

.christmas-subtitle {
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-style: italic;
    font-family: var(--font-title);
}

.christmas-text {
    max-width: 780px;
    margin: 0 auto 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.christmas-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem auto;
    flex-wrap: wrap;
    max-width: 700px;
}

.christmas-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.christmas-feature span {
    font-size: 2rem;
    display: block;
}

.christmas-feature p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 500;
    max-width: 140px;
}

@media (max-width: 768px) {
    .christmas-card {
        padding: 3rem 1.5rem;
        border-radius: 1rem;
    }

    .christmas-features {
        gap: 2rem;
    }

    .christmas-ornaments {
        font-size: 1.4rem;
        gap: 1rem;
    }
}
