:root {
    --font-primary: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;

    --bg-color: #263592;
    --bg-dark-color: #1E2C83;
    --accent-color: #FFBB48;
    --text-color: #FFFFFF;
}

/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    letter-spacing: 0.5px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

p {
    text-align: justify;
}

/* Estilos de Botão */
button,
.btn {
    font-family: var(--font-primary);
    background-color: var(--accent-color);
    color: #1E2C83;
    border: none;
    padding: 12px 28px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 187, 72, 0.4);
    text-decoration: none;
}

/* Utilitários de Cores */
.bg-dark {
    background-color: var(--bg-dark-color);
}

.text-accent {
    color: var(--accent-color);
    font-weight: 700;
}

/* Header & Menu Fixo Flutuante (Glassmorphism Dark Premium) */
.header-fixed {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1240px;
    z-index: 1000;
}

.navbar {
    background: rgba(18, 26, 74, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 8px 14px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 187, 72, 0.08);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand-logo {
    height: 62px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    transition: all 0.25s ease;
    display: inline-block;
    line-height: 1.1;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(255, 187, 72, 0.12);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #1E2C83;
    background-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(255, 187, 72, 0.4);
}

/* Botão de Ação CTA no Navbar */
.nav-actions {
    display: flex;
    align-items: center;
}

.btn-nav-cta {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #FFBB48 0%, #FFA812 100%);
    color: #1E2C83;
    font-size: 1.15rem;
    padding: 10px 24px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 187, 72, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 187, 72, 0.5);
}

/* Menu Mobile (Hamburger) */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    z-index: 1001;
}

.mobile-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animação do Ícone Hamburger para o X de Fechar */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 992px) {
    .header-fixed {
        top: 12px;
        width: calc(100% - 24px);
    }

    .navbar {
        padding: 6px 16px;
    }

    .nav-brand-logo {
        height: 48px;
    }

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Menu Dropdown Glassmorphism Elegante */
    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(18, 26, 74, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.16);
        flex-direction: column;
        padding: 20px 16px;
        border-radius: 24px;
        gap: 10px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
        opacity: 0;
        transform: translateY(-12px) scale(0.96);
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        width: 100%;
        padding: 12px 20px;
        border-radius: 14px;
        font-size: 1.3rem;
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .nav-link:hover {
        background-color: rgba(255, 187, 72, 0.16);
        color: var(--accent-color);
    }

    .nav-link.active {
        background-color: var(--accent-color);
        color: #1E2C83;
    }
}

/* Seção Hero */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 110px;
    padding-bottom: 0px;
}

/* Animações de Rotação Lenta para as Flores */
@keyframes spinClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinCounterClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Animação Ultra-Suave de Balanço/Oscilação da Logo */
@keyframes swingLogo {

    0%,
    100% {
        transform: rotate(-2.5deg) translateY(0px);
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
    }

    50% {
        transform: rotate(2.5deg) translateY(-6px);
        filter: drop-shadow(0 16px 28px rgba(255, 187, 72, 0.3));
    }
}

@keyframes floatKit {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(1.2deg);
    }
}

@keyframes floatCup {

    0%,
    100% {
        transform: rotate(5deg) translateY(0px);
    }

    50% {
        transform: rotate(7.5deg) translateY(-14px);
    }
}

@keyframes floatShirt {

    0%,
    100% {
        transform: scale(1.1) translateY(0px) rotate(0deg);
    }

    50% {
        transform: scale(1.1) translateY(-14px) rotate(-1deg);
    }
}

@keyframes floatShirtMobile {

    0%,
    100% {
        transform: scale(1.05) translateY(0px) rotate(0deg);
    }

    50% {
        transform: scale(1.05) translateY(-10px) rotate(-1deg);
    }
}

/* Luzes e Sombras Ambientais (Glow Orbs) */
@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.25;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(1.12);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    pointer-events: none;
    user-select: none;
    z-index: 1;
    max-width: 100vw;
}

.glow-gold {
    background: radial-gradient(circle, rgba(255, 187, 72, 0.42) 0%, rgba(255, 187, 72, 0) 70%);
}

.glow-blue {
    background: radial-gradient(circle, rgba(74, 98, 254, 0.48) 0%, rgba(74, 98, 254, 0) 70%);
}

.glow-dark-shadow {
    background: radial-gradient(circle, rgba(15, 22, 68, 0.9) 0%, rgba(15, 22, 68, 0) 75%);
    filter: blur(65px);
}

.pulse-glow {
    animation: pulseGlow 7.5s ease-in-out infinite;
}

/* Flores Decorativas de Fundo */
.flower {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transform-origin: center center;
}

.flower-dark-top {
    top: 12%;
    left: 3%;
    width: 480px;
    max-width: 36vw;
    opacity: 0.35;
    animation: spinClockwise 85s linear infinite;
}

.flower-dark-center {
    top: 37%;
    left: 47%;
    width: 360px;
    max-width: 28vw;
    opacity: 0.25;
    animation: spinCounterClockwise 105s linear infinite;
}

.flower-white-bottom {
    bottom: -60px;
    left: -210px;
    width: 420px;
    max-width: 32vw;
    opacity: 1;
    animation: spinCounterClockwise 120s linear infinite;
}

.flower-white-right {
    top: 25%;
    right: 13.5%;
    width: 540px;
    max-width: 42vw;
    opacity: 1;
    animation: spinClockwise 70s linear infinite;
}

.flower-countdown-dark {
    top: -8%;
    right: -5%;
    width: 440px;
    max-width: 32vw;
    opacity: 0.40;
    animation: spinClockwise 90s linear infinite;
}

.flower-amigos-dark {
    bottom: -15%;
    left: -6%;
    width: 460px;
    max-width: 34vw;
    opacity: 0.30;
    animation: spinCounterClockwise 100s linear infinite;
}

.flower-percurso-dark {
    top: 10%;
    right: -8%;
    width: 420px;
    max-width: 30vw;
    opacity: 0.45;
    animation: spinClockwise 110s linear infinite;
}

.flower-shirt-dark-top {
    top: -12%;
    right: 4%;
    width: 480px;
    max-width: 35vw;
    opacity: 0.28;
    animation: spinCounterClockwise 85s linear infinite;
}

.flower-footer-dark {
    bottom: -100px;
    left: -80px;
    width: 420px;
    max-width: 32vw;
    opacity: 0.20;
    animation: spinClockwise 95s linear infinite;
}



/* Container Principal do Hero */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1360px;
    padding: 0 40px;
    position: relative;
    z-index: 5;
    gap: 40px;
}

/* Coluna Esquerda: Logo */
.hero-logo-wrapper {
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 580px;
}

.hero-logo {
    width: 100%;
    max-width: 530px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    animation: swingLogo 12s ease-in-out infinite;
}

/* Coluna Direita: Kit (Garantido em cima das flores) */
.hero-kit-wrapper {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-kit {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    animation: floatKit 5.5s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .hero-logo-wrapper {
        max-width: 480px;
        width: 85%;
    }

    .hero-logo {
        max-width: 440px;
    }

    .hero-kit-wrapper {
        width: 90%;
        max-width: 540px;
    }

    .flower-dark-center {
        left: 10%;
        top: 40%;
        width: 400px;
    }

    .flower-white-right {
        right: -80px;
        width: 380px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 55px;
        padding-bottom: 20px;
    }

    .hero-container {
        gap: 0px;
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }

    .hero-logo-wrapper {
        width: 100%;
        max-width: 340px;
    }

    .hero-logo {
        width: 100%;
        max-width: 340px;
        height: auto;
    }

    .hero-kit-wrapper {
        width: 100%;
        max-width: 420px;
        margin-top: -10px;
    }

    .hero-kit {
        width: 100%;
        max-width: 420px;
        height: auto;
        margin-top: 0;
    }

    /* Posição das flores no Mobile conforme a Referência (Atrás do Kit) */
    .flower-dark-top {
        top: 2%;
        left: -90px;
        width: 260px;
    }

    .flower-dark-center {
        top: 48%;
        left: -80px;
        width: 310px;
    }

    .flower-white-bottom {
        bottom: -40px;
        left: -140px;
        width: 280px;
    }

    .flower-white-right {
        top: 45%;
        right: -60px;
        width: 360px;
        max-width: 360px;
    }

    .flower-countdown-dark {
        width: 250px;
        right: -60px;
        top: -5%;
    }

    .flower-amigos-dark {
        width: 260px;
        left: -70px;
        bottom: -5%;
    }

    .flower-percurso-dark {
        width: 240px;
        right: -60px;
        top: 5%;
    }

    .flower-shirt-dark-top {
        width: 260px;
        right: -40px;
        top: -8%;
    }

    .flower-footer-dark {
        width: 230px;
        left: -60px;
        bottom: -50px;
    }

}

/* Seção Contagem Regressiva */
.countdown-section {
    padding: 10px 20px 70px 20px;
    text-align: center;
    position: relative;
    z-index: 10;

    width: 100%;
}

.countdown-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.countdown-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    width: 100%;
}

.countdown-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 16px 28px;
    min-width: 110px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.countdown-card:hover {
    transform: translateY(-3px);
}

.countdown-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: var(--bg-dark-color);
    line-height: 1;
}

.countdown-number.text-accent {
    color: var(--accent-color);
}

.countdown-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--bg-dark-color);
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Botão de Inscrição CTA */
.btn-cta {
    font-family: var(--font-primary);
    background-color: var(--accent-color);
    color: #FFFFFF;
    font-size: 1.8rem;
    padding: 14px 60px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 187, 72, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 187, 72, 0.5);
    background-color: #ffc25b;
}

@media (max-width: 768px) {
    .countdown-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .countdown-grid {
        gap: 12px;
    }

    .countdown-card {
        padding: 12px 16px;
        min-width: 75px;
        border-radius: 12px;
    }

    .countdown-number {
        font-size: 2.4rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .btn-cta {
        font-size: 1.4rem;
        padding: 12px 40px;
        border-radius: 12px;
        width: 85%;
        max-width: 320px;
    }
}

/* Seção Amigos da Corrida */
.about-section {
    padding: 60px 20px 80px 20px;
    position: relative;
    z-index: 10;

    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    max-width: 540px;
}

.about-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
    text-align: justify;
}

.about-btn {
    font-size: 1.5rem;
    padding: 12px 40px;
    border-radius: 14px;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {

    /* Seção Amigos da Corrida - Inversão no Mobile */
    .about-section {
        padding: 40px 20px 60px 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .about-image-wrapper {
        order: -1;
        /* Inverte a ordem para a logo ficar no topo no mobile */
        width: 100%;
    }

    .about-logo {
        max-width: 260px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0 10px;
        text-align: justify;
    }

    .about-btn {
        font-size: 1.3rem;
        padding: 12px 36px;
        width: 85%;
        max-width: 300px;
    }
}

/* Seção Percurso */
.percurso-section {
    padding: 40px 20px 80px 20px;
    position: relative;
    z-index: 10;

    width: 100%;
}

.percurso-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.percurso-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.percurso-card {
    background-color: var(--bg-dark-color);
    border-radius: 24px;
    min-height: 420px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.percurso-soon {
    font-family: var(--font-primary);
    font-size: 3.8rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .percurso-section {
        padding: 30px 20px 15px 20px;
    }

    .percurso-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .percurso-card {
        min-height: 260px;
        border-radius: 18px;
    }

    .percurso-soon {
        font-size: 2.6rem;
    }
}

/* Seção Sobre a Corrida */
.about-race-section {
    padding: 40px 20px 0px 20px;
    position: relative;
    z-index: 20;
    width: 100%;

}

.flower-about-dark {
    top: 5%;
    left: 1%;
    width: 440px;
    max-width: 35vw;
    opacity: 0.35;
    animation: spinClockwise 90s linear infinite;
}

.about-race-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-race-content {
    flex: 1.1;
    max-width: 580px;
}

.about-race-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.about-race-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.about-race-header-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease;
}

.about-race-header-logo:hover {
    transform: scale(1.06);
}

.about-race-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 0.95;
    text-align: justify;
}

.about-race-btn {
    font-size: 1.6rem;
    padding: 14px 50px;
    border-radius: 16px;
    margin-top: 12px;
}

.about-race-image-wrapper {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Flor Branca Ancorada Diretamente Atrás do Copo */
.flower-about-cup-bg {
    position: absolute;
    top: -2%;
    left: 32%;
    transform: translate(-50%, -50%);
    width: 410px;
    max-width: 130%;
    z-index: 1;
    pointer-events: none;
    animation: spinCounterClockwise 100s linear infinite;
}

.about-race-cup {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
    transform: rotate(5deg);
    animation: floatCup 6s ease-in-out infinite;
}

@media (max-width: 992px) {
    .about-race-section {
        padding: 15px 20px 50px 20px;
    }

    .about-race-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .about-race-image-wrapper {
        order: 1;
        width: 100%;
        margin-top: 15px;
    }

    .about-race-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-race-header {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .about-race-header-logo {
        height: 85px;
    }

    .about-race-title {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .about-race-text {
        font-size: 1rem;
    }

    .about-race-cup {
        max-width: 320px;
    }

    .flower-about-cup-bg {
        width: 310px;
        left: 32%;
        top: -2%;
    }

    .about-race-btn {
        width: 85%;
        max-width: 320px;
    }
}

/* Seção Vista o Desafio (Camiseta) */
.shirt-section {
    padding: 0px 20px 80px 20px;
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: -100px;

}

/* Faixa/Div Rotacionada no Fundo */
.shirt-bg-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-6deg);
    width: 140%;
    height: 42%;
    background-color: var(--bg-dark-color);
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.shirt-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.shirt-image-wrapper {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    margin-top: 330px;
}

/* Flor Branca Ancorada Atrás da Camiseta */
.flower-shirt-bg {
    position: absolute;
    top: -16%;
    left: -32%;
    transform: translate(-50%, -50%);
    width: 650px;
    max-width: 155%;
    z-index: 1;
    pointer-events: none;
    animation: spinClockwise 100s linear infinite;
}

.shirt-image {
    width: 125%;
    max-width: 760px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.35));
    transform: scale(1.1);
    animation: floatShirt 5.8s ease-in-out infinite;
}

.shirt-content {
    flex: 0.8;
    max-width: 500px;
    margin-top: -40px;
}

.shirt-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.shirt-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 500;
    opacity: 0.95;
    text-align: justify;
}

.shirt-btn {
    font-size: 1.6rem;
    padding: 14px 50px;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .shirt-section {
        padding: 60px 20px;
    }

    .shirt-bg-card {
        top: 28%;
        height: 31%;
        transform: translate(-50%, -50%) rotate(-4.5deg);
    }

    .shirt-container {
        flex-direction: column;
        text-align: center;
        gap: 42px;
    }

    .shirt-image-wrapper {
        order: -1;
        width: 100%;
        margin-top: 50px;
    }

    .shirt-image {
        width: 115%;
        max-width: 520px;
        transform: scale(1.05);
        animation: floatShirtMobile 5.8s ease-in-out infinite;
    }

    .flower-shirt-bg {
        width: 380px;
        left: -26%;
        top: -16%;
    }

    .shirt-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    }

    .shirt-title {
        font-size: 2.3rem;
        margin-bottom: 14px;
    }

    .shirt-text {
        font-size: 1rem;
        margin-bottom: 22px;
    }

    .shirt-btn {
        width: 85%;
        max-width: 320px;
    }
}

/* Seção Por Que Correr Com a Gente (Ultra Compacta) */
.why-section {
    padding: 20px 20px 30px 20px;
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
}

.flower-why-dark {
    top: 10%;
    right: -6%;
    width: 320px;
    max-width: 24vw;
    opacity: 0.35;
    animation: spinClockwise 95s linear infinite;
}

.why-container {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.why-title {
    font-family: var(--font-primary);
    font-size: 2.1rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.why-card {
    background: rgba(30, 44, 131, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 187, 72, 0.2);
    border-color: rgba(255, 187, 72, 0.4);
}

.why-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 187, 72, 0.15);
    border: 1px solid rgba(255, 187, 72, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(255, 187, 72, 0.15);
}

.why-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.why-card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.why-card-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 992px) {
    .why-section {
        padding: 16px 14px 24px 14px;
    }

    .why-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 420px;
        margin: 0 auto;
        gap: 12px;
    }

    .why-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .why-card {
        padding: 14px 14px;
        border-radius: 12px;
    }

    .why-icon-box {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .why-icon {
        font-size: 1.25rem;
    }

    .why-card-title {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }

    .why-card-text {
        font-size: 0.85rem;
        line-height: 1.35;
    }

    .flower-why-dark {
        width: 180px;
        right: -30px;
        top: 5%;
    }
}

/* Seção Final Chamada para Ação (Kit & Inscrição) */
.final-cta-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-dark-color) 100%);
    padding: 80px 20px 100px 20px;
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
}

.flower-final-white {
    bottom: -80px;
    right: -150px;
    width: 480px;
    max-width: 35vw;
    opacity: 1;
    animation: spinCounterClockwise 110s linear infinite;
}

.final-cta-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.final-cta-image-wrapper {
    flex: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-cta-kit {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: floatKit 5.5s ease-in-out infinite;
}

.final-cta-content {
    flex: 1;
    max-width: 560px;
}

.final-cta-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.15;
}

.final-cta-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
    text-align: justify;
}

.final-btn {
    font-size: 1.7rem;
    padding: 16px 54px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 187, 72, 0.45);
}

.final-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 187, 72, 0.6);
}

@media (max-width: 992px) {
    .final-cta-section {
        padding: 50px 20px 70px 20px;
    }

    .final-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .final-cta-kit {
        max-width: 380px;
    }

    .final-cta-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .final-cta-title {
        font-size: 2.1rem;
        margin-bottom: 16px;
        text-align: center;
        line-height: 1.2;
    }

    .final-cta-text {
        font-size: 1.05rem;
        margin-bottom: 24px;
        text-align: justify;
        padding: 0 10px;
    }

    .final-btn {
        width: auto;
        min-width: 240px;
        font-size: 1.3rem;
        padding: 14px 32px;
        white-space: nowrap;
        text-align: center;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .final-cta-kit {
        max-width: 300px;
    }

    .final-cta-title {
        font-size: 1.85rem;
    }

    .final-btn {
        font-size: 1.15rem;
        padding: 12px 24px;
        min-width: 220px;
        white-space: nowrap;
    }
}

/* Rodapé (Footer) */
.footer-section {
    background-color: var(--bg-dark-color);
    padding: 60px 20px 30px 20px;
    position: relative;
    z-index: 10;
    width: 100%;
    color: #FFFFFF;
    overflow: hidden;


}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-logo {
    flex: 1;
}

.footer-logos-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 140px;
    height: auto;
}

.footer-logo-secondary {
    width: 110px;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.footer-col-menu {
    flex: 1;
    align-items: center;
    text-align: center;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-family: var(--font-primary);
    color: #FFFFFF;
    font-size: 1.25rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-col-contact {
    flex: 1;
    align-items: flex-end;
    text-align: right;
}

.footer-email {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: var(--accent-color);
}

.footer-btn {
    font-size: 1.2rem;
    padding: 10px 32px;
    border-radius: 999px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-developer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.footer-developer-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.heart-icon {
    color: #FF4D4D;
    display: inline-block;
    margin: 0 3px;
    font-size: 1.05rem;
    animation: heartPulse 1.6s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 16px 24px 16px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
        padding-bottom: 24px;
    }

    .footer-col-logo,
    .footer-col-menu,
    .footer-col-contact {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-logos-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-logo {
        width: 130px;
    }

    .footer-logo-secondary {
        width: 100px;
    }

    .footer-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .footer-email {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .footer-btn {
        width: auto;
        min-width: 220px;
        padding: 12px 36px;
        font-size: 1.25rem;
        white-space: nowrap;
        display: inline-block;
        text-decoration: none;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 10px;
    }
}

/* Botão Flutuante Sticky (Sobe ao rolar) */
.floating-sticky-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 999;
    background: rgba(18, 26, 74, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 187, 72, 0.45);
    border-radius: 999px;
    padding: 8px 12px 8px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 187, 72, 0.25);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.floating-sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta-text {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sticky-cta-btn {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #FFBB48 0%, #FFA812 100%);
    color: #1E2C83;
    padding: 10px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 187, 72, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    display: inline-block;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 187, 72, 0.6);
}

.sticky-cta-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s ease;
}

.sticky-cta-close:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .floating-sticky-cta {
        bottom: 16px;
        width: 92%;
        max-width: 380px;
        padding: 8px 10px 8px 16px;
        gap: 10px;
    }

    .sticky-cta-text {
        font-size: 0.95rem;
    }

    .sticky-cta-btn {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
}