:root {
    /* Cores Principais */
    --color-primary-dark: #11332a;
    --color-primary-light: #aab53f;
    --color-gradient: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);

    /* Cores Complementares */
    --color-light-accent: #f1e2a7;

    /* Neutros */
    --color-dark: #0e1f1a;
    --color-text-dark: #2e2e2e;
    --color-white: #ffffff;
    --color-text-light: #e0e0e0;

    /* Utilitários */
    --shadow-soft: 0 10px 30px rgba(14, 31, 26, 0.08);
    --shadow-hover: 0 15px 40px rgba(17, 51, 42, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Navbar h */
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--color-dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Tipografia Comum */
.section-padding {
    padding: 100px 0;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.section-heading {
    margin-bottom: 3rem;
}

.section-heading .subtitle {
    display: inline-block;
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.light-bg {
    background-color: #fafafa;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-gradient {
    background: var(--color-gradient);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(17, 51, 42, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 51, 42, 0.3);
    color: var(--color-white);
}

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

.btn-outline:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary-dark);
}

.btn-white:hover {
    background: var(--color-light-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

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

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* --- 0 TOP CAROUSEL --- */
.top-sponsors-carousel {
    position: relative;
    width: 100%;
    height: 80px;
    background: var(--color-dark);
    z-index: 1002;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollTrack 30s linear infinite;
    gap: 3rem;
    padding-left: 3rem;
}

.carousel-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.carousel-logo:hover {
    transform: scale(1.1);
}

.sponsor-divider {
    color: var(--color-light-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 1rem;
    border-left: 2px solid var(--color-primary-light);
    border-right: 2px solid var(--color-primary-light);
}

@keyframes scrollTrack {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- 1 MENU FLUTUANTE --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 2000;
    transition: var(--transition-normal);
    background: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    height: 70px;
}

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

.nav-left,
.nav-right {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    text-align: center;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-light-accent);
    transition: var(--transition-normal);
}

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

.header-logo-img {
    height: 45px;
    width: auto;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--color-primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    z-index: 1999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem;
    width: 100%;
    text-align: center;
}

.mobile-btn {
    margin-top: 1rem;
}

/* --- 1.5 PROMO BANNER --- */
.promo-banner {
    width: 100%;
    margin-top: var(--nav-height);
}

.promo-swiper {
    width: 100%;
    height: 300px;
}

.promo-slide {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.promo-slide picture,
.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.promo-pagination .swiper-pagination-bullet {
    background: var(--color-white);
    opacity: 0.5;
}

.promo-pagination .swiper-pagination-bullet-active {
    background: var(--color-light-accent);
    opacity: 1;
}

@media (max-width: 900px) {
    .promo-swiper {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .promo-swiper {
        height: 180px;
    }
}

/* --- 2 HERO --- */
.hero {
    height: 65vh;
    height: 65svh;
    /* Dynamic viewport height fix for mobile browsers */
    min-height: 500px;
    position: relative;
    background-image: url('../images/hero/BANNER-DATAS-PRINCIPAL.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        height: 60svh;
        min-height: 480px;
        /* Safe mobile fallback preventing layout collapse */
        background: url('../images/hero/BANNER-DATAS-PRINCIPAL-MOBILE.jpg?v=2') center/cover no-repeat !important;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    /* Slight dark vignette */
    /* Subtle background blur */
    pointer-events: none;
}

.hero-content-bottom {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    width: 100%;
}

.floating-hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero-buttons .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.hero-buttons .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
}

@media (max-width: 768px) {
    .floating-hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .floating-hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* --- 3 SOBRE O EVENTO --- */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sobre-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-sobre-cta {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.95rem;
    padding: 14px 20px;
}

@media (max-width: 768px) {
    .sobre-ctas {
        flex-direction: column;
    }
    .btn-sobre-cta {
        width: 100%;
    }
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.sobre-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.sobre-features i {
    color: var(--color-primary-light);
    font-size: 1.2rem;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.placeholder-img {
    width: 100%;
    height: 500px;
    background: var(--color-light-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.sobre-img-real {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.text-accent {
    color: var(--color-primary-dark);
    opacity: 0.2;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-gradient);
    color: var(--color-white);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    border: 8px solid var(--color-white);
    z-index: 2;
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

/* --- 4 CONTADOR REGRESSIVO --- */
.contador {
    padding: 60px 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.contador-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contador-text h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contador-text p {
    color: var(--color-light-accent);
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
}

.time-box {
    background: var(--color-gradient);
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.time-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.time-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- 4.5 GAROTA FERAGRO --- */
.garota-feragro {
    background: var(--color-gradient);
    color: var(--color-white);
}

.garota-feragro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.garota-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.garota-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.garota-seal {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-light-accent);
    color: var(--color-primary-dark);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    border: 8px solid var(--color-white);
    z-index: 2;
    transform: rotate(-6deg);
    text-align: center;
    padding: 10px;
}

.seal-text-top {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.seal-text-bottom {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.garota-content .subtitle {
    color: var(--color-light-accent);
}

.garota-content h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.garota-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.95;
}

.garota-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--color-light-accent);
}

.btn-garota-feragro {
    background: var(--color-white);
    color: var(--color-primary-dark);
}

.btn-garota-feragro:hover {
    background: var(--color-light-accent);
    color: var(--color-primary-dark);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* --- 5 PROGRAMAÇÃO --- */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: var(--color-light-accent);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    box-shadow: 0 0 0 8px var(--color-white), var(--shadow-soft);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    margin-left: 2rem;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    flex: 1;
    position: relative;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline-time {
    color: var(--color-primary-light);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-list {
    padding-left: 1.2rem;
}

.timeline-list li {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

/* --- 6 GALERIA AGRO --- */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder,
.gallery-img {
    width: 100%;
    height: 100%;
    background-color: #e0e6e4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-weight: 600;
    transition: var(--transition-slow);
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 51, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-placeholder,
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Modal Gallery */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.gallery-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
    color: var(--color-light-accent);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .gallery-modal-content {
        width: 100%;
    }
}

/* --- 7 PATROCINADORES --- */
.sponsor-tier {
    margin-bottom: 4rem;
}

.sponsor-tier:last-child {
    margin-bottom: 0;
}

.sponsor-tier h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary-dark);
    font-size: 1.5rem;
}

.sponsor-grid {
    display: grid;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-8 {
    grid-template-columns: repeat(5, 1fr);
}


.sponsor-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    transition: var(--transition-normal);
    cursor: pointer;
}

.sponsor-card.small {
    padding: 1.5rem;
}

.sponsor-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.sponsor-placeholder,
.sponsor-img-fake {
    font-weight: 700;
    color: #cbd5e1;
    font-family: 'Outfit';
    letter-spacing: 1px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- 7.5 EXPOSITORES --- */
.expositor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.expositor-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    transition: var(--transition-normal);
    cursor: pointer;
}

.expositor-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.expositor-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

@media (max-width: 1024px) {
    .expositor-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .expositor-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .expositor-card {
        padding: 1rem;
    }

    .expositor-img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .expositor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- 8 LOCALIZAÇÃO --- */
.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.info-card .icon {
    font-size: 2rem;
    color: var(--color-primary-light);
}

.info-card h4 {
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--color-text-dark);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* --- 9 CALL TO ACTION --- */
.cta {
    background: var(--color-gradient);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- 10 RODAPÉ --- */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.social-links a:hover {
    background: var(--color-light-accent);
    color: var(--color-primary-dark);
}

.footer h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-light-accent);
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: #a0aec0;
}

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

.contact-info li {
    display: flex;
    gap: 10px;
    color: #a0aec0;
}

.contact-info i {
    color: var(--color-light-accent);
    margin-top: 4px;
}

.mini-sponsors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mini-sponsor {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

/* --- FABs --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    color: var(--color-light-accent);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-hover);
    z-index: 99;
    transition: var(--transition-normal);
}

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

/* --- RESPONSIVIDADE --- */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero {
        height: 60vh;
        min-height: 450px;
    }

    .sobre-grid,
    .localizacao-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contador-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .timeline-content {
        margin-left: 1.5rem;
    }

    .experience-badge {
        right: 10px;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .garota-feragro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .garota-img {
        height: 400px;
    }

    .garota-seal {
        bottom: 15px;
        right: 15px;
        width: 130px;
        height: 130px;
        border-width: 6px;
    }

    .seal-text-top {
        font-size: 0.85rem;
    }

    .seal-text-bottom {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 55vh;
        min-height: 400px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
    }

    .nav-center {
        position: static;
        transform: none;
        margin: 0;
        grid-column: 2;
        display: flex;
        justify-content: center;
    }

    .hamburger {
        display: block;
        grid-column: 3;
        justify-self: end;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-3,
    .grid-5,
    .grid-4,
    .grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .sponsor-card {
        padding: 1rem;
        height: 100px;
        aspect-ratio: auto;
    }

    .sponsor-card img,
    .sponsor-img-fake {
        max-height: 60px;
        width: 100%;
        object-fit: contain;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .garota-img {
        height: 350px;
    }

    .garota-seal {
        width: 120px;
        height: 120px;
        bottom: 10px;
        right: 10px;
        border-width: 4px;
    }

    .seal-text-bottom {
        font-size: 1.4rem;
    }

    .btn-garota-feragro {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .grid-3,
    .grid-5,
    .grid-4,
    .grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }

    .time-box {
        width: 80px;
        height: 80px;
    }

    .time-number {
        font-size: 1.8rem;
    }
}

/* --- 4.2 RESULTADOS DAS ÚLTIMAS EDIÇÕES --- */
.resultados-edicoes {
    position: relative;
}

.resultados-edicoes .section-heading h2 {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
}

.resultados-edicoes .heading-divider {
    width: 60px;
    height: 4px;
    background: var(--color-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

.year-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.year-btn {
    background: #e9ecef;
    border: none;
    color: var(--color-text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-normal);
}

.year-btn:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

.year-btn.active {
    background: var(--color-gradient);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(17, 51, 42, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: opacity 0.3s ease;
}

.stats-grid.fade-out {
    opacity: 0;
}

.stat-card {
    background: var(--color-white);
    padding: 35px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-card.highlight {
    background: var(--color-gradient);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(17, 51, 42, 0.2);
}

.stat-card.highlight .stat-label {
    color: var(--color-white);
    opacity: 0.9;
}

.stat-card.highlight .stat-value {
    color: var(--color-white);
}

.stat-card .stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.stat-card .stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resultados-edicoes .section-heading h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px 20px;
    }


    .stat-card .stat-value {
        font-size: 2rem;
    }
}

/* --- DYNAMIC EXPOSITORES SECTION --- */
.expositores-dynamic {
    background-color: var(--color-white);
}

.expo-group {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    animation: fadeIn 0.5s ease-in-out;
}

.expo-group.active {
    display: grid;
}

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

.expositor-card-dynamic {
    background: #ffffff;
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
}

.expositor-card-dynamic img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .expo-group {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .expo-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .expo-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .expositor-card-dynamic {
        min-height: 90px;
    }
    .expositor-card-dynamic img {
        max-height: 60px;
    }
}

/* --- FULL EXPOSITORES GRID (expositores.html) --- */
.expositores-full-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.expositor-full-card {
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
    min-height: 120px;
}

.expositor-full-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(17, 51, 42, 0.12);
}

.expositor-full-img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .expositores-full-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 900px) {
    .expositores-full-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .expositores-full-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .expositores-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .expositor-full-card {
        padding: 15px;
        min-height: 100px;
    }
    .expositor-full-img {
        max-height: 60px;
    }
}

/* --- DESTAQUES DA PROGRAMAÇÃO CAROUSEL --- */
.destaques-programacao {
    background-color: var(--color-white);
    position: relative;
    padding-top: 0;
}

.carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 20px;
    padding-right: 20px; /* match the gap so it loops perfectly */
    animation: scroll 40s linear infinite;
    will-change: transform;
    align-items: center; /* prevent flex stretch */
}

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

.carousel:hover .carousel-track {
    animation-play-state: paused;
}

.destaques-banner {
    height: 300px;
    max-height: 80vh;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 0.2s;
}

.destaques-banner:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .destaques-banner {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .destaques-banner {
        height: 220px;
    }
    .carousel-track {
        gap: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .destaques-banner {
        height: 180px;
    }
}