@font-face {
    font-family: Gotham;
    src: url("./assets/fonts/GothamXNarrow-Book.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Gotham;
    src: url("./assets/fonts/GothamXNarrow-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Gotham;
    src: url("./assets/fonts/GothamXNarrow-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Gotham-Black;
    src: url("./assets/fonts/GothamXNarrow-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

:root {
    --bg: #eff2e8;
    --text: #191b21;
    --green: #39d234;
    --red: #eb0025;
    --blue: #4469dd;
    --purple: #6b2ac7;
    --orange: #ef5a11;
    --green-icon: #00cc44;
    /* Cor exata do verde da imagem */
    --text-dark: #000000;
    --offwhite: #fcfbf9;
    --dark: #2d2d2d;
    --gray: #666666;
    --border: #e0deda;
    --accent: #333333;
    --error: #dc3545;
}

* {
    padding: 0;
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Gotham, Arial, sans-serif;
    margin: 0;
}

html,
body {
    overflow-x: hidden;
}

.page {
    max-width: 430px;
    margin: 0 auto;
    padding: 14px 12px 44px;
    overflow-x: hidden;
}

.header-bar-main {
    position: fixed;
    z-index: 1000;
    background: var(--bg);
    width: 100%;
    left: 0;
    top: 0;
}

.header-bar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 30px;
}

.header-bar li {
    list-style: none;
    white-space: nowrap;
    outline: none;
}

.header-bar ul .cta-button {
    background: linear-gradient(to right, #f00101, #ff4800);
    color: #fff;
    font-family: Gotham-Black, Arial, sans-serif;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 999px;
}

.header-bar ul .cta-button a,
.header-bar ul .cta-button a:visited {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.header-bar img {
    width: 70%;
    height: auto;
}


.align-start {
    position: relative;
}

.percurso-div {
    position: relative;

}

/* O Segredo: O contêiner pai mantém sempre a proporção correta, independente da altura da tela */
.corrida-hero-container {
    position: relative;
    width: 100%;
    max-width: 430px;
    /* Alinhado com a largura máxima da sua classe .page */
    margin: 0 auto;
}

.corrida-main {
    margin-top: 25%;
}

/* As imagens agora ocupam a largura do contêiner e definem a altura natural dele */
.corrida-main .img-corredor img {
    width: 90%;
    height: auto;
    display: block;
}

/* Remove a flutuação solta e posiciona com base na imagem do corredor */
.infos-corrida-verde img {
    width: 40%;
    position: absolute;
    top: 35%;
    /* Usando TOP para descer a partir do topo fixo da imagem */
    left: 54%;
}

/* Informações de Endereço/Data alinhadas estritamente com o topo da imagem */
.event-info-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    position: absolute;
    top: 23%;

    /* MUDANÇA AQUI: Escolha o lado para mover */
    left: 70%;
    /* Empurra o ponto de ancoragem bem para a direita */
    transform: translateX(-75%);
    /* Puxa o próprio elemento de volta para a esquerda de forma proporcional */

    width: max-content;
    /* O bloco se ajusta exatamente ao tamanho do texto */
    max-width: 210px;
    /* Limita o tamanho para caber na metade direita da imagem */
}

/* Botões perfeitamente posicionados e alinhados */
.button-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    position: absolute;
    top: 68%;

    /* MUDANÇA AQUI: Controle fino das laterais */
    left: 74%;
    /* Ajuste essa porcentagem para mover tudo para os lados */
    transform: translateX(-50%);
    /* Mantém o botão centralizado sobre o seu próprio eixo */

    width: max-content;
}

/* Remove qualquer deslocamento individual que quebre o botão */
.button-main .cta-primary {
    background: linear-gradient(to right, #5aff62, #04af0d, #08ca12);
    background-size: 200% auto;
    color: #fff;
    font-size: 20px;
    padding: 15px 25px;
    border-radius: 999px;
    text-decoration: none;
    animation: gradienteLento 5s linear infinite;
}

.button-main .cta-secondary-button {
    color: #2c2c2c;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 999px;
    text-decoration: none;
    font-family: Gotham, Arial, sans-serif;
    text-align: center;
}


.button-main .cta-primary {
    background: linear-gradient(to right, #5aff62, #04af0d, #08ca12);
    background-size: 200% auto;
    color: #fff;
    font-size: 20px;
    padding: 15px 25px;
    border-radius: 999px;
    text-decoration: none;
    position: relative;
    /* right: 19%; <-- REMOVA OU COMENTE ESTA LINHA */
    animation: gradienteLento 5s linear infinite;
}

@keyframes gradienteLento {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.button-main .cta-secondary-button {
    color: #2c2c2c;
    font-size: 12px;
    line-height: 0.9;
    padding: 10px 15px;
    border-radius: 999px;
    text-decoration: none;
    font-family: Gotham, Arial, sans-serif;
    text-align: center;
    margin-top: -10px;
    position: relative;
    /* right: 19%; <-- REMOVA OU COMENTE ESTA LINHA */
}

.strong-green {
    background: linear-gradient(to right, #06790c, #04af0d, #08ca12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Alinhamento das linhas */
.info-row {
    display: flex;
    gap: 15px;
    /* Espaço entre o ícone e o texto */
}

.info-row.align-start {
    align-items: flex-start;
}

/* Estilização padrão para as tags <i> do Font Awesome */
.icon-green {
    color: var(--green-icon);
    font-size: 24px;
    /* Controla o tamanho do ícone */
    width: 24px;
    /* Garante que o espaço de largura seja fixo */
    text-align: center;
    flex-shrink: 0;
}

/* Ajuste sutil de margem para o ícone de localização alinhar com a primeira linha */
.info-row.align-start .icon-green {
    margin-top: 2px;
}

/* Estrutura de textos */
.address-text {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: var(--text-dark);
}

.time-block {
    display: flex;
    align-items: center;
}

.time-col {
    display: flex;
    flex-direction: column;
}

.divider {
    width: 2px;
    height: 35px;
    background-color: var(--text-dark);
    margin: 0 15px;
}

.label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 2px;
}

.value {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
}

.route-text {
    display: flex;
    flex-direction: column;
}

.value.highlight {
    font-size: 20px;
}


.banner-desktop {
    display: none;
}

.stages {
    width: 110%;
    position: relative;
    left: -5%;
}

.stages-accordion {
    display: flex;
    min-height: 270px;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
}

.stage-card.is-active::before {
    opacity: 0;
    transition: opacity 220ms ease;
    /* Transição suave acompanhando o resto do card */
}

.stage-card {
    border: 0;
    color: #fff;
    text-align: center;
    font-family: Gotham, Arial, sans-serif;
    position: relative;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    flex: 1 1 25%;

    display: flex;
    flex-direction: row;

    /* MODIFIQUE ESTAS DUAS LINHAS PARA CENTRALIZAR NO MEIO PERFEITO: */
    align-items: center;
    /* Centraliza verticalmente na coluna */
    justify-content: center;
    /* Centraliza horizontalmente na coluna */
    gap: 1px;
    /* Deixa os textos bem próximos um do outro */

    transition: flex-basis 280ms ease, flex-grow 280ms ease, opacity 220ms ease, padding 220ms ease;
    margin: 0;
}

.stage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 180px;
    opacity: 1.22;
    z-index: 0;
    transition: background-size 280ms ease;
}

.stage-card>* {
    position: relative;
    z-index: 1;
    margin: 0;
}

.stage-hint {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    pointer-events: none;
}

.stage-hint i {
    font-size: 11px;
}

.stage-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 3;
}

.stage-card h2 {
    font-family: Gotham-Black, Arial, sans-serif;
    font-size: 40px;
    line-height: 1;
    /* Altere para 1 para remover espaços fantasmas */
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    margin: 0 0px;
    position: relative;
    left: 18%;

}

.stage-card h3 {
    font-size: 18px;
    line-height: 1;
    /* Garante que a linha acompanhe o tamanho exato da fonte */
    font-weight: 500;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    margin: 0;
    position: relative;
    left: 18%;
}

.stage-details {
    font-size: 15px;
    line-height: 1.35;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 260ms ease, opacity 220ms ease, margin-top 240ms ease;
    margin: 0;
}

.stage-extra {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 280ms ease, opacity 220ms ease, margin-top 220ms ease;
}

.stage-meta {
    list-style: none;
    margin: 0;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 14px;
}

.stage-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    white-space: nowrap;
}

.notify-flag {
    margin: 16px auto 0;
    display: block;
    border: 0;
    border-radius: 999px;
    padding: 12px 26px;
    font-family: Gotham-Black, Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.2px;
    color: #fff;
    background: linear-gradient(120deg, #ffffff 0%, #dbe7ff 40%, #a9c5ff 100%);
    color: #1f3f92;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.notify-flag:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stage-card.is-active {
    flex: 1 1 100%;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 18px 14px 22px;
    gap: 10px;
}

.stage-card.is-active .stage-hint {
    opacity: 0;
    visibility: hidden;
}

.stage-card.is-active .stage-close {
    display: inline-flex;
}

.stages-accordion.has-active .stage-card:not(.is-active) {
    flex: 0 0 0;
    opacity: 0;
    padding: 0;
}

.stage-card.is-active .stage-details {
    margin-top: 14px;
    max-height: 220px;
    opacity: 1;
}

.stage-card.is-active .stage-extra {
    margin-top: 10px;
    max-height: 180px;
    opacity: 1;
}

.stage-card.is-active h2,
.stage-card.is-active h3 {
    writing-mode: horizontal-tb;
    transform: none;
    white-space: normal;
    left: 0;
    text-align: center;
}

.stage-card.is-active h2,
.stage-card.is-active h3,
.stage-card.is-active .stage-details,
.stage-card.is-active .stage-extra {
    width: min(90%, 560px);
    margin-left: auto;
    margin-right: auto;
}

.stage-card.is-active h2 {
    font-size: 38px;
    line-height: 0.9;
}

.stage-card.is-active h3 {
    margin-top: 4px;
    font-size: 26px;
}

.stage-blue {
    background: var(--blue);
    --icon: url("assets/ICON AZUL.png");
}

.stage-red {
    background: var(--red);
    --icon: url("assets/ICON VERMELHO.png");
}

.stage-purple {
    background: var(--purple);
    --icon: url("assets/ICON ROXO.png");
}

.stage-orange {
    background: var(--orange);
    --icon: url("assets/ICON LARANJA.png");
}

.join {
    margin: 54px 0 30px;
    text-align: center;
}

strong {
    background: linear-gradient(to right, #ff0800, #df2909);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Gotham-Black, Arial, sans-serif;
}

.join img {
    width: 500%;
    max-width: 520px;
    margin: 0;
    position: relative;
    left: -57%;
}

.join p {
    margin: 25px auto 0;
    max-width: 85%;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    text-align: justify;
}

.kit {
    margin: 0px 0 30px;
    padding: 20px;
    border-radius: 12px;
}

.kit h2 {
    font-family: Gotham-Black, Arial, sans-serif;
    font-size: 48px;
    line-height: 0.9;
    text-align: center;
    margin: 0 0 20px;
}

.kit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.kit-item {
    min-height: 72px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    border: 1px solid #e0e0e0;
    margin: 0;
}

.footer {
    display: flex;
    flex-direction: row;
    font-size: 15px;
    align-items: center;
}

.footer img {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.footer-bottom {
    background: #191b21;
    text-align: center;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.footer-bottom a {
    margin-top: 15px;
    display: inline-block;
}

/* Bloqueia o scroll da página de fundo */
body.no-scroll {
    overflow: hidden;
}

/* O fundo do modal (Overlay) */
.modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(8px); /* O efeito de desfoque mágico */
    z-index: 9999; /* Garante que fica por cima de tudo */
    justify-content: center;
    align-items: center;
}

/* Quando o modal estiver ativo, muda o display para flex */
.modal-overlay.active {
    display: flex;
}

/* A caixa branca do modal */
.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh; /* Não deixa o modal passar de 80% da altura da tela */
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Área de texto interna com scroll caso o regulamento seja grande */
.modal-body {
    overflow-y: auto; 
    margin-top: 15px;
    padding-right: 10px;
    white-space: pre-line; /* Adicione esta linha */
    color: #000;
}

/* Botão de fechar (X) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    color: #333;
}

.close-btn:hover {
    color: #e74c3c;
}

a:link {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

/* Visited link */
a:visited {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

/* Mouse over link */
a:hover {
    color: #FFF;
    text-decoration: underline;
    /* Optional: adds line back on hover */
}

/* Selected link */
a:active {
    color: rgb(228, 100, 15);
    text-decoration: none;
}

footer {
    padding: 15px 0;
}

.instagram-link {
    background: linear-gradient(to right, #ff0800, #df2909);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}

.modal {
    border: none;
    background: transparent;
    padding: 0;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    /* Garante que o modal não passe da altura da tela */
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

    /* Centralização perfeita e nativa para a tag <dialog> */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

body.modal-open {
    overflow: hidden;
}

/* Efeito Offwhite e Desfoque do Fundo */
.modal::backdrop {
    background-color: rgba(252, 251, 249, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-content {
    background-color: var(--offwhite);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--border);
}

/* Botão Fechar */
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--dark);
}

/* Tipografia do Modal */
.modal-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Formulário */
.input-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.input-group input {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 1rem;
    color: var(--dark);
    transition: border-color 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--dark);
}

/* Mensagens de Erro */
.error-msg {
    font-size: 0.75rem;
    color: var(--error);
    margin-top: 0.3rem;
    min-height: 16px;
    display: block;
}

/* Botão Enviar */
.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Toast de Feedback */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #198754;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Container principal - Garante a linha preta (fundo do seu print) e o alinhamento horizontal */
.footer {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
}

/* Alinha o bloco da esquerda, o texto e o bloco da direita lado a lado */
.footer-container {
    display: flex;
    flex-direction: row;
    /* FORÇA a ficar um ao lado do outro */
    align-items: center;
    /* Alinha todos verticalmente pelo meio */
    justify-content: center;
    gap: 2.5rem;
    /* Espaçamento perfeito entre os blocos */
}

/* Bloco da esquerda - FORÇA um logo estritamente em cima do outro */
.marcas-parceiras {
    display: flex !important;
    /* O !important previne interferências externas */
    flex-direction: column;
    /* Empilha os elementos */
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    /* Espaço entre o logo de cima e o de baixo */
}

/* Evita que as imagens quebrem o comportamento do flexbox */
.smlogo,
.Alvoradalogo,
.evento-logo {
    display: inline-block;
    /* Permite o comportamento correto dentro de flex */
    width: auto;
    /* Mantém a proporção */
}

/* Controle individual das alturas baseado no seu print */
.smlogo {
    width: 120%;
}

.evento-logo {
    width: 30%;
}

/* Texto do meio */
.apresenta-text {
    font-size: 1.1rem;
    color: #181818;
    /* Cor vermelha idêntica ao seu print */
    font-weight: 500;
    white-space: nowrap;
    /* Impede o texto de quebrar linha */
}



@media (min-width: 1024px) {
    .page {
        max-width: 100%;
        padding: 0;
        overflow-x: hidden;
    }

    .header-bar-main {
        position: fixed;
        background: var(--bg);
        max-height: 180px;
    }

    .header-bar {
        max-width: 1400px;
        margin: 20px auto;
        padding: 0px 50px;
    }

    .header-bar img {
        width: 30%;
    }

    .header-bar ul .cta-button {
        font-size: 26px;
        padding: 12px 24px;
    }

    .corrida-main {
        display: none;
    }

    .banner-desktop {
        display: block;
        width: 100%;
        margin-top: 10%;
        padding: 0;
        overflow: hidden;
    }

    .banner-desktop img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .stages {
        width: 100%;
        left: 0;
        margin: 0;
        padding: 0;
    }

    .stages-accordion {
        border-radius: 0;
        min-height: 400px;
    }

    .stage-card::before {
        background-size: contain;
    }

    .stage-card.is-active {
        padding: 40px;
    }

    .stage-card.is-active h2 {
        font-size: 52px;
    }

    .stage-card.is-active h3 {
        font-size: 32px;
    }

    .join {
        max-width: 2800px;
        margin: 80px auto 60px;
        padding: 0 40px;
    }

    .join img {
        width: 150%;
        max-width: 800px;
        left: -8%;
        display: block;
        margin: 0 auto;
    }

    .join p {
        max-width: 1000px;
        font-size: 34px;
        line-height: 1.6;
        text-align: center;
        margin: 60px auto 0;
    }

    .kit {
        max-width: 1200px;
        margin: 0 auto 60px;
        padding: 40px;
    }

    .kit h2 {
        font-size: 64px;
    }

    .kit-grid {
        max-width: 900px;
        margin: 0 auto;
    }

    .footer {
        justify-content: center;
        gap: 16px;
        font-size: 18px;
        max-width: 1200px;
        margin: 40px auto;
    }

    .footer img {
        width: 200px;
        max-width: none;
        margin: 0;
    }

    .footer-bottom {
        padding: 30px 20px;
    }

    .footer-bottom p {
        font-size: 16px;
    }

    .modal {
        max-width: 550px;
    }

    .modal-content {
        padding: 3rem 2.5rem;
    }

    [data-stage-card]::before {
        /* Garante que o ícone do before mude o tamanho apenas no PC */
        background-size: cover !important;

        /* Caso queira testar esticar totalmente se o cover cortar muito o ícone, */
        /* remova o 'cover !important' acima e use a linha abaixo: */
        /* background-size: 100% 100% !important; */
    }

    .buttons-banner {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 20%;
        position: absolute;
        z-index: 60;
        top: 86%;
        right: 8%;
    }

.buttons-banner .banner-cta1 {
    padding: 20px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 40px;
    cursor: pointer;
    border: none;
    font-weight: 700;
    font-family: Gotham-Black, Arial, sans-serif;
    color: rgb(36, 36, 36);
    background: linear-gradient(to right, #00cc44, #50f082, #5aff62, #00cc44);
    background-size: 200% auto; 
    animation: gradientMove 4s linear infinite;
    transition: transform 15.2s ease;
}

/* Efeito opcional: Dá um leve pulinho quando passa o mouse */
.buttons-banner .banner-cta1:hover {
    transform: scale(1.02);
}

/* --- LINHA DE TEMPO: SENTIDO ÚNICO CORES CORRENDO --- */
@keyframes gradientSingleDirection {
    0% {
        background-position: 0% 50%;
    }
    100% {
        /* Desloca o fundo completamente para a esquerda, dando o efeito de fluxo contínuo */
        background-position: 200% 50%;
    }
}

    .buttons-banner .banner-cta2 {
        padding: 30px 30px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 20px;
        cursor: pointer;
        border: none;
        background-color: #777777;
        font-weight: 200;
        font-family: Gotham-Medium, Arial, sans-serif;
        color:rgb(255, 255, 255)
    }
}