/* ===============================================
   GIBSON PROMOÇÕES - PREMIUM WEBSITE
   Estilo Premium com Identidade Visual Racing/Itálico
   =============================================== */

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

:root {
    /* Cores principais baseadas no logo */
    --primary-red: #E81C1C;
    --secondary-red: #C41515;
    --dark-red: #8B0000;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    
    /* Paleta escura premium */
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-light: #1A1A1A;
    --bg-card: #141414;
    --graphite: #2B2B2B;
    
    /* Texto */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #707070;
    
    /* Tipografia (inspirada no logo racing/itálico) */
    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras e efeitos */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-red: 0 4px 20px rgba(232, 28, 28, 0.4);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
}

.title-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    margin-bottom: 30px;
    transform: skewX(-15deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    transform: skewX(-5deg);
    box-shadow: var(--shadow-md);
}

.btn span {
    display: inline-block;
    transform: skewX(5deg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: skewX(-5deg) translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
}

.btn-secondary:hover {
    transform: skewX(-5deg) translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

.btn-tertiary:hover {
    background: var(--primary-red);
    color: var(--text-primary);
    transform: skewX(-5deg) translateY(-3px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 28, 28, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow-md);
}

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

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    padding: 5px;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-img:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(232, 28, 28, 0.3);
    transform: scale(1.02);
}

/* Logo responsiva e proporcional */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 25px;
    background: var(--primary-red);
    border-radius: 0;
    transform: skewX(-5deg);
}

.btn-nav:hover {
    background: var(--dark-red);
    box-shadow: var(--shadow-red);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-red);
    transition: var(--transition);
    transform: skewX(-15deg);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.85) 0%,
        rgba(232, 28, 28, 0.1) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Logo Principal Hero */
.hero-logo-container {
    margin-bottom: 40px;
    animation: logoReveal 1.5s ease-out;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    60% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(232, 28, 28, 0.6));
    transition: var(--transition);
}

.hero-logo:hover {
    filter: drop-shadow(0 15px 50px rgba(232, 28, 28, 0.8));
    transform: scale(1.02);
}

/* Tagline Hero */
.hero-tagline {
    margin-bottom: 25px;
}

/* Badge 40 Anos */
.hero-badge {
    position: absolute;
    top: 100px;
    right: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 20px 25px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(232, 28, 28, 0.6);
    transform: skewX(-10deg);
    animation: badgePulse 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: skewX(-10deg) scale(1);
        box-shadow: 0 8px 30px rgba(232, 28, 28, 0.6);
    }
    50% { 
        transform: skewX(-10deg) scale(1.05);
        box-shadow: 0 12px 40px rgba(232, 28, 28, 0.8);
    }
}

.badge-years {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    font-family: var(--font-display);
    color: white;
    line-height: 1;
    text-align: center;
    transform: skewX(10deg);
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: white;
    text-align: center;
    letter-spacing: 2px;
    transform: skewX(10deg);
}

.hero-title {
    margin-bottom: 20px;
}

.brand-name {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    display: block;
    text-shadow: 0 0 40px rgba(232, 28, 28, 0.5);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

/* Descrição Hero */
.hero-description {
    margin-bottom: 45px;
}

.hero-text {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.4s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease-out 0.7s both;
}

.hero-buttons .btn {
    min-width: 220px;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-red);
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-red);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 2px solid transparent;
    transition: var(--transition);
    transform: skewX(-5deg);
}

.stat-item:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    color: var(--primary-red);
    margin-bottom: 10px;
    transform: skewX(5deg);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: skewX(5deg);
}

.about-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    transform: skewX(-3deg);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(3deg) scale(1.2);
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: skewX(3deg) scale(1.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(232, 28, 28, 0.2), 
        rgba(10, 10, 10, 0.4)
    );
    pointer-events: none;
}

/* ===== ARTISTS SECTION ===== */
.artists {
    padding: 120px 0;
    background: var(--bg-darker);
}

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

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.artist-card {
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
    transform: skewX(-2deg);
    border: 2px solid transparent;
}

.artist-card:hover {
    transform: skewX(-2deg) translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.artist-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(2deg) scale(1.1);
    transition: transform 0.5s;
}

.artist-card:hover .artist-image img {
    transform: skewX(2deg) scale(1.2);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(10, 10, 10, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-overlay i {
    font-size: 4rem;
    color: var(--primary-red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.artist-info {
    padding: 30px;
    text-align: center;
    transform: skewX(2deg);
}

.artist-name {
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.artist-genre {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-artist,
.btn-artist-secondary {
    padding: 12px 30px;
    font-size: 0.95rem;
    transform: skewX(-5deg);
    width: 100%;
}

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

.btn-artist:hover {
    background: var(--primary-red);
    color: var(--text-primary);
}

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

.btn-artist-secondary:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ===== EVENTS SECTION ===== */
.events {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.event-card {
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
    transform: skewX(-2deg);
    border: 2px solid transparent;
}

.event-featured {
    grid-column: span 2;
}

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

.event-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.event-featured .event-image {
    height: 500px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(2deg) scale(1.1);
    transition: transform 0.5s;
}

.event-card:hover .event-image img {
    transform: skewX(2deg) scale(1.2);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(10, 10, 10, 0.8) 100%
    );
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 8px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transform: skewX(-10deg);
    box-shadow: var(--shadow-gold);
}

.event-info {
    padding: 35px;
    transform: skewX(2deg);
}

.event-name {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.event-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-event {
    padding: 12px 35px;
    font-size: 1rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    transform: skewX(-5deg);
}

.btn-event:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ===== COMMERCIAL SECTION ===== */
.commercial {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.commercial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://sspark.genspark.ai/cfimages?u1=mJhR4yqnCQ4S8Van%2FINiBXjWwj3mLpMg83jbFERGfCY1o6OcOqLEqbvrS7c59q3mlN%2BCoR69%2Bf0bxiUHyEIc3T%2FeValrh1jGazpZliG1zjZ5IFnIFi7KzgVgh5cfbX1jpVYzS03ozH%2FF51PqjONk4xh4GnrzXVtxJlhv9i%2FRWuramWghMcvhPl%2FG3vvOTr084A8TzoZHAlieuX6Sn%2BAQGf2f0jTxIaZYJSXxplMKO0M70EeNYgjjWuNtPcr3y4GVYkDb&u2=4FyfyaJrmw%2F4abmd&width=2560') center/cover;
    filter: grayscale(0.3);
}

.commercial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%,
        rgba(232, 28, 28, 0.2) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.commercial-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.commercial-text {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    line-height: 1.8;
}

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

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid transparent;
    transition: var(--transition);
    transform: skewX(-3deg);
}

.feature-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: skewX(-3deg) translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    transform: skewX(3deg);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    transform: skewX(3deg);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    transform: skewX(3deg);
}

.btn-commercial {
    padding: 18px 50px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
}

.btn-commercial:hover {
    transform: skewX(-5deg) translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* ===== SCHEDULE SECTION ===== */
.schedule {
    padding: 100px 0;
    background: var(--bg-darker);
}

.schedule-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.schedule-icon {
    font-size: 5rem;
    color: var(--primary-red);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.schedule-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
}

.btn-whatsapp {
    padding: 18px 50px;
    font-size: 1.2rem;
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: skewX(-5deg) translateY(-3px) scale(1.05);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

/* ===== CTA FINAL SECTION ===== */
.cta-final {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(232, 28, 28, 0.3) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

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

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 50px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(232, 28, 28, 0.5);
}

.btn-cta {
    padding: 22px 60px;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-primary);
}

.btn-cta:hover {
    transform: skewX(-5deg) translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-red);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary-red);
    padding: 80px 0 30px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.footer-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact,
.footer-links {
    list-style: none;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-red);
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact a,
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid transparent;
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: var(--transition);
    transform: skewX(-5deg);
}

.social-link:hover {
    border-color: var(--primary-red);
    background: var(--primary-red);
    transform: skewX(-5deg) translateY(-5px);
    box-shadow: var(--shadow-red);
}

.social-link i {
    transform: skewX(5deg);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(232, 28, 28, 0.2);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-size: 2rem;
    padding: 0 25px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
    border-radius: 50px;
}

.whatsapp-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: none;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
}

.whatsapp-float i {
    font-size: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        height: 400px;
    }
    
    .event-featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 20px;
        gap: 30px;
        transition: left 0.3s;
        border-top: 2px solid var(--primary-red);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo {
        max-width: 400px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-badge {
        top: 80px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .badge-years {
        font-size: 2.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .artists-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .commercial-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact li,
    .footer-links li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        min-width: 55px;
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        padding: 0;
    }
    
    .whatsapp-text {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        top: 100px;
        right: 10px;
        padding: 12px 15px;
    }
    
    .badge-years {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-logo {
        max-width: 90%;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 100%;
        max-width: 300px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .artist-image,
    .event-image {
        height: 300px;
    }
}