/* ==========================================================
   NOVA PALETA DE CORES - CIRCUITO INTEGRAÇÃO PIRACICABA 2026
   Cores baseadas estritamente nas 3 imagens fornecidas
   ========================================================== */
:root {
    /* As 3 cores solicitadas */
    --cor-1: hsla(17, 99%, 52%, 1);
    /* Laranja Avermelhado Vibrante */
    --cor-2: hsla(35, 99%, 59%, 1);
    /* Laranja Amarelado */
    --cor-3: hsla(44, 100%, 96%, 1);
    /* Creme / Off-white clarinho */

    /* Variáveis de texto de apoio para contraste obrigatório no tema claro */
    --text-dark: #3a1a00;
    /* Marrom ultra escuro para legibilidade */
    --text-gray: #8a5a40;
    /* Marrom acinzentado */

    --font-title: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    /* Fundo antigo escuro removido. Substituído pela Cor 3 (Creme) */
    background: var(--cor-3);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
}

.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    color: var(--cor-1);
    text-align: center;
    margin-bottom: 107px;
    font-weight: 700;
    position: relative;
    font-style: italic;
    transform: skewX(-8deg);
    letter-spacing: 1px;
}

.section-title::before {
    content: 'INTEGRAÇÃO';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(254, 76, 9, 0.34);
    /* Traçado na Cor 1 suave */
    z-index: -1;
    white-space: nowrap;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--cor-2);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 76, 9, 0.95);
    /* Cor 1 */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(254, 154, 48, 0.98);
    /* Cor 2 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--cor-3);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--cor-3);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-ticket {
    background-color: var(--cor-3);
    color: var(--cor-1);
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    transform: skewX(-15deg);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-ticket>* {
    transform: skewX(15deg);
    display: inline-block;
}

.btn-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease-in-out;
}

.btn-ticket:hover {
    background-color: var(--cor-2);
    color: var(--cor-3);
    transform: skewX(-15deg) translateX(8px) !important;
}

.btn-ticket:hover::before {
    left: 200%;
    transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
    position: relative;
    width: 100%;
    background-color: var(--cor-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-slider {
    width: 100%;
    display: grid;
}

.hero-slide {
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 76, 9, 0.1);
    z-index: 3;
    pointer-events: none;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--cor-1);
    color: var(--cor-3);
    border: 2px solid var(--cor-2);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background-color: var(--cor-2);
    color: var(--cor-1);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev-btn {
    left: 40px;
}

.hero-next-btn {
    right: 40px;
}

/* ==========================================================
   LETREIRO EM MOVIMENTO
   ========================================================== */
.running-marquee {
    background: var(--cor-1);
    color: var(--cor-3);
    margin-top: 30px;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: skewY(-3deg) translateY(-30px);
    z-index: 20;
    box-shadow: 0 15px 30px rgba(254, 76, 9, 0.2);
    border-top: 4px solid var(--cor-2);
    border-bottom: 4px solid var(--cor-2);
}

.marquee-content {
    display: inline-block;
    animation: textRun 15s linear infinite;
    font-family: var(--font-title);
    font-size: 28px;
    letter-spacing: 2px;
    font-style: italic;
}

.marquee-content span {
    padding: 0 40px;
    color: var(--cor-3);
}

.marquee-content i {
    color: var(--cor-2);
    margin-right: 10px;
}

@keyframes textRun {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================
   TABS DE INFORMAÇÕES
   ========================================================== */
.services {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.custom-services-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.services-tabs-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 1000px;
}

.service-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 76, 9, 0.05) !important;
    border: 1px solid var(--cor-2) !important;
    padding: 15px 25px;
    border-radius: 4px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 15px);
    min-width: 150px;
    transform: skewX(-15deg);
}

.service-tab:hover {
    transform: translateX(5px) skewX(-15deg) !important;
    border-color: var(--cor-1) !important;
}

.service-tab.active {
    background: var(--cor-1) !important;
    border-color: var(--cor-1) !important;
    box-shadow: 0 0 25px rgba(254, 76, 9, 0.3) !important;
}

.service-tab .tab-content {
    transform: skewX(15deg);
}

.service-tab .tab-content h4 {
    margin: 0;
    font-size: 22px;
    color: var(--cor-1) !important;
    font-weight: 500;
}

.service-tab.active .tab-content h4 {
    color: var(--cor-3) !important;
    font-weight: 800;
}

.services-content-bottom {
    width: 100%;
    max-width: 900px;
    background: var(--cor-3) !important;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
    border-top: 6px solid var(--cor-1);
    border: 1px solid var(--cor-2) !important;
    min-height: 300px;
    position: relative;
    color: var(--text-dark) !important;
}

.service-details {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}

.service-details.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-details h3 {
    color: var(--cor-1) !important;
    font-size: 48px;
    margin-bottom: 5px;
    line-height: 1;
}

.service-subtitle {
    font-size: 16px;
    color: var(--text-gray) !important;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-details p {
    color: var(--text-dark) !important;
}

.service-features {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: rgba(254, 154, 48, 0.1) !important;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(254, 154, 48, 0.2);
}

.service-features li {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark) !important;
}

.feature-check {
    color: var(--cor-1);
    background: var(--cor-2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 15px;
}

/* ==========================================================
   SEÇÃO DE KITS
   ========================================================== */
.kit-section {
    position: relative;
    z-index: 5;
    padding-top: 120px;
}

.kit-warm-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 76, 9, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.subtitle-flame {
    color: var(--cor-1);
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: -30px;
    position: relative;
    z-index: 2;
}

.kit-showcase-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.kit-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kit-btn {
    background: rgba(254, 76, 9, 0.05);
    border: 1px solid var(--cor-2);
    color: var(--cor-1);
    font-family: var(--font-title);
    font-size: 20px;
    padding: 15px 25px;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    transform: skewX(-5deg);
}

.kit-btn:hover {
    background: rgba(254, 76, 9, 0.1);
    border-color: var(--cor-1);
    transform: skewX(-5deg) translateX(10px);
}

.kit-btn.active {
    background: var(--cor-1);
    color: var(--cor-3);
    border-color: var(--cor-1);
    transform: skewX(-5deg) translateX(15px);
}

.kit-info-box {
    margin-top: 30px;
    padding: 20px;
    background: var(--cor-3);
    border-left: 4px solid var(--cor-1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.kit-info-box h3 {
    color: var(--cor-1);
    font-size: 24px;
    margin-bottom: 10px;
}

.kit-info-box p {
    color: var(--text-dark);
    font-size: 15px;
}

.kit-stage {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kit-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(254, 76, 9, 0.2));
    animation: levitate 5s ease-in-out infinite;
}

@keyframes levitate {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ==========================================================
   CONTAGEM REGRESSIVA & INSTAGRAM
   ========================================================== */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.instagram-col {
    background: var(--cor-3);
    border: 1px solid var(--cor-2);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.section-title-2 h6 {
    color: var(--cor-1);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.section-title-2 h6 i {
    color: var(--cor-2);
    font-size: 22px;
}

.section-title-2 h2 {
    font-size: 38px;
    color: var(--cor-1);
    line-height: 1.2;
    margin-bottom: 25px;
}

.feed-container {
    flex-grow: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(254, 154, 48, 0.3);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-countdown-col {
    position: relative;
    background: linear-gradient(135deg, var(--cor-1) 0%, var(--cor-2) 100%);
    padding: 60px 40px;
    color: var(--cor-3);
    box-shadow: 0 30px 60px rgba(254, 76, 9, 0.2);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: var(--cor-3);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-title);
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--cor-3);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulseCream 1.5s infinite;
}

@keyframes pulseCream {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 248, 235, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 248, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 248, 235, 0);
    }
}

.countdown-title {
    font-size: 46px;
    margin-bottom: 40px;
    color: var(--cor-3);
    line-height: 1.1;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 20px;
    min-width: 120px;
    transition: transform 0.3s;
}

.countdown-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.3);
}

.countdown-value {
    font-family: var(--font-title);
    font-size: 56px;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--cor-3);
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cor-3);
    font-weight: 500;
}

/* ==========================================================
   PATROCINADORES
   ========================================================== */
.sponsors-elaborate {
    background: transparent;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.sponsors-elaborate::before,
.sponsors-elaborate::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cor-2), transparent);
}

.sponsors-elaborate::before {
    top: 0;
}

.sponsors-elaborate::after {
    bottom: 0;
}

.sponsors-header {
    text-align: center;
    margin-bottom: 50px;
}

.sponsors-header h3 {
    font-family: var(--font-title);
    color: var(--cor-1);
    font-size: 28px;
    letter-spacing: 2px;
}

.sponsors-track-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.sponsors-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollSponsors 35s linear infinite;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsor-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 70px;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    filter: grayscale(100%) opacity(0.8);
    transition: all 0.4s;
}

.sponsor-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-link:hover {
    filter: grayscale(0%) opacity(1);
    box-shadow: 0 0 25px rgba(254, 154, 48, 0.4);
    transform: translateY(-8px) scale(1.05);
}

@keyframes scrollSponsors {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

/* ==========================================================
   NOTÍCIAS
   ========================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.member-card {
    background: var(--cor-3) !important;
    border: 1px solid var(--cor-2) !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 5px solid transparent;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
}

.news-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    transition: transform 0.6s ease, clip-path 0.6s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--cor-1) !important;
    box-shadow: 0 25px 50px rgba(254, 76, 9, 0.15) !important;
}

.member-card:hover .news-img {
    transform: scale(1.08);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 95%);
}

.member-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-tag {
    display: inline-block;
    background: rgba(254, 76, 9, 0.1);
    color: var(--cor-1);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.member-role {
    font-family: var(--font-title);
    font-size: 26px;
    color: var(--cor-1) !important;
    line-height: 1.3;
    margin-bottom: 15px;
}

.member-info p {
    color: var(--text-dark);
    font-size: 15px;
    flex-grow: 1;
}

.read-more {
    margin-top: 20px;
    font-weight: 600;
    color: var(--cor-1);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-card:hover .read-more i {
    transform: translateX(5px);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    background-color: var(--cor-1);
    color: var(--cor-3);
    padding: 60px 20px 40px;
    text-align: center;
}

.site-footer .logo {
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links span {
    color: var(--cor-3) !important;
    opacity: 0.8;
}

.footer-links a {
    color: var(--cor-3);
    font-weight: 600;
}

/* ==========================================================
   BOTÃO FLUTUANTE DE COMPRA (CTA)
   ========================================================== */
.floating-ticket-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--cor-1), var(--cor-2));
    color: var(--cor-3);
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transform: skewX(-15deg);
    box-shadow: 0 10px 30px rgba(254, 76, 9, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-ticket-btn>* {
    transform: skewX(15deg);
    display: inline-block;
}

.floating-ticket-btn .btn-icon {
    font-size: 22px;
}

.floating-ticket-btn:hover {
    transform: skewX(-15deg) translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(254, 154, 48, 0.6);
    background: linear-gradient(135deg, var(--cor-2), var(--cor-1));
    color: var(--cor-3);
}

/* ==========================================================
   MENU HAMBURGUER (MOBILE)
   ========================================================== */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--cor-3);
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
}

/* ==========================================================
   RESPONSIVO GERAL E CELULAR (MOBILE)
   ========================================================== */
@media (max-width: 992px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .navbar {
        padding: 15px 20px;
    }

    .nav-center .btn-ticket {
        display: none;
    }

    .nav-center {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: rgba(254, 76, 9, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px 0 30px;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-center.active {
        transform: translateY(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        padding: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        padding: 10px;
    }

    .hero-nav-btn {
        display: none !important;
    }

    .hero {
        margin-top: 65px;
        max-width: 100vw;
        overflow: hidden;
    }

    picture {
        display: block;
        width: 100%;
    }

    .hero-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .floating-ticket-btn {
        left: 50% !important;
        right: auto !important;
        bottom: 20px !important;
        transform: translateX(-50%) skewX(-5deg) !important;
        width: 90%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 15px;
    }

    .floating-ticket-btn:hover {
        transform: translateX(-50%) skewX(-5deg) translateY(-3px) !important;
    }

    .kit-showcase-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kit-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .kit-btn {
        font-size: 13px;
        padding: 10px 5px;
        text-align: center;
        transform: skewX(-5deg);
    }

    .kit-info-box {
        grid-column: 1 / -1;
        margin-top: 10px;
        padding: 15px;
    }

    .kit-stage {
        height: auto;
        min-height: 250px;
        margin-top: 10px;
    }

    .kit-main-image {
        max-width: 90%;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }

    .countdown-value {
        font-size: 40px;
    }

    .section {
        padding: 70px 20px;
    }
}

.sponsors-header.aos-init.aos-animate {
    max-width: 1200px;
    transition-delay: .2s;
    place-self: center;
}

/* Container do item que tem o submenu */
.dropdown {
    position: relative;
    display: inline-block;
}

/* O submenu (escondido por padrão) */
.dropdown-content {
    display: none;
    /* Esconde o submenu */
    position: absolute;
    background-color: #ffffff;
    /* Cor de fundo do submenu */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    /* Sombra para destacar */
    z-index: 1000;
    list-style: none;
    /* Remove as bolinhas da lista */
    padding: 0;
    margin: 0;
    border-radius: 5px;
    /* Bordas levemente arredondadas */
}

/* Links dentro do submenu */
.dropdown-content li a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Efeito ao passar o mouse nos itens do submenu */
.dropdown-content li a:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
}

/* Mostra o submenu quando passa o mouse por cima do botão "Cidades" */
.dropdown:hover .dropdown-content {
    display: block;
}