/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #03e74f; /* Verde Esmeralda (cor de destaque) */
    --background-color: #050505; /* Fundo escuro um pouco mais claro */
    --surface-color: #2D2D2D; /* Cor para cards e superfícies */
    --text-color: #FFFFFF;
    --text-color-secondary: #B0B0B0; /* Texto secundário levemente mais claro */
    --header-height: 80px;
    --border-color: #444444; /* Cor para bordas sutis */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Logo no header */
/* --- AJUSTES PARA CENTRALIZAR E AUMENTAR O LOGO MOBILE --- */
.nav {
    position: relative; /* Mantém a referência para os itens internos */
    justify-content: space-between; /* Voltamos para este para garantir o espaçamento */
}

.nav-logo {
    position: absolute; /* Posicionamento absoluto para controle total */
    left: 50%; /* Coloca o início do logo no meio da tela */
    transform: translateX(-50%); /* Puxa o logo 50% da sua própria largura para a esquerda, centralizando-o perfeitamente */
}

.nav-toggle {
    position: absolute; /* Tira o ícone do fluxo normal do layout */
    right: 1.5rem; /* Posiciona o ícone na direita */
    top: 50%;
    transform: translateY(-50%); /* Centraliza o ícone verticalmente */
    z-index: 101; /* Garante que o ícone fique clicável */
}

.logo-img {
    height: 150px; /* Mantém o tamanho do logo */
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}


.footer-logo img {
    filter: brightness(0) invert(1); /* Deixa branca se o fundo for escuro */
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === FOOTER GERAL === */
.footer {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    font-size: 15px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

/* === LOGO === */
.footer-logo img {
    height: 160px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

/* === TEXTO ABAIXO DA LOGO === */
.footer-brand p {
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.8;
}

/* === LINKS E REDES SOCIAIS === */
.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1);
}



a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary { /* Botão "Abrir conta agora" */
    background-color: var(--primary-color); /* Fundo verde */
    color: #111; /* Cor do texto escura para bom contraste */
    border: none; /* Remove a borda para um look mais "sólido" */
    font-weight: 600; /* Garante que o texto está em negrito */
    box-shadow: 0 4px 20px rgba(0, 168, 36, 0.25); /* Sombra verde para dar destaque */
    transition: all 0.3s ease; /* Transição suave para todos os efeitos */
}

.btn-primary:hover {
    background-color: #00c410; /* Tom de verde um pouco mais claro no hover */
    box-shadow: 0 7px 25px rgba(0, 168, 50, 0.4); /* Sombra mais forte no hover */
    transform: translateY(-3px); /* Efeito de "levantar" o botão */
}
.btn-cta { /* Botão "Começar agora" */
    background-color: var(--primary-color);
    color: var(--background-color); /* Texto escuro no botão CTA verde */
    font-size: 1.1rem;
    padding: 16px 36px;
    display: flex; /* Para alinhar o ícone */
    align-items: center;
    gap: 0.75rem;
    justify-content: center; /* Centraliza conteúdo no botão */
    border: none;
}
.btn-cta i {
    font-size: 1.2rem;
    color: var(--background-color); /* Cor do ícone */
}
.btn-cta:hover {
    background-color: #008F5A; /* Um tom de verde um pouco mais escuro no hover */
}


/* CABEÇALHO E NAVEGAÇÃO */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--background-color); /* Fundo sólido do header */
    /* background-color: rgba(26, 26, 26, 0.95); Removido o blur para o visual ficar mais "chapado" */
    /* backdrop-filter: blur(10px); */
    border-bottom: 1px solid var(--border-color); /* Borda inferior */
    z-index: 100;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color-secondary);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* SEÇÃO HERO */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Ocupa a altura total da viewport inicial */
    position: relative; /* Essencial para posicionar os pseudo-elementos */
    overflow: hidden; /* Garante que os efeitos não "vazem" */
    border-bottom: 1px solid var(--border-color); /* A linha de divisão */
}

/* Efeito de LUZ DEGRADE no fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px; /* Largura da luz */
    height: 1000px; /* Altura da luz */
    background: radial-gradient(circle, rgba(5, 231, 43, 0.15) 0%, rgba(0, 168, 107, 0) 70%);
    filter: blur(100px); /* Desfoque para suavizar */
    z-index: 0; /* Posiciona atrás do conteúdo */
}

/* Efeito de FADE na parte inferior da seção */
/* Efeito de FADE na parte inferior da seção */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, var(--background-color) 100%);
    z-index: 1; /* MUDANÇA: Camada intermediária */
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2; /* MUDANÇA: Conteúdo na camada de cima, sempre clicável */
}
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem; /* Aumenta o espaço entre os dois itens */
    margin-bottom: 2rem;
    color: var(--text-color-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    /* Removemos o background, border-radius, border e padding para tirar o estilo de "chip" */
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.6rem; /* Espaço entre o ícone e o texto */
}

.hero-trust span i {
    color: var(--primary-color);
    font-size: 1.1rem;
}


.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 750px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color-secondary);
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 650px;
}

.hero-description {
    max-width: 600px;
    margin: -1rem auto 3rem;
    color: var(--text-color-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 1rem;
}


/* SEÇÃO RECURSOS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color-secondary);
    line-height: 1.7;
}


/* SEÇÃO BENEFÍCIOS */
.benefits-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap; /* Permite quebrar em telas menores */
}

.benefits-image {
    flex: 1;
    min-width: 300px; /* Garante que a imagem não fique muito pequena */
}

.benefits-image img {
    max-width: 100%;
    
    /* REMOVER FUNDO PRETO: O mix-blend-mode: screen faz o preto ser transparente */
    mix-blend-mode: screen;
    
    /* Ajustes para a imagem aparecer mais vibrante e com a sombra */
    filter: brightness(1.2) contrast(1.1); /* Aumenta um pouco o brilho e contraste */
    
    /* A sombra para realçar o brilho da imagem, agora em tom amarelo */
    box-shadow: 0 0 90px rgba(7, 255, 19, 0.4); /* Sombra mais amarelada */
    border-radius: 12px; 
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-color-secondary);
}

/* SEÇÃO FINAL CTA */
.final-cta {
    background-color: var(--background-color); /* Usamos a cor de fundo principal */
    padding: 6rem 0; /* Mais padding */
    text-align: center;
    position: relative; /* Para os pseudo-elementos */
    overflow: hidden; /* Garante que os efeitos não "vazem" */
    border-top: 1px solid var(--border-color); /* Mantém a borda superior */
    border-bottom: 1px solid var(--border-color); /* Adiciona borda inferior */
    border-radius: 12px; /* Bordas arredondadas para a seção */
    margin: 4rem 2rem; /* Margem para que a seção "flutue" */
    max-width: 1120px; /* Para as bordas arredondadas serem visíveis */
    margin-left: auto;
    margin-right: auto;
    display: flex; /* Para centralizar conteúdo verticalmente */
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Altura mínima da seção */
}

/* Efeito de LUZ DEGRADE (direita) */
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0; /* Posiciona à direita */
    transform: translateY(-50%) translateX(50%); /* Ajusta a posição */
    width: 600px; /* Largura da luz */
    height: 600px; /* Altura da luz */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 193, 7, 0) 70%); /* Degradê amarelo/laranja */
    filter: blur(100px); /* Desfoque */
    z-index: 0;
}

/* Efeito de LUZ DEGRADE (esquerda) - se quiser adicionar um brilho sutil */
.final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; /* Posiciona à esquerda */
    transform: translateY(-50%) translateX(-50%); /* Ajusta a posição */
    width: 500px; /* Largura da luz */
    height: 500px; /* Altura da luz */
    background: radial-gradient(circle, rgba(160, 160, 160, 0.08) 0%, rgba(255, 255, 255, 0) 70%); /* Degradê cinza sutil */
    filter: blur(80px); /* Desfoque */
    z-index: 0;
}

.final-cta h2 {
    font-size: 2.8rem; /* Ajuste o tamanho da fonte */
    margin-bottom: 3rem; /* Mais espaço para o botão */
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1; /* Garante que o texto fique acima das luzes */
}

/* Wrapper para o botão CTA final com a sombra */
.btn-cta-wrapper {
    position: relative;
    z-index: 1; /* Acima das luzes */
    display: inline-block; /* Para que a sombra funcione corretamente */
    border-radius: 8px; /* Borda arredondada do wrapper */

    /* Efeito de Sombra Colorida */
    box-shadow: 
        0 0 50px rgba(0, 168, 14, 0.4), /* Sombra principal verde */
        0 0 100px rgba(4, 194, 36, 0.2), /* Sombra maior e mais suave */
        0 0 150px rgba(5, 230, 61, 0.1); /* Sombra ainda maior e mais suave */
    transition: box-shadow 0.3s ease; /* Transição suave para o hover */
}

.btn-cta-wrapper:hover {
    box-shadow: 
        0 0 70px rgba(0, 168, 50, 0.6), /* Sombra mais intensa no hover */
        0 0 120px rgba(0, 168, 28, 0.3),
        0 0 180px rgba(0, 168, 36, 0.15);
}

.btn-cta {
    /* Mantém os estilos existentes do btn-cta */
    background-color: var(--primary-color);
    color: var(--background-color);
    font-size: 1.1rem;
    padding: 16px 36px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Adiciona transição para background */
}
/* No hover do próprio botão, apenas um leve escurecimento */
.btn-cta:hover {
    background-color: #008f24; /* Um tom de verde um pouco mais escuro no hover */
    transform: translateY(0); /* Remove o transform translateY que já estava no wrapper */
}

/* Garante que o ícone e o texto do botão não fiquem "presos" no hover */
.btn-cta-wrapper .btn-cta:hover {
    transform: translateY(0);
}


/* RODAPÉ */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite quebrar em telas menores */
    gap: 2rem; /* Espaçamento entre os blocos */
}

.footer-brand {
    text-align: left; /* Alinhamento do texto da marca */
}
.footer-brand p {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex; /* Para alinhar logo com ícone */
    align-items: center;
    gap: 0.5rem;
}
.footer-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.footer-links a {
    margin-left: 1.5rem;
    color: var(--text-color-secondary);
    transition: color 0.3s;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--text-color);
}

.footer-social a {
    font-size: 1.5rem;
    margin-left: 1.5rem;
    color: var(--text-color-secondary);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* SUBSTITUA SEU BLOCO DE CÓDIGO EXISTENTE POR ESTE */
@media screen and (max-width: 768px) {
    /* --- GERAL --- */
    .section {
        padding: 4rem 0; /* Diminui o espaçamento das seções */
    }

    .container {
        padding: 0 1rem; /* Diminui o espaçamento lateral */
    }

    /* --- CABEÇALHO E NAVEGAÇÃO MOBILE --- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-color);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s;
        border-left: 1px solid var(--border-color);
        z-index: 100;
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .nav-buttons .btn-primary {
        display: none; /* Oculta o botão 'Abrir conta agora' no menu mobile */
    }

    .nav-toggle {
        display: block;
        color: var(--text-color);
        z-index: 101;
    }

    /* --- SEÇÃO HERO --- */
    .hero {
        min-height: auto; /* Altura automática para o conteúdo */
        padding-bottom: 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem; /* Título menor */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-trust {
        flex-direction: column; /* Empilha os itens de confiança */
        gap: 1rem;
        font-size: 0.9rem;
    }

    /* --- SEÇÃO RECURSOS --- */
    .features-grid {
        grid-template-columns: 1fr; /* Apenas uma coluna */
    }

    /* --- SEÇÃO FINAL CTA --- */
    .final-cta {
        margin: 2rem 1rem; /* Margem menor */
        padding: 4rem 1.5rem;
    }

    .final-cta h2 {
        font-size: 2rem; /* Título menor */
    }
    
    /* --- RODAPÉ --- */
    .footer {
        padding: 3rem 1rem;
    }

    .footer-container {
        /* As regras que você já tinha funcionam bem aqui */
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo img {
        height: 120px; /* Logo do rodapé menor */
    }

    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        margin: 0;
    }

    .footer-social {
        flex-direction: row; /* Mantém os ícones lado a lado */
        gap: 1.5rem;
    }

    .footer-social a {
        margin: 0;
    }
}
/* ======================================== */
/* CABEÇALHO E NAVEGAÇÃO           */
/* ======================================== */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Estilos do Menu para DESKTOP --- */
.nav-menu {
    /* No desktop, o .nav-menu é apenas um container transparente */
    background-color: transparent;
}

.nav-list {
    display: flex;
    flex-direction: row; /* Garante que os links fiquem em linha */
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color-secondary);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-toggle {
    display: none; /* Ícone do menu é ESCONDIDO no desktop */
    font-size: 1.5rem;
    cursor: pointer;
}


/* ======================================== */
/* NAVEGAÇÃO PARA TELAS MENORES      */
/* ======================================== */

@media screen and (max-width: 992px) {
    .nav-list {
        gap: 2rem; /* Diminui o espaçamento dos links no tablet */
    }
}

@media screen and (max-width: 768px) {

    /* --- AJUSTES NO CABEÇALHO MOBILE --- */
    .nav {
        position: relative;
        justify-content: center;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-toggle {
        display: block; /* Mostra o ícone do menu no celular */
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 101;
    }
    
    .nav-buttons .btn-primary {
        display: none;
    }

    /* --- ESTILO DO MENU MOBILE (GAVETA) --- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Começa escondido */
        width: 65%;
        height: 100vh;
        padding: 4rem 2rem 2rem;
        background-color: rgba(25, 25, 25, 0.75);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: right 0.4s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu.show-menu {
        right: 0; /* Mostra o menu ao clicar */
    }

    .nav-menu-logo {
        display: block;
        margin-bottom: 4rem;
    }

    .nav-menu-logo img {
        height: 35px;
        width: auto;
    }

    .nav-list {
        flex-direction: column; /* Links em coluna na gaveta */
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .nav-menu .nav-list .nav-link {
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--text-color);
        letter-spacing: 0.5px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        width: 100%;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-list .nav-link:hover {
        color: var(--primary-color);
        background-color: rgba(255, 255, 255, 0.07);
        padding-left: 2rem;
    }
}

/* ======================================== */
/* PÁGINA DE CADASTRO (cadastro.html)     */
/* ======================================== */

.signup-page-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.signup-container {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 0.8fr; /* Divide em duas colunas */
    gap: 4rem;
    align-items: center;
}

.form-section {
    display: flex;
    flex-direction: column;
}

.form-logo {
    margin-bottom: 2rem;
}

.form-logo img {
    height: 150px;
    width: auto;
}

.form-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.form-logo {
        text-align: center;
    }
    
.form-section p {
    color: var(--text-color-secondary);
    margin-bottom: 2.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1; /* Permite que os campos na mesma linha dividam o espaço */
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background-color: #1A1A1A;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(3, 231, 79, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding-top: 16px;
    padding-bottom: 16px;
}

.promo-section {
    background-color: #111;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.promo-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.promo-section img {
    max-width: 80%;
    mix-blend-mode: screen; /* Remove o fundo preto da imagem */
}

/* --- Responsividade da Página de Cadastro --- */
@media (max-width: 992px) {
    .signup-container {
        grid-template-columns: 1fr; /* Coluna única em telas menores */
    }
    .promo-section {
        display: none; /* Opcional: esconde a imagem promocional em telas muito pequenas */
    }
    .signup-page-body {
        align-items: flex-start; /* Alinha ao topo em telas menores */
    }
}
/* ======================================== */
/* PÁGINA DE SUCESSO (sucesso.html)       */
/* ======================================== */

.success-page-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.success-container {
    max-width: 500px;
    padding: 2rem;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    /* Animação sutil */
    animation: pop-in 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.success-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-container p {
    color: var(--text-color-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Animação para o ícone aparecer */
@keyframes pop-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ======================================== */
/* DASHBOARD (dashboard.ejs)              */
/* ======================================== */

.dashboard-body {
    background-color: #000;
    padding-top: 80px; /* Espaço para o cabeçalho fixo */
}

/* NOVO: Estilo do Cabeçalho do Dashboard */
.dash-header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0 2rem;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.dash-header-logo img {
    height: 40px; /* Tamanho do logo no cabeçalho */
    width: auto;
}

.btn-logout {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color-secondary);
    padding: 8px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-logout:hover {
    background-color: var(--surface-color);
    color: var(--text-color);
    border-color: var(--surface-color);
    transform: translateY(0); /* Remove o efeito de levantar para este botão */
}

/* Título principal abaixo do header */
.dashboard-main-title {
    margin-bottom: 2rem;
}

.dashboard-main-title h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.dashboard-main-title p {
    color: var(--text-color-secondary);
    font-size: 1.1rem;
}

.dashboard-body {
    background-color: #000; /* Fundo um pouco diferente para o painel */
}

.dashboard-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.dash-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dash-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.dash-header p {
    color: var(--text-color-secondary);
    font-size: 1.1rem;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.card-info h3 {
    font-size: 1rem;
    color: var(--text-color-secondary);
    font-weight: 500;
}

.card-info p {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.table-container {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    overflow-x: auto; /* Garante a rolagem em telas pequenas */
}

.table-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th, .dashboard-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-table th {
    color: var(--text-color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.dashboard-table tbody tr {
    transition: background-color 0.2s ease;
}

.dashboard-table tbody tr:hover {
    background-color: #1a1a1a;
}

/* ======================================== */
/* BOTÃO FLUTUANTE DO WHATSAPP            */
/* ======================================== */

.whatsapp-button {
    position: fixed; /* Fica fixo na tela, mesmo com a rolagem */
    bottom: 20px;    /* 20 pixels da parte inferior */
    right: 20px;     /* 20 pixels da parte direita */
    z-index: 1000;   /* Garante que fique por cima de todos os outros elementos */

    background-color: #03E74F; /* Cor oficial do WhatsApp */
    color: #FFFFFF;
    
    padding: 10px 20px;
    border-radius: 50px; /* Deixa o botão com as bordas arredondadas */
    
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
    
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.05); /* Aumenta um pouco de tamanho ao passar o mouse */
}

.whatsapp-button i {
    font-size: 1.6rem; /* Tamanho do ícone */
}

/* ======================================== */
/* PÁGINAS LEGAIS (Privacidade/Termos)    */
/* ======================================== */

.legal-page-body {
    padding-top: var(--header-height); /* Espaço para o cabeçalho fixo */
}

.legal-content {
    padding: 4rem 0;
    color: var(--text-color-secondary);
}

.legal-content h1 {
    color: var(--text-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.legal-content h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-content p, .legal-content ul {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 2rem;
}