/* ==========================================================
   VARIÁVEIS DO KV - CORRIDA INTEGRAÇÃO 2026
   ========================================================== */
:root {
    --dodger-blue: #2196F3;
    --bright-indigo: #0033FF;
    --persian-blue: #002ace;
    --vivid-royal: #001f99;
    --deep-twilight: #001466;

    --vivid-turquoise: #02E0B9;
    --dark-cyan: #01928D;
    --blazing-flame: #FF3D00;
    --radiant-chartreuse: #BFF839;

    --bg-light: #F8F9FE;
    --text-dark: #1E1E24;
    --text-gray: #6E7180;

    --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);
    background: url('images/aurora-boreal.png') no-repeat center center fixed;
    background-color: var(--deep-twilight);
    background-size: cover;
    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: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin-bottom: 50px;
    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(255, 255, 255, 0.03);
    z-index: -1;
    white-space: nowrap;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--vivid-turquoise);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(2, 224, 185, 0.5);
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 20, 102, 0.85);
    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.05);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(0, 20, 102, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.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;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    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: #fff;
    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(--vivid-turquoise);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--vivid-turquoise);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-ticket {
    background-color: var(--vivid-turquoise);
    color: var(--deep-twilight);
    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;
    box-shadow: 0 4px 15px rgba(2, 224, 185, 0.3);
    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: #ffffff;
    color: var(--deep-twilight);
    transform: skewX(-15deg) translateX(8px) !important;
    box-shadow: 0 6px 20px rgba(2, 224, 185, 0.6);
    border-color: var(--vivid-turquoise);
}

.btn-ticket:hover::before {
    left: 200%;
    transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================================
   HERO SECTION (BANNERS RESPONSIVOS E SEM CORTES)
   ========================================================== */
.hero {
    position: relative;
    width: 100%;
    background-color: var(--deep-twilight);
    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(0, 20, 102, 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: rgba(0, 20, 102, 0.7);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 2px solid var(--vivid-turquoise);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    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(--vivid-turquoise);
    color: var(--deep-twilight);
    border-color: var(--vivid-turquoise);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 224, 185, 0.6);
}

.hero-prev-btn {
    left: 40px;
}

.hero-next-btn {
    right: 40px;
}

/* ==========================================================
   LETREIRO EM MOVIMENTO
   ========================================================== */
.running-marquee {
    background: var(--blazing-flame);
    color: #fff;
    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(0, 0, 0, 0.4);
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
}

.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;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.marquee-content i {
    color: var(--deep-twilight);
    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(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !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(--vivid-turquoise) !important;
}

.service-tab.active {
    background: var(--vivid-turquoise) !important;
    border-color: var(--vivid-turquoise) !important;
    box-shadow: 0 0 25px rgba(2, 224, 185, 0.4) !important;
}

.service-tab .tab-content {
    transform: skewX(15deg);
}

.service-tab .tab-content h4 {
    margin: 0;
    font-size: 22px;
    color: #ffffff !important;
    font-weight: 500;
}

.service-tab.active .tab-content h4 {
    color: var(--deep-twilight) !important;
    font-weight: 800;
}

.services-content-bottom {
    width: 100%;
    max-width: 900px;
    background: rgba(0, 20, 102, 0.4) !important;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(2, 224, 185, 0.05) !important;
    border-top: 6px solid var(--vivid-turquoise);
    border: 1px solid rgba(2, 224, 185, 0.2) !important;
    min-height: 300px;
    position: relative;
    color: #ffffff !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(--vivid-turquoise) !important;
    font-size: 48px;
    margin-bottom: 5px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(2, 224, 185, 0.3);
}

.service-subtitle {
    font-size: 16px;
    color: #EDEFF7 !important;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-details p {
    color: #EDEFF7 !important;
}

.service-features {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #ffffff !important;
}

.feature-check {
    color: var(--deep-twilight);
    background: var(--vivid-turquoise);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(2, 224, 185, 0.3);
}

.services-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 20, 102, 0.1);
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-light);
    color: var(--deep-twilight);
    font-family: var(--font-title);
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-action:hover {
    transform: translateX(8px) skewX(-10deg) !important;
}

.btn-action[href="#kit"] {
    background: linear-gradient(135deg, var(--deep-twilight), rgba(0, 31, 153, 0.9));
    border: 1px solid var(--vivid-turquoise);
    color: var(--vivid-turquoise);
    box-shadow: 0 0 15px rgba(2, 224, 185, 0.2);
    overflow: hidden;
    position: relative;
}

.btn-action[href="#kit"] i {
    color: var(--vivid-turquoise);
}

/* ==========================================================
   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(255, 61, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.subtitle-flame {
    color: var(--blazing-flame);
    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(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    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(255, 61, 0, 0.1);
    border-color: var(--blazing-flame);
    transform: skewX(-5deg) translateX(10px);
}

.kit-btn.active {
    background: var(--blazing-flame);
    color: #fff;
    border-color: var(--blazing-flame);
    box-shadow: 0 10px 25px rgba(255, 61, 0, 0.4);
    transform: skewX(-5deg) translateX(15px);
}

.kit-info-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 20, 102, 0.6);
    border-left: 4px solid var(--blazing-flame);
    backdrop-filter: blur(10px);
}

.kit-info-box h3 {
    color: var(--vivid-turquoise);
    font-size: 24px;
    margin-bottom: 10px;
}

.kit-info-box p {
    color: #EDEFF7;
    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(0, 0, 0, 0.5));
    animation: levitate 5s ease-in-out infinite;
}

@keyframes levitate {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ==========================================================
   SEÇÃO DO MAPA (MAIOR E ESTATÍSTICAS CLARAS)
   ========================================================== */
.map-section {
    position: relative;
    padding-top: 80px;
    z-index: 5;
}

.map-subtitle {
    text-align: center;
    color: #EDEFF7;
    font-size: 18px;
    margin-top: -30px;
    margin-bottom: 40px;
}

.map-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-map {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--vivid-turquoise);
    color: #fff;
    padding: 10px 30px;
    font-family: var(--font-title);
    cursor: pointer;
    transform: skewX(-15deg);
    transition: 0.3s;
}

.btn-map.active,
.btn-map:hover {
    background: var(--vivid-turquoise) !important;
    color: var(--deep-twilight) !important;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    margin: 0 auto;
    background: rgba(0, 10, 35, 0.85);
    border-radius: 20px;
    border: 1px solid rgba(2, 224, 185, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    transform: scale(1.1);
}

.map-stats {
    position: absolute;
    top: 50%;
    right: 30px;
    left: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    border: 2px solid var(--vivid-turquoise);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 20, 102, 0.1);
}

.stat-box:last-child {
    border-bottom: none;
}

.stat-value {
    color: var(--bright-indigo);
    font-family: var(--font-title);
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
}

.stat-value small {
    font-size: 14px;
    color: var(--text-gray);
    margin-left: 3px;
}

.stat-label {
    color: var(--deep-twilight);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    text-align: center;
}

/* ==========================================================
   CONTAGEM REGRESSIVA & INSTAGRAM
   ========================================================== */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.instagram-col {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.section-title-2 h6 {
    color: var(--text-gray);
    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: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    font-size: 22px;
}

.section-title-2 h2 {
    font-size: 38px;
    color: var(--deep-twilight);
    line-height: 1.2;
    margin-bottom: 25px;
}

.feed-container {
    flex-grow: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #fcfcfc;
    border: 1px solid #eee;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-countdown-col {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 20, 102, 0.9) 0%, rgba(0, 31, 153, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    color: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%) !important;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(2, 224, 185, 0.15);
    color: var(--vivid-turquoise);
    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(2, 224, 185, 0.3);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--vivid-turquoise);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 224, 185, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(2, 224, 185, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(2, 224, 185, 0);
    }
}

.countdown-title {
    font-size: 46px;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.1;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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(2, 224, 185, 0.1);
    border-color: var(--vivid-turquoise);
}

.countdown-value {
    font-family: var(--font-title);
    font-size: 56px;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--vivid-turquoise);
    text-shadow: 0 0 15px rgba(2, 224, 185, 0.3);
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #EDEFF7;
    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(--vivid-turquoise), transparent);
    box-shadow: 0 0 15px var(--vivid-turquoise);
}

.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: #ffffff;
    font-size: 28px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(2, 224, 185, 0.5);
}

.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;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    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(2, 224, 185, 0.6);
    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: rgba(0, 20, 102, 0.6) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    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: #ffffff;
}

.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(--vivid-turquoise) !important;
    box-shadow: 0 25px 50px rgba(2, 224, 185, 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(2, 224, 185, 0.1);
    color: var(--vivid-turquoise);
    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: #ffffff !important;
    line-height: 1.3;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.member-card:hover .member-role {
    color: var(--vivid-turquoise) !important;
}

.member-info p {
    color: #02e0b9;
    font-size: 15px;
    flex-grow: 1;
}

.read-more {
    margin-top: 20px;
    font-weight: 600;
    color: var(--dodger-blue);
    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);
}

/* ==========================================================
   MEMÓRIAS (FOTOS)
   ========================================================== */
.memories-section {
    background-image: radial-gradient(circle at right top, rgba(0, 51, 255, 0.3), transparent 60%);
    padding: 100px 0;
    position: relative;
}

.memories-subtitle {
    display: flex;
    align-items: center;
    color: var(--vivid-turquoise);
    font-family: var(--font-title);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 20px 0 40px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 17px);
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-card:hover img {
    transform: scale(1.1);
}

.carousel-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background-color: var(--vivid-turquoise);
    color: var(--deep-twilight);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

.btn-gallery {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--vivid-turquoise);
    font-family: var(--font-title);
    font-size: 18px;
    padding: 16px 45px;
    border-radius: 50px;
    border: 2px solid var(--vivid-turquoise);
    transition: all 0.3s;
}

.btn-gallery:hover {
    background-color: var(--vivid-turquoise);
    color: var(--deep-twilight);
    box-shadow: 0 0 20px rgba(2, 224, 185, 0.4);
    transform: translateY(-3px);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    background-color: rgba(255, 255, 255, 0.97);
    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 a {
    color: var(--dodger-blue);
    font-weight: 600;
}

/* ==========================================================
   BOTÃO FLUTUANTE DE COMPRA (CTA) - DESKTOP
   ========================================================== */
.floating-ticket-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blazing-flame), #ff6a00);
    color: #fff;
    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(255, 61, 0, 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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
    animation: pulseFlame 2s infinite;
    z-index: -1;
}

.floating-ticket-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease-in-out;
}

.floating-ticket-btn:hover {
    transform: skewX(-15deg) translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 61, 0, 0.6);
    background: linear-gradient(135deg, #ff5500, var(--blazing-flame));
    color: #fff;
}

.floating-ticket-btn:hover::after {
    left: 200%;
}

/* ==========================================================
   MENU HAMBURGUER (ESCONDIDO NO DESKTOP)
   ========================================================== */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--vivid-turquoise);
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
}

/* ==========================================================
   RESPONSIVO GERAL E CELULAR (MOBILE) - ÚNICO BLOCO FINAL
   ========================================================== */
@media (max-width: 992px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
    }

    .carousel-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* --- CABEÇALHO E MENU HAMBURGUER --- */
    .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(0, 20, 102, 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.5);
        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;
    }

    /* === AJUSTES DO BANNER (HERO) E IMAGEM === */
    .hero-nav-btn {
        display: none !important;
        /* Esconde as setas de navegação */
    }

    .hero {
        margin-top: 65px;
        max-width: 100vw;
        overflow: hidden;
        /* Garante que as imagens não fujam da tela */
    }

    picture {
        display: block;
        width: 100%;
    }

    .hero-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        /* Encaixa a imagem do banner mobile sem cortar */
    }

    /* --- BOTÃO FLUTUANTE DE COMPRA --- */
    .floating-ticket-btn {
        left: 50% !important;
        /* Centralizado pelo eixo da esquerda para evitar quebras */
        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;
    }

    .floating-ticket-btn .btn-icon {
        font-size: 18px;
    }

    .floating-ticket-btn .btn-text {
        font-size: 15px;
    }

    /* --- OUTRAS SEÇÕES --- */
    .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;
    }

    .member-info {
        padding: 20px;
    }

    .news-img {
        height: 200px;
    }

    .member-role {
        font-size: 22px !important;
        margin-bottom: 10px;
    }

    .news-tag {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 10px;
    }

    .member-info p {
        font-size: 14px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }

    .countdown-value {
        font-size: 40px;
    }

    .section {
        padding: 70px 20px;
    }

    .map-wrapper {
        height: 500px;
        border-radius: 12px;
    }

    .map-stats {
        flex-direction: row;
        top: auto;
        bottom: 15px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        padding: 15px 10px;
    }

    .stat-box {
        border-bottom: none;
        border-right: 1px solid rgba(0, 20, 102, 0.1);
        flex: 1;
        padding: 0 5px;
    }

    .stat-box:last-child {
        border-right: none;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
    }
}

.sponsors-header.aos-init.aos-animate {
    max-width: 1200px;
    transition-delay: .2s;
    place-self: center;
}