/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;800;900&display=swap');

@font-face {
    font-family: 'Munish';
    src: url('assets/fonts/Munich.woff2') format('woff2'),
         url('assets/fonts/Munich.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('assets/fonts/SFProDisplay-Bold.woff2') format('woff2'),
         url('assets/fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('assets/fonts/SFProDisplay-Bold.woff2') format('woff2'),
         url('assets/fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 400; /* Fallback using Bold file if Regular is missing, or user intends Bold for everything? */
    font-style: normal;
    font-display: swap;
}

:root {
    /* Updated Colors */
    --primary-color: #FF73B0; /* Pink Button/Micro-names */
    --highlight-blue: #64C5E5; /* Title Highlights */
    --bg-blue: #2A3275; /* History Section BG */
    --text-color: #D9D9D9; /* Countdown, Menu */
    --text-gray: #758491; /* Paragraphs, Events, Dates, Artist Subs */
    --text-green: #CAEF7E; /* History Micro-text */
    --bg-dark: #0d0d0d;
    --bg-light: #f5f5f5;
}

.highlight-blue {
    color: var(--highlight-blue) !important;
}

.desk-block {
    display: block;
}

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

/* Apply Munish to Titles */
.hero-title,
.events-title,
.history-title,
.lineup-title {
    font-family: 'Munish', 'Outfit', sans-serif;
}

/* Apply SF Pro Display to Body/Text */
body {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Old header removed - now inside .hero-top */

/* ===================== */
/* Side Menu Styles      */
/* ===================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -350px; /* Hidden by default */
    width: 350px;
    height: 100%;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}

.side-menu.active {
    right: 0;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: auto;
}

.side-menu-logo {
    height: 52px; /* Increased by 24px (40 -> 64) */
    width: auto;
}

.side-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.side-menu-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.side-menu-links li {
    margin-bottom: 20px;
}

.side-menu-links a {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

.side-menu-links a:hover {
    color: var(--primary-color);
}

.side-menu-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.social-icon {
    color: #333;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--primary-color);
}

.side-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.2s;
}

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

.menu-btn-whatsapp svg {
    fill: var(--primary-color);
}

.menu-btn-whatsapp:hover {
    background: var(--primary-color);
    color: white;
}

.menu-btn-whatsapp:hover svg {
    fill: white;
}

.menu-btn-ticket {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

.menu-btn-ticket:hover {
    filter: brightness(1.1);
}

.separator {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    margin: 0 10px;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* Menu Text */
.menu-text {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-color);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
}

.menu-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 40px;
    background: #000 url('assets/images/HERO-BG-DESK.webp') no-repeat center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Subtle overlay to help text readability */
    z-index: 1;
}

.hero-video-bg {
    display: none; /* Hidden on desktop */
}

.hero-video-overlay {
    display: none; /* Hidden on desktop */
}

/* Unmute Button - Hidden on desktop */
.unmute-btn {
    display: none;
}

/* Mobile: Show video background */
@media (max-width: 767px) {
    .hero {
        background: #020414; /* Fallback color */
    }

    .hero-video-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-video-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(2, 4, 20, 0.75); /* #020414 with 0.75 opacity */
        z-index: 1;
    }

    .hero-overlay {
        display: none; /* Hide original overlay on mobile */
    }

    .unmute-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 8px;
        color: white;
        cursor: pointer;
        font-family: 'SF Pro Display', 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        margin-top: 4vw;
        align-self: center;
    }

    .unmute-btn:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .unmute-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: white;
        border-radius: 50%;
        color: #020414;
    }

    .unmute-icon svg {
        width: 18px;
        height: 18px;
    }

    .unmute-text {
        white-space: nowrap;
        padding-right: 8px;
    }

    .hero-bottom-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .headline-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Desktop: hero-bottom-right layout */
@media (min-width: 768px) {
    .hero-bottom-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}

/* Hero Top: Logos & Menu */
.hero-top {
    position: relative;
    z-index: 10;
    width: 100%;
    /* Removed padding - now on hero container */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logos Sizing Fix */
.logo-arpoador {
    height: 48px;
    width: auto;
}



.header-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* Hero Center: Headline & Stickers - Absolute Position */
.hero-center {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Allows clicking through to elements behind */
}

.headline-container {
    position: relative;
    text-align: center;
    max-width: 900px;
    pointer-events: auto; /* Re-enable pointer events for links/buttons */
}

.hero-title {
    font-family: 'Munish', 'Outfit', sans-serif;
    font-size: clamp(68px, 22vw, 134px); /* Increased by 6px */
    font-weight: normal;
    line-height: 0.82; /* Reduced for tighter block feel */
    text-transform: uppercase;
    color: #FFFFFF; /* Pure White */
    letter-spacing: -2px;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Stickers Absolute Positioning */
.sticker-mascara {
    position: absolute;
    top: -75px; /* Moved up */
    left: 50%;
    transform: translateX(-50%) rotate(20deg); /* Rotation applied */
    width: 80px;
    z-index: 10; /* Above title */
}

.sticker-badge {
    position: absolute;
    bottom: 100px; /* Moved up to align between S and A */
    left: 72px;
    width: 90px;
    z-index: 10; /* Above title */
    transform: rotate(-12deg);
    animation: rotateBadge 20s infinite linear;
}

/* Hero Bottom: Countdown & CTA */
.hero-bottom {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between; /* Countdown left, Button right */
    align-items: flex-end;
    width: 100%;
    /* Removed padding - now on hero container */
}

.countdown-glass {
    display: flex;
    align-items: stretch;
    width: 320px; /* Standardized to 320px */
    /* Glassmorphism Effect */
    border: 1px solid rgba(153, 153, 153, 0.1);
    background: linear-gradient(95deg, rgba(217, 217, 217, 0.15) 0%, rgba(115, 115, 115, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.countdown-item {
    flex: 1 1 0; /* flex-grow, flex-shrink, flex-basis - ensures equal sizes */
    padding: 7px 0; /* Updated from 9px */
    text-align: center;
    position: relative; /* For pseudo-element divider */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.countdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%; /* Increased divider height */
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.countdown-item:last-child {
    border-right: none;
}

.countdown-number {
    font-family: 'SF Pro Display', 'Outfit', sans-serif;
    font-size: 32px; /* Decreased by 1px */
    font-weight: 700;
    line-height: 1;
    color: var(--text-color);
}

.countdown-label {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-top: 1px; /* Decreased from 2px */
    color: var(--text-color);
}

/* CTA Button */
/* CTA Button */
.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    padding-left: 0; /* User specific request */
    font-family: 'SF Pro Display', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px; /* Decreased from 20px */
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, filter 0.2s;
    text-decoration: none;
    /* Ensure layout stability */
    width: 320px; /* Standardized to 320px */
    box-sizing: border-box;
    justify-content: space-between;
    overflow: hidden; /* Prevent text/icon jumping */
}

.cta-text {
    flex-grow: 1;
    text-align: center; /* Center the text within its grown space */
    white-space: nowrap; /* Prevent breaking */
    margin-left: 20px; /* Visual balance since left padding is 0 */
}

.cta-button:hover {
    filter: brightness(1.1);
}

.cta-arrow-icon {
    width: 42px; /* Decreased by 4px */
    height: 42px;
    padding-right: 0;
    object-fit: contain;
}

/* Events Section */
.events-section {
    background-color: #fff;
    color: #000;
    padding: 120px 0;
}

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

.events-header {
    margin-bottom: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Increased from 32px */
}

.events-subtitle {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-size: 16px; /* Pattern: 16px */
    color: var(--primary-color);
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
}

.events-title {
    font-size: 64px;
    font-weight: normal; /* Munish */
    text-transform: uppercase;
    line-height: 0.9;
    color: #000;
    margin-bottom: -8px;
}

.events-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Specific text instructions: "Eventos e datas ... #758491" */
.events-detail {
    text-align: left;
    font-size: 14px;
    color: var(--text-gray);
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    margin-top: -30px;
    max-width: 340px;
    text-transform: uppercase;
    line-height: 1.5;

}

.events-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0; /* Updated from 40px */
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.event-item:hover {
    padding-left: 20px;
    background: #fafafa;
}

.event-info h3 {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--text-gray); /* #758491 conforme solicitado */
}

.event-info p {
    font-size: 16px;
    color: var(--text-gray); /* Dates */
    letter-spacing: 2px;
}

.event-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    padding: 0 32px 18px 32px;
    display: inline-block;
}

.event-link:hover {
    color: #ff4090;
}

/* History Section */
.history-section {
    background: var(--bg-blue);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
}

.history-header {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Increased from 32px */
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 16px; /* Pattern: 16px */
    color: var(--text-green);
    margin-bottom: 0;
    display: inline-block;
}

.history-title {
    font-size: 60px;
    font-weight: normal; /* Munish */
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 60px;
}

.history-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px; /* Increased width as requested */
    margin: 60px auto 0 auto; /* Centered */
    text-align: left;
    padding: 0 20px;
}

.history-swiper {
    width: 100%;
    padding: 60px 20px;
    overflow: visible; /* Allow slides to show outside container */
}

@media (min-width: 768px) {
    .history-swiper {
        padding: 60px 60px;
    }
}

@media (min-width: 1024px) {
    .history-swiper {
        padding: 60px 100px;
    }
}

.history-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Linear transition for continuous marquee effect */
.history-swiper .swiper-wrapper,
.artist-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.history-text {
    max-width: 450px;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
    color: #B8C9D9
}

/* Lineup Section */
.lineup-section {
    background: #EEEEEE;
    padding: 120px 0; /* Removing side padding for full-bleed carousel */
    color: #333;
}

.lineup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Increased from 32px */
}

.lineup-title {
    font-size: 64px;
    font-weight: normal; /* Munish */
    text-transform: uppercase;
    margin-bottom: 0; /* Managed by gap */
    text-align: center;
    margin-bottom: 16px;
}

.lineup-section p {
     /* Micro text "Lineup Completa" */
     color: var(--primary-color) !important; /* Force override inline style if needed, but better to target class */
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px; /* Increased from 40px */
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 120px;
}

.lineup-day {
    text-align: center;
}

.day-date {
    font-family: 'Munish', 'Outfit', sans-serif;
    font-size: 40px; /* Synced and +4px increase */
    font-weight: normal;
    margin-bottom: 12px; /* Increased from 5px */
    color: #333;
}

.day-info {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0; /* Removed letter-spacing */
    color: var(--text-gray);
    margin-bottom: 20px; /* Increased from 15px */
    min-height: 15px;
    width: 120px; /* Force 2-line wrap */
    margin-left: auto;
    margin-right: auto;
}

.artist-list {
    font-family: 'Munish', 'Outfit', sans-serif;
    font-size: 40px; /* Synced with day-date and +4px */
    font-weight: normal;
    color: var(--text-gray);
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.lineup-artist {
    font-family: 'Munish', 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: normal;
    color: var(--text-gray);
    display: block;
}

.lineup-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.artist-hex {
    width: 200px; /* Approximate size */
    height: 220px;
    object-fit: cover;
    /* Basic hexagon clip path or mask */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: #ddd;
    transition: transform 0.3s;
}

.artist-hex:hover {
    transform: scale(1.05);
}

.lineup-subtitle {
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    font-size: 16px; /* Pattern: 16px */
    margin-bottom: 0;
    font-family: 'SF Pro Display', 'Inter', sans-serif;
}

/* ===================== */
/* Artist Swiper Styles  */
/* ===================== */
.artist-swiper {
    width: 100%;
    padding-bottom: 50px;
    overflow: visible; /* Allow slides to show outside container */
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .artist-swiper {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1024px) {
    .artist-swiper {
        padding-left: 100px;
        padding-right: 100px;
    }
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    /* width handled by Swiper JS (slidesPerView) */
    height: auto;
    transition: none; /* Removed transition */
    opacity: 1; /* All slides full opacity */
    transform: none; /* No scaling */
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide-active {
    opacity: 1;
    transform: none; /* No zoom */
    z-index: 10;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    /* Removed clip-path (mask) as requested */
    border-radius: 0;
}

/* ===================== */
/* New Partners Styles   */
/* ===================== */
.partners-section {
    padding: 80px 40px 120px 40px;
    background: #EEEEEE; /* Updated from #EFEFEF */
    color: #333;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Partners Header Row */
.partners-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align description to bottom */
    gap: 40px;
}

.partners-title-block {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Increased from 32px */
}

.partners-micro {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-size: 16px; /* Pattern: 16px */
    color: var(--primary-color);
    letter-spacing: 5px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0;
}

.partners-headline {
    font-family: 'Munish', 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 0.9;
    color: #000;
    margin: 0 0 -4px 0;
}

.partners-description {
    flex: 1;
    max-width: 400px;
}

.partners-description p {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-gray);
    text-align: left;
}

/* Partners Logos Row */
.partners-logos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Removed dotted borders */
    gap: 20px; /* Consistent gap */
    padding: 20px 0;
}



.partner-logo {
    max-height: 60px; /* Base size */
    width: auto;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s;
}

/* Specific Logo Sizing */
.partner-logo-pineapple {
    max-height: 82px; /* -5px (84 -> 79) */
}

.partner-logo-eletromidia {
    max-height: 74px; /* -5px (78 -> 73) */
}

.partner-logo-koleston {
    max-height: 43px; /* -5px (50 -> 45) */
}

/* UAU stays default (60px) or adjustments to ensure vertical align if needed */
.partner-logo-uau {
    max-height: 64px; /* -5px (66 -> 61) */
}

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

.partner-divider {
    width: 1px;
    height: 80px;
    background-color: #758491;
}


/* Responsive Styles */
@media (max-width: 768px) {

    /* ============================== */
    /* Global Mobile Utility          */
    /* ============================== */
    .mobile-block {
        display: block;
    }

    .hidden-mobile {
        display: none !important;
    }

    .desk-block {
        display: inline;
    }

    /* ============================== */
    /* 1. Hero Section                */
    /* ============================== */
    .hero {
        padding: 6vw 4vw;
    }

    .logo-arpoador {
        height: 8vw;
    }

    .side-menu-logo {
        height: 13vw; /* Base height + 5vw increase (assuming ~8vw was base or just adding 5vw to a reasonable base) */
    }

    .hero-center {
        top: 44%
    }

    .hero-title {
        font-size: 22vw;
        line-height: 0.85;
    }

    .sticker-mascara {
        width: 14vw;
        top: -12vw;
    }

    .sticker-badge {
        width: 16vw;
        bottom: 35vw;
        left: 11vw;
    }

    .hero-bottom {
        flex-direction: column-reverse;
        align-items: center;
        gap: 4vw;
    }

    .cta-button {
        order: -1; /* Button on top */
        width: 92vw;
        height: auto;
        padding:3vw;
        font-size: 4.8vw;
        justify-content: center;
    }

    .cta-arrow-icon {
        width: 11vw;
        height: 11vw;
    }

    .countdown-glass {
        width: 92vw;
    }

    .countdown-number {
        font-size: 7vw;
    }

    .countdown-label {
        font-size: 2.5vw;
    }

    /* ============================== */
    /* 2. Events Section              */
    /* ============================== */
    .events-section {
        padding: 20vw 4vw;
    }

    .events-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8vw;
        margin-bottom: 15vw;
    }

    .events-title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6vw;
    }

    .events-subtitle {
        font-size: 3.2vw;
    }

    .events-title {
        font-size: 11vw;
    }

    .events-detail {
        margin-top: 0;
        font-size: 3.5vw;
        text-align: center;
    }

    .event-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4vw;
        padding: 8vw 0;
    }

    .event-item:hover {
        padding-left: 0;
    }

    .event-info h3 {
        font-size: 5vw;
    }

    .event-info p {
        font-size: 3.5vw;
    }

    .event-link {
        font-size: 3.5vw;
        padding: 0 4vw 3vw 4vw;
        white-space: nowrap;
    }

    /* ============================== */
    /* 3. History Section             */
    /* ============================== */
    .history-section {
        padding: 20vw 0;
    }

    .history-header {
        padding: 0 4vw !important;
        gap: 8vw;
    }

    .section-label {
        font-size: 3.2vw;
    }

    .history-title {
        font-size: 10.5vw;
        line-height: 1.1;
        margin-bottom: 12vw;
    }

    .history-content-row {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 8vw;
        max-width: 100%;
        padding: 0;
        margin-top: 12vw;
    }

    .history-text {
        max-width: 92%;
        font-size: 4.5vw;
    }

    .history-swiper {
        padding: 8vw 0;
    }

    /* ============================== */
    /* 4. Lineup Section              */
    /* ============================== */
    .lineup-section {
        padding: 20vw 0;
    }

    .lineup-container {
        padding: 0 4vw;
        gap: 8vw;
    }

    .lineup-title {
        font-size: 11vw;
        margin-bottom: 1vw;
    }

    .lineup-subtitle {
        font-size: 3.2vw;
    }

    .lineup-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8vw;
        justify-items: center;
    }

    .lineup-day {
        width: 100%;
        padding: 3vw 0;
    }

    .day-date {
        font-size: 6.2vw; /* Synced with artists */
        margin-bottom: 2vw;
    }

    .day-info {
        font-size: 3vw;
        letter-spacing: 0;
        width: 30vw; /* Force 2-line wrap on mobile */
        margin: 0 auto 4vw auto; /* Increased spacing below */
    }

    .artist-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2vw;
    }

    .lineup-artist {
        font-size: 6.2vw;
    }

    /* ============================== */
    /* 5. Partners Section            */
    /* ============================== */
    .partners-section {
        padding: 20vw 4vw 30vw 4vw;
    }

    .partners-header-row {
        flex-direction: column;
        gap: 4vw;
        align-items: flex-start;
    }

    .partners-micro {
        font-size: 3.2vw;
    }

    .partners-headline {
        font-size: 11vw;
    }

    .partners-description {
        width: 90%;
    }

    .partners-description p {
        font-size: 4.5vw;
    }

    .partners-logos-row {
        display: grid;
        grid-template-columns: 0.8fr 1px 1fr;
        grid-template-rows: auto;
        row-gap: 4vw;
        column-gap: 0;
        align-items: center;
        justify-items: center;
        width: 100%;
        padding: 0;
    }

    /* Remove unused classes keeping CSS clean */
    .partner-logo-box { display: none !important; }


    /* Partner Logo Size Overrides (Mobile) */
    .partner-logo-pineapple {
        width: 45vw; /* Using width to fill the column space nicely */
        height: auto !important; /* Force proportional height */
        object-fit: contain;
    }

    .partner-logo-uau {
        width: 25vw;
        height: auto;
    }

    .partner-logo-eletromidia {
        width: 26vw;
        height: auto;
    }

    .partner-logo-koleston {
        width: 35vw;
        height: auto;
    }

    .partner-divider {
        display: block;
        height: 20vw; /* Altura proporcional no mobile */
    }

    /* ============================== */
    /* 6. Footer                      */
    /* ============================== */
    footer {
        padding: 10vw 4vw;
    }

    footer p {
        font-size: 4.5vw;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 60px 20px;
    text-align: center;
}

footer p {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}
