
@font-face {
    font-family: 'SaiFont'; /* O nome que você vai usar para chamar a fonte no resto do código */
    src: url('./fonte/sai-Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Boa prática de performance */
}

/* --- Estilos Gerais --- */
:root {
    --bg-dark: #030308; /* Fundo escuro do corpo e menu offcanvas */
    --navbar-dark-bg: rgba(3, 3, 8, 0.95); /* Fundo sutilmente mais escuro do navbar */
    --border-dark-button: #1a1a24; /* Cor da borda do botão preto */
    --red-button: #a80a0a; /* Vermelho do botão FECHAR */
    
    /* Gradientes para texto e logo */
    --gradient-a: linear-gradient(90deg, #c0c0c0, #e0e0e0); /* Gradiente para o 'A' */
    --gradient-s: linear-gradient(90deg, #a80a0a, #4a148c); /* Gradiente para o 'S' */
    --gradient-text: linear-gradient(90deg, #a80a0a, #6a1b9a); /* Gradiente para HOME/ABRIR MENU */
    
    --font-family: 'SaiFont', 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Fonte sans-serif limpa */
}



body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #010013, #0f0520);
    background-image: radial-gradient(to right , #010013 0%, #110520 60%, #1b0a33 100%);
}

.img-logo{
    width: 80px;
    height: auto;
}

.bg-body-custom {
    background-color: var(--bg-dark);
}

/* --- Estilos do Navbar --- */
.navbar-dark-custom {
    background-color: #00000057;
    border-bottom: 1px solid #FFFFFF20;
}

.contaudeo-nav{
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Estilos do Logo AS (Simulado) --- */
.logo-as {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.logo-a {
    background: var(--gradient-a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.logo-s {
    background: var(--gradient-s);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

/* --- Estilos de Texto Gradiente (HOME, ABRIR MENU) --- */
.text-gradient {
    background: linear-gradient(90deg, #BC060F, #3E4BE1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0;
}

/* --- Estilos dos Botões Ovais Reutilizáveis --- */
.btn-oval-white,
.btn-oval-black,
.btn-oval-red {
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

/* Botão Oval Branco (com texto gradiente) */
.btn-oval-white {
    background-color: #ffffff !important;
    padding: 7px 20px;
    border: none;
}

/* Botão Oval Preto (com borda sutil) */
.btn-oval-black {
    background-color: #FFFFFF1A;
    padding: 07px 20px 07px 20px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF21;
}

/* Botão Oval Vermelho (para FECHAR) */
.btn-oval-red {
    background-color: var(--red-button);
    padding: 10px 40px;
    border: none;
}

/* --- Estilos do Menu Offcanvas --- */
.offcanvas-mobile-menu {
    width: 100vw; /* Ocupa a largura total da tela */
    transition: transform 0.3s ease-in-out;
}

.bg-dark-custom {
    background-color: var(--bg-dark);
}

.offcanvas-mobile-menu .offcanvas-header {
    border-bottom: none;
}

.offcanvas-mobile-menu .offcanvas-body {
    height: 40%;
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* Espaçamento vertical entre os botões */
    width: 100%;
    max-width: 350px; /* Largura máxima para os botões centrais */
    margin: 0 auto; /* Centraliza a lista */
}

/* Estilos para os links dentro do offcanvas */
.offcanvas-nav a {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.topo-01 {
    display: flex;
    background: linear-gradient(to right, #010013, #0f0520);
    background-image: radial-gradient(to right , #010013 0%, #110520 60%, #1b0a33 100%);
    padding: 120px 0;
    min-height: 80vh;
    align-items: center;
    position: relative; /* ADICIONADO: Necessário para segurar as linhas absolutas */
    overflow: hidden;   /* ADICIONADO: Impede que a animação passe do limite da seção */
}

/* --- ANIMAÇÃO DAS LINHAS (TOPO-01) --- */

/* Container que segura as linhas preenchendo toda a seção */
.bg-linhas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly; /* Distribui as 4 linhas com espaçamento igual */
    z-index: 1; /* Fica no fundo */
    pointer-events: none; /* Garante que as linhas não bloqueiem o clique no texto */
}

/* A linha estática (fio de fundo quase invisível) */
.linha {
    position: relative;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.08); /* Fio branco muito suave */
    overflow: hidden;
    z-index: 9998;
}

/* O feixe de luz animado que desce */
.linha::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 35%; /* Comprimento do feixe de luz */
    /* Gradiente transparente que termina na cor azulada da sua marca e branco na ponta */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(62, 75, 225, 0.4) 75%, rgba(255, 255, 255, 0.5) 100%);
    animation: descerLinha linear infinite;
}

/* Delays e durações diferentes para cada linha não descer sincronizada (Efeito orgânico) */
.linha:nth-child(1)::before { animation-duration: 4s; animation-delay: 0s; }
.linha:nth-child(2)::before { animation-duration: 5s; animation-delay: 2.5s; }
.linha:nth-child(3)::before { animation-duration: 4.5s; animation-delay: 1.2s; }
.linha:nth-child(4)::before { animation-duration: 5.5s; animation-delay: 3s; }

/* Animação que empurra o feixe de -50% (fora da tela acima) até 110% (fora da tela abaixo) */
@keyframes descerLinha {
    0% { top: -50%; }
    100% { top: 110%; }
}

.subtitulo-topo-01{
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 20px;
    z-index: 9999;
    position: relative;
}

.subtitulo-topo-01 span{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, rgb(188, 6, 15), rgb(62, 75, 225)) text;
}

.titulo-topo-01{
    font-family: "Inter", sans-serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: -1.7px;
    color: #fff;
    z-index: 9999;
    position: relative;
}

.titulo-topo-01 span{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, rgb(188, 6, 15), rgb(62, 75, 225)) text;
}

.texto-topo-01{
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgb(210, 210, 210);
    margin-top: 20px;
    z-index: 9999;
    position: relative;
}

.texto-topo-01 small{
    font-size: 16px;
}

.topo-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(188, 6, 15), rgb(62, 75, 225));
    color: white;
    padding: 15px 0;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    flex-shrink: 0;
    padding-right: 20px; /* Reduzi o espaÃ§amento entre as frases */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    font-style: italic;
    font-size: 20px;
}

.marquee {
    display: flex;
    white-space: nowrap;
    /* Ajuste a duraÃ§Ã£o. Valores menores = mais rÃ¡pido. Tente algo como 8s-12s. */
    animation: marquee 10s linear infinite;
}

.img-american{
    height: 15px;
    width: auto;
    margin: 0 15px;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.topo-marquee2 {
    width: 100%;
    overflow: hidden;
    background: #010013;
    color: white;
    padding: 15px 0;
}

.marquee-wrapper2 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content2 {
    flex-shrink: 0;
    padding-right: 20px; /* Reduzi o espaÃ§amento entre as frases */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    font-style: italic;
    font-size: 20px;
}

.marquee2 {
    display: flex;
    white-space: nowrap;
    /* Ajuste a duraÃ§Ã£o. Valores menores = mais rÃ¡pido. Tente algo como 8s-12s. */
    animation: marquee2 10s linear infinite;
}

@keyframes marquee2 {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.botao{
    text-decoration: none;
    display: table;
    font-family: "sai", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    fill: #000000;
    color: #000000;
    padding: 20px 60px 20px 60px;
    position: relative;
    background: white !important;
    border-radius: 2000px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    margin: 25px auto;
}

.botao::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 99;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: inherit;
    border: solid 1px white;
    opacity: 50%;
    background: #ffffff40;
    transition: 0.5s ease;
}

.botao::after {
    content: "";
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    background: rgb(255, 207, 74);
    width: 15%;
    height: 80%;
    filter: blur(15px);
    opacity: 60%;
    mix-blend-mode: screen;
    transition: none;
}

/* Ocultar barra de rolagem mas manter o scroll ativo */
.cards-wrapper {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    flex-wrap: nowrap;
    cursor: grab;
    
    /* ADICIONADO: O Efeito de Fade nas laterais (Máscara CSS) */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.cards-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.cards-wrapper:active {
    cursor: grabbing;
}

/* --- SEÇÃO TOPO-02 (CARDS DE OFERTAS) --- */
.topo-02 {
    position: relative;
    z-index: 2;
    background-color: #010013;
}

/* Ocultar barra de rolagem mas manter o scroll ativo */
.cards-wrapper {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    flex-wrap: nowrap;
}
.cards-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Estrutura Base do Card */
.card-oferta {
    min-width: 290px;
    max-width: 290px;
    background-color: #060310; /* Fundo interno um pouco mais claro que o body */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Efeito Hover Sutil ao passar o mouse */
.card-oferta:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Área da Imagem */
.card-img-wrapper {
    width: 100%;
    height: auto;
    /*background-color: #1a1a2e;*/
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Dá um tom mais sombrio/premium para a foto */
    transition: opacity 0.3s ease;
}

.card-oferta:hover .card-img-wrapper img {
    opacity: 0.9;
}

/* Barra de Gradiente com os números */
.card-gradient-bar {
    text-align: center;
    padding: 8px 0;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

/* Variações de gradientes fiéis à sua imagem */
.grad-1 { background: linear-gradient(90deg, #6c1b4b, #3b3086); }
.grad-2 { background: linear-gradient(90deg, #a82035, #413db5); }
.grad-3 { background: linear-gradient(90deg, #b82830, #5c2c94, #2a41b8); }
.grad-4 { background: linear-gradient(90deg, #b82830, #2a41b8); }

/* Corpo de Texto do Card */
.card-body-oferta {
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body-oferta h3 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #d1d1dd;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body-oferta p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #7b7b90;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Botão Analisar Oferta */
.btn-analisar {
    background-color: #159b2d;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(21, 155, 45, 0.15);
}

.btn-analisar:hover {
    background-color: #1bd03c;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(21, 155, 45, 0.4);
}

/* Rodapé decorativo do card */
.card-footer-oferta {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 9px;
    color: #3b3b4f;
    font-weight: 700;
    letter-spacing: 1px;
}

.barcode {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
}

/* --- SEÇÃO DE VÍDEOS CUSTOMIZADOS --- */
.video-card {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Mantém a proporção exata de 16:9 de vídeos */
    border-radius: 8px; /* Cantos levemente arredondados como na foto */
    overflow: hidden;
    background-color: #060310;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1; /* Fica atrás da capa */
}

/* A Capa Customizada */
.video-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Fica na frente do iframe tapando ele */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 20px;
    transition: opacity 0.3s ease;
}

/* Gradiente escuro no topo e na base para destacar os textos */
.video-facade::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Deixa o topo e o fundo escuros, mas o centro transparente */
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.8) 100%);
    z-index: 0;
}

/* Elementos acima do sombreamento */
.video-header, .video-play, .video-footer {
    position: relative;
    z-index: 1;
}

.video-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111; 
    object-fit: cover;
}

.video-title {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.video-title strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.video-title span {
    color: #d1d1dd;
    font-size: 11px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1); /* Efeito de pulsar o botão ao passar o mouse */
}

.video-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.video-link-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6); /* Círculo meio transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.3s ease;
    backdrop-filter: blur(4px); /* Efeito de vidro borrado na bolinha */
}

.video-link-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.video-yt-label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0,0,0,1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.topo-03{
    padding: 50px 0;
    background-color: #010013;
}

/* --- SEÇÃO RADAR E LINHAS --- */
.topo-03 {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Container que corta o círculo pela metade */
.radar-box {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: auto; /* Exatamente metade da largura */
    overflow: hidden;
}

/* O fundo do radar (Anéis e linhas de grade) */
.radar-grid {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    /* Desenha os círculos concêntricos e a cruz central em CSS */
    background-image: 
        radial-gradient(transparent 25%, rgba(255, 255, 255, 0.05) 25.5%, transparent 26%),
        radial-gradient(transparent 50%, rgba(255, 255, 255, 0.05) 50.5%, transparent 51%),
        radial-gradient(transparent 75%, rgba(255, 255, 255, 0.05) 75.5%, transparent 76%),
        linear-gradient(to right, transparent 49.8%, rgba(255, 255, 255, 0.05) 49.8%, rgba(255, 255, 255, 0.05) 50.2%, transparent 50.2%),
        linear-gradient(to bottom, transparent 49.8%, rgba(255, 255, 255, 0.05) 49.8%, rgba(255, 255, 255, 0.05) 50.2%, transparent 50.2%);
    background-size: 100% 100%;
}

/* O feixe de luz que fica girando (Sweep) */
.radar-sweep {
    position: absolute;
    bottom: -250px; /* Centraliza no ponto exato da base do contêiner cortado */
    left: 50%;
    margin-left: -250px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    /* O conic-gradient cria aquele efeito de luz que começa forte e vai apagando */
    background: conic-gradient(from 0deg, transparent 70%, rgba(62, 75, 225, 0.5) 100%);
    transform-origin: center center;
    animation: varreduraRadar 4s linear infinite;
}

/* A rotação contínua e suave */
@keyframes varreduraRadar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- LINHAS LATERAIS DO TEXTO --- */
.text-box-linhas {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Estrutura das duas linhas usando gradiente para o Fade-out nas pontas */
.linha-vertical {
    position: absolute;
    top: -10%; /* Sobe um pouco além do texto */
    width: 1px;
    height: 120%; /* Desce um pouco além do texto */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.linha-vertical.esquerda {
    left: 0;
}

.linha-vertical.direita {
    right: 0;
}

/* --- ESTILOS DE TEXTO E CORES EXATAS --- */
.titulo-radar {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.txt-vermelho {
    background: linear-gradient(90deg, #BC060F, #e21c25);
    -webkit-background-clip: text;
    color: transparent;
}

.txt-roxo {
    background: linear-gradient(90deg, #6a1b9a, #3E4BE1);
    -webkit-background-clip: text;
    color: transparent;
}

.texto-radar {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #a0a0b0;
    line-height: 1.6;
    margin: 0 auto;
}

/* --- SEÇÃO 04: FUNDO EM VÍDEO --- */
.topo-04 {
    background-color: #010013; /* Mantém o fundo contínuo escuro nas bordas */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Container que trava o vídeo no limite da seção */
.video-bg-wrapper {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1; /* Mantém o vídeo atrás do texto */
    pointer-events: none; /* Impede o usuário de clicar com o botão direito ou pausar o vídeo */
}

/* Estilo do Vídeo e Efeito de Máscara */
.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo preencher a tela inteira sem distorcer as proporções */
    opacity: 0.6; /* Deixa o vídeo um pouco transparente para o texto brilhar mais. Ajuste se precisar. */
    /* A mesma mágica que desvanece as bordas em formato oval para os cantos */
    -webkit-mask-image: radial-gradient(ellipse 50% 60% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    mask-image: radial-gradient(ellipse 50% 60% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    /* Encolhe o radar no mobile */
    .radar-box { max-width: 280px; height: 140px; }
    .radar-grid, .radar-sweep { width: 280px; height: 280px; }
    .radar-sweep { bottom: -140px; margin-left: -140px; }
    
    .titulo-radar { font-size: 24px; }
    
    /* Remove as linhas no mobile para o texto não ficar espremido */
    .linha-vertical { display: none; } 
    .text-box-linhas { padding-top: 10px; padding-bottom: 10px; }
}

/* --- SEÇÃO 05: CARDS DE FEATURES (ALINHAMENTO À ESQUERDA) --- */
.topo-05 {
    background-color: #010013; 
    position: relative;
    z-index: 2;
}

/* Estrutura do Card Premium */
.feature-card {
    background: #0a091b;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.125);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Centralização removida daqui para liberar a esquerda */
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-media {
    display: flex;
    justify-content: center; /* Mantém apenas a imagem no meio */
    width: 100%;
}

.laptop-img {
    max-height: 200px;
    object-fit: contain;
    margin-top: -100px;
}

.flags-container {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    justify-content: flex-start; /* Bandeiras alinhadas à esquerda */
}

.flag-icon {
    width: auto;
    height: 20px;
    object-fit: cover;
}

/* --- ANIMAÇÃO DO CADEADO E CÍRCULO --- */
.cloaker-animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    position: relative;
    width: 100%;
}

.circulo-girando {
    width: 100%;
    height: auto;
    animation: rotacaoContinua 20s linear infinite;
    position: absolute;
    margin-top: -100px;
}

@keyframes rotacaoContinua {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cadeado-gif {
    width: 50px; 
    position: absolute;
    z-index: 2;
    /* Inverte o GIF preto para branco puro */
    filter: invert(1); 
    top: 12%;
    /* ADICIONADO: Pega no fundo preto e torna-o transparente! */
    mix-blend-mode: screen;
}

/* --- ESTILOS DE TEXTO ALINHADOS À ESQUERDA --- */
.feature-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: left;
}

.feature-title {
    font-family: "Inter", sans-serif;
    font-size: 30px; /* Levemente ajustado para caber perfeito com o gradiente */
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.2;
    text-align: left;
    
    /* Gradiente vermelho e roxo/azul devolvido ao título */
    background: linear-gradient(90deg, #BC060F, #3E4BE1);
    -webkit-background-clip: text;
    color: transparent;
}

.feature-text {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #a0a0b0;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

.feature-text strong {
    color: #e0e0e0;
    font-weight: 700;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 991px) {
    .feature-card {
        padding: 30px 20px;
    }
    
    .topo-05{
        padding-top: 90px !important;
    }

    .feature-card{
        margin-bottom: 40px;
    }
    
    .cloaker-animation-container {
        min-height: 180px;
    }
    
    .feature-title {
        font-size: 26px;
    }

    .topo-04{
        min-height: 30vh;
    }

}

/* --- SEÇÃO 06: FAIXAS CRUZADAS ANIMADAS --- */
.topo-06 {
    background-color: #010013; /* Continua com o fundo escuro da página */
    min-height: 250px; /* Garante espaço suficiente para as faixas se cruzarem */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* O contêiner da fita em si */
.faixa-cruzada {
    position: absolute;
    width: 120vw; /* Mais largo que a tela para não faltar fita na rotação */
    left: -10vw;
    /* O gradiente idêntico ao da imagem */
    background: linear-gradient(90deg, #BC060F, #6a1b9a, #3E4BE1);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra para destacar a fita de cima */
}

/* Inclinações e sobreposição (z-index) */
.faixa-top {
    transform: rotate(3deg);
    z-index: 2; /* Fica por cima */
}

.faixa-bottom {
    transform: rotate(-3deg);
    z-index: 1; /* Fica por baixo */
}

/* Estrutura do trilho de animação */
.faixa-track {
    display: flex;
    width: max-content;
}

.faixa-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    padding-right: 30px; /* Espaço após o último item do bloco */
}

/* Tamanho e espaçamento das escritas (american.webp) */
.img-faixa {
    height: 18px; /* Ajuste se quiser a letra maior ou menor */
    width: auto;
    margin: 0 25px; /* Espaço entre as logos */
    object-fit: contain;
}

/* --- ANIMAÇÕES DE MOVIMENTO (OPOSTAS) --- */

/* Fita 1: Move da Direita para a Esquerda */
.move-esquerda {
    animation: rolarEsquerda 25s linear infinite;
}

@keyframes rolarEsquerda {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Fita 2: Move da Esquerda para a Direita */
.move-direita {
    animation: rolarDireita 25s linear infinite;
}

@keyframes rolarDireita {
    /* Começa no -50% para empurrar pro 0 de forma invisível no loop */
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}



/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .faixa-cruzada {
        width: 150vw;
        left: -25vw;
        padding: 10px 0;
    }
    
    .img-faixa {
        height: 14px;
        margin: 0 15px;
    }
    
    /* Aumenta os graus da inclinação no mobile porque a tela é estreita */
    .faixa-top { transform: rotate(5deg); }
    .faixa-bottom { transform: rotate(-5deg); }
}


.topo-07 {
    display: flex;
    background: #010013;
    padding: 50px 0;
    min-height: 80vh;
    align-items: center;
    position: relative; /* ADICIONADO: Necessário para segurar as linhas absolutas */
    overflow: hidden;   /* ADICIONADO: Impede que a animação passe do limite da seção */
    border-top: 1px solid #FFFFFF20;
}

.titulo-topo-07{
    font-family: "Sora", Sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 66px;
    color: #FFFFFF;
}

/* --- SEÇÃO 07: TABELAS DE PREÇOS (PLANOS) --- */
.plano-card {
    background-color: #000215;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Faz ambos os cards terem a mesma altura */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 9999;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Cores do Plano ELITE */
.card-elite {
    border: 1px solid rgb(255, 255, 255, 0.2);
}
.card-elite .plano-header {
    background-color: #6b143c;
}

/* Cores do Plano FOUNDER */
.card-founder {
    border: 1px solid rgb(255, 255, 255, 0.2);
}
.card-founder .plano-header {
    background-color: #3d0a21;
}

.plano-header {
    padding: 20px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.plano-price {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 65px;
    font-weight: 800;
    color: #ffffff;
    padding: 40px 0 20px 0;
    line-height: 1;
    letter-spacing: -2.5px;
}

.plano-features {
    list-style: none;
    padding: 0 30px;
    margin: 0;
    flex-grow: 1; /* Empurra o botão sempre para o final do card */
}

.plano-features li {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-weight: 500;
    line-height: 1.4;
}

/* Tira a linha de baixo do último item */
.plano-features li:last-child {
    border-bottom: none;
}

.plano-features li i {
    font-size: 16px;
    flex-shrink: 0; /* Impede o ícone de amassar se o texto tiver duas linhas */
}

.plano-footer {
    padding: 30px 30px 40px 30px;
    text-align: center;
}

/* O Botão Branco com Glow Dourado */
.btn-plano {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    /* O brilho exato que tem na sua imagem */
    box-shadow: 0 0 25px rgba(255, 207, 74, 0.25); 
    transition: all 0.3s ease;
}

.btn-plano:hover {
    background-color: #f4f4f4;
    box-shadow: 0 0 35px rgba(255, 207, 74, 0.4);
    transform: scale(1.05);
    color: #000000;
}

.botao-nv{
    display: table;
    text-decoration: none;
    background: #FFFFFFC9;
    border: 1px solid #56003A;
    font-family: "Sora", Sans-serif;
    font-weight: 700;
    color: #000;
    padding: 15px 60px;
    text-align: center;
    font-size: 20px;
    border-radius: 180px;
    margin: 20px auto;
}

/* Ajustes no Mobile */
@media (max-width: 768px) {
    .plano-price { font-size: 55px; }
    .plano-features li { font-size: 12px; padding: 15px 0;}
    .plano-card { margin-bottom: 20px; }
}

/* --- CARDS DE GARANTIA E SUPORTE --- */
.info-card {
    background-color: #080719; /* Fundo hiper escuro idêntico aos outros cards */
    border-radius: 5px;
    border: 1px solid rgb(255, 255, 255, 0.2);
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Imagens */
.img-garantia {
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.img-wpp {
    max-width: 60%;
    height: auto;
    text-align: left;
    margin-left: 0;
    object-fit: contain;
}

/* A Barra de Neon Verde do WhatsApp */
.glow-line-green {
    width: 80px;
    height: 4px;
    background-color: #25D366; /* Verde oficial do WhatsApp */
    border-radius: 4px;
    /* Mágica do Glow */
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.8), 0 0 30px rgba(37, 211, 102, 0.4);
}

/* Link de Suporte */
.link-suporte {
    font-family: "Inter", sans-serif;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.link-suporte:hover {
    color: #25D366; /* Fica verde ao passar o mouse */
}

/* Responsividade de padding para não espremer no mobile */
@media (max-width: 768px) {
    .info-card {
        padding: 40px 25px;
    }
    .img-garantia {
        max-width: 180px;
    }
}

/* --- FOOTER (RODAPÉ) --- */

/* Distanciamento extra do conteúdo de cima do footer */
.border-top-footer {
    margin-top: 80px !important;
}

.footer-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #a0a0b0; /* Cinza suave */
    line-height: 1.6;
}

.footer-heading {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

/* A linha divisória extremamente fina e sutil */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.05);
    border-width: 1px;
    opacity: 1; /* O Bootstrap tira a opacidade do <hr> nativo, aqui forçamos aparecer */
}

.footer-copy {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #7b7b90; /* Cinza um pouco mais escuro para não roubar a atenção */
}

/* Responsividade do Footer */
@media (max-width: 991px) {
    .border-top-footer {
        margin-top: 40px !important;
    }
    
    .footer-text {
        /*text-align: center;*/
        padding-right: 0 !important;
    }
    
    .footer-heading {
       /* text-align: center;*/
    }
    
    
    
    /* Centraliza o bloco de contatos no mobile */
    .border-top-footer .text-start {
       /* text-align: center !important;*/
    }
}

@media screen and (max-width: 600px) {

    .botao {
        padding: 15px;
        font-size: 16px;
    }

    .titulo-topo-07{
        font-size: 54px;  
    }

    .topo-01{
        padding: 60px 0;
        min-height: 20vh;
        display: block;
    }

    .texto-topo-01{
        font-size: 16px;
    }

    .texto-topo-01 small{
        font-size: 12px;
    }

    .titulo-topo-01{
        font-size: 26px;
        line-height: 1.2em;
    }

    .subtitulo-topo-01{
        font-size: 13px;
        line-height: 1.2em;
    }

}

/* --- Breakpoints Responsivos Personalizados --- */
@media (max-width: 991.98px) {
    /* No mobile, o botão "ABRIR MENU" substitui os links do desktop */
    .d-none.d-lg-block {
        display: none !important;
    }
}