/* Reset e fonte geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background: linear-gradient(to right, #1D4ED8, #3B82F6);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.header-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-login {
    padding: 10px 20px;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-login:hover {
    background: white;
    color: #1D4ED8;
}

/* Home Header */
.container-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.container-header p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Botões primários */
.btn-primary {
    padding: 12px 30px;
    background: white;
    color: #1D4ED8;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e0e7ff;
    color: #1E40AF;
}

/* Seções principais */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section:nth-child(even) {
    background-color: #F9FAFB;
}

.section:nth-child(odd) {
    background-color: #F9FAFB;
}

/* Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Títulos */
h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.card p {
    color: #555;
}

/* Vídeo */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Botão secundário */
.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: #1D4ED8;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background: #2563EB;
}

/* Preço */
.preco {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.img-exemplo {
    width: 100%;
    height: 600px; /* ou outro valor que se adapte bem */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #1E293B;
    color: #cbd5e1;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container-header h1 {
        font-size: 36px;
    }
    .container-header p {
        font-size: 18px;
    }
    h2 {
        font-size: 28px;
    }
}

/* Botões do rodapé */
.btn-footer {
    padding: 10px 30px;
    background: #1D4ED8;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-footer:hover {
    background-color: #2563EB;
}

.cadastro p {
    margin-bottom: 30px;
}

/* Área geral de login */
.register-wrapper, .login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;  /* substituído aqui */
    background: linear-gradient(to right, #1D4ED8, #3B82F6);
    padding: 20px;
}

/* Container login e cadastro */
.login-container, .register-container {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 500px;
}

/* Título da página de cadastro */
.register-container h2 {
    font-size: 32px;
    color: #1D4ED8;
    margin-bottom: 30px;
    text-align: center;
}

/* Formulário geral */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

/* Cada grupo de campo (padrão do Django {{ form.as_p }}) */
form p {
    display: flex;
    flex-direction: row; /* <<< antes era column */
    align-items: center; /* Alinha label e input na mesma linha */
    gap: 10px; /* Espaço entre o label e o input */
    margin-bottom: 12px; /* Espaço entre os campos */
}

/* Labels */
form label {
    min-width: 140px; /* Faz o label ter uma largura fixa */
    text-align: right; /* Alinha o texto à direita */
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* Inputs */
form input {
    flex: 1; /* Ocupa o resto da linha */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

/* Botão de login/cadastro */
.btn-login-submit, .btn-register-submit {
    background: #1D4ED8;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login-submit:hover, .btn-register-submit:hover {
    background: #2563EB;
}

/* Mensagem de erro geral */
.error-message {
    color: #d9534f;
    background-color: #f8d7da;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

/* Mensagem de erro de campo individual */
ul.errorlist {
    list-style: none;
    padding: 0;
    margin: 5px 0 10px;
    color: #d9534f;
    font-size: 13px;
    text-align: left;
}

/* Informações abaixo do formulário */
.register-info, .login-links {
    margin-top: 20px;
}

.register-info p, .login-links p {
    font-size: 14px;
    color: #555;
}

.register-info a, .login-links a {
    color: #1D4ED8;
    text-decoration: none;
    font-weight: 500;
}

.register-info a:hover, .login-links a:hover {
    text-decoration: underline;
}

/* Texto de observação */
.note {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .register-wrapper {
        display: block;
        min-height: auto;
        padding: 30px 20px;
        background: linear-gradient(to right, #1D4ED8, #3B82F6);
        overflow-y: auto;
    }

    .register-container {
        margin: 0 auto;
        margin-top: 30px;
        max-width: 90%;
    }

    .register-container h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    form p {
        flex-direction: column;
        align-items: flex-start;
    }

    form label {
        min-width: unset;
        text-align: left;
    }

    form {
        gap: 15px;
    }

    form input {
        font-size: 16px;
        padding: 12px;
    }
}

/* Área geral de reset de senha */
.reset-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #1D4ED8, #3B82F6);
    padding: 40px 20px;
    overflow-y: auto;
}

/* Container de reset */
.reset-container {
    background: white;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 500px;
}

/* Título de reset */
.reset-container h2 {
    font-size: 32px;
    color: #1D4ED8;
    margin-bottom: 20px;
}

/* Descrição do reset */
.reset-description {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* Formulário de reset */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

/* Inputs */
form p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

form label {
    min-width: 140px;
    text-align: right;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

/* Botão de reset */
.btn-reset-submit {
    background: #1D4ED8;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-reset-submit:hover {
    background: #2563EB;
}

/* Links abaixo */
.reset-info {
    margin-top: 20px;
}

.reset-info p {
    font-size: 14px;
    color: #555;
}

.reset-info a {
    color: #1D4ED8;
    text-decoration: none;
    font-weight: 500;
}

.reset-info a:hover {
    text-decoration: underline;
}

/* Responsividade Mobile */
@media (max-width: 600px) {
    .reset-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 30px 20px;
        width: 100%;
    }

    .reset-container {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 30px 20px;
    }

    .reset-container h2 {
        font-size: 24px;
    }

    form p {
        flex-direction: column;
        align-items: flex-start;
    }

    form label {
        min-width: unset;
        text-align: left;
    }

    form input {
        font-size: 16px;
    }
}


.error-message {
    background-color: #fdecea;
    color: #d9534f;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
}

.error-message ul {
    margin-top: 10px;
    list-style-type: disc;
    padding-left: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.field-error {
    color: #d9534f;
    font-size: 13px;
    margin-top: 5px;
}

.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px; /* espaço entre label e input */
}

/* Label alinhado */
.form-group label {
    width: 180px; /* largura fixa para os labels */
    text-align: right;
    font-weight: 600;
    font-size: 14px;
}

/* Input do form */
.form-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

/* Cabeçalho simples de Planos */
.simple-header {
    background: linear-gradient(to right, #2563EB, #3B82F6);
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    animation: fadeDown 0.8s ease;
}

/* Container principal de planos */
.container-planos {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    text-align: center;
}

/* Título da seção */
.plan-header h1 {
    font-size: 38px;
    color: #2563EB;
    margin-bottom: 10px;
}

.plan-header p {
    font-size: 18px;
    color: #6B7280;
}

/* Cards de planos */
.plans {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    animation: fadeIn 0.8s ease;
    justify-content: center;
}

/* 2 planos por linha em telas maiores */
@media (min-width: 768px) {
    .plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1 plano por linha em telas menores */
@media (max-width: 767px) {
    .plans {
        grid-template-columns: 1fr;
    }
}

.plan {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: background 0.3s, transform 0.3s;
    position: relative;
}

.plan:hover {
    background: #E0F2FE;
    transform: translateY(-5px);
}

/* Títulos de cada plano */
.plan h2 {
    font-size: 28px;
    color: #2563EB;
    margin-bottom: 20px;
}

/* Lista de características */
.plan ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    color: #374151;
    font-size: 16px;
}

.plan ul li {
    margin-bottom: 10px;
}

/* Preço em verde bonito */
.price {
    font-size: 26px;
    font-weight: bold;
    color: #10B981;
    margin-bottom: 20px;
}

.logo-topo-vendas {
    max-width: 50%;
    flex: 2;
}

/* Botão de assinatura */
.btn-assinar {
    display: inline-block;
    background-color: #2563EB;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.btn-assinar:hover {
    background-color: #1D4ED8;
    transform: translateY(-3px);
}

/* Destaque para melhor plano */
.best-plan {
    border: 2px solid #10B981;
}

.badge-best {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #10B981;
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: bold;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
}

.field-error {
    font-size: 13px;
    color: #d9534f;
    margin-top: 4px;
}

.captcha {
    max-height: 60px;
    border-radius: 8px;
}


.footer-info {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
    font-size: 14px;
    color: #6B7280;
}

.footer-info a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Estilo para telas pequenas */
@media (max-width: 600px) {
    .btn-assinar,
    .btn-assinar.btn-secundario {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

/* =========================
   NOVA FASE DA HOME
========================= */

/* Containers e textos */
.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #0F172A;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 18px;
    color: #64748B;
}

/* Header melhorado */
.header {
    background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 55%, #60A5FA 100%);
    padding: 28px 20px;
    color: white;
}

.container-header {
    width: min(1120px, 92%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-area {
    max-width: 700px;
}

.logo {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 8px;
}

.brand-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.92);
    max-width: 680px;
}

.header-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Botões refinados */
.btn-primary,
.btn-secondary,
.btn-login,
.btn-assinar {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-login:hover,
.btn-assinar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.btn-primary {
    background: white;
    color: #1D4ED8;
    font-weight: 700;
    border-radius: 12px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    background: rgba(255,255,255,0.14);
    color: white;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 12px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.22);
    color: white;
}

.btn-login {
    border-radius: 12px;
}

/* Hero */
.hero {
    background:
        radial-gradient(circle at top right, rgba(96,165,250,0.22), transparent 30%),
        linear-gradient(180deg, #F8FBFF 0%, #EEF5FF 100%);
    padding: 72px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.hero-text h2 {
    font-size: 50px;
    line-height: 1.12;
    color: #0F172A;
    margin-bottom: 18px;
}

.hero-text p {
    font-size: 19px;
    color: #475569;
    max-width: 640px;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DBEAFE;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-mini-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.mini-proof-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.mini-proof-item strong {
    display: block;
    color: #0F172A;
    font-size: 15px;
    margin-bottom: 4px;
}

.mini-proof-item span {
    color: #64748B;
    font-size: 13px;
    line-height: 1.45;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 420px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.12);
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10B981;
}

.status-text {
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

.hero-metric h3 {
    font-size: 18px;
    color: #0F172A;
    margin-bottom: 14px;
}

.hero-metric ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-metric li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    background: #F8FAFC;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    font-size: 14px;
}

.hero-metric li span {
    color: #334155;
}

.hero-metric li strong {
    color: #1D4ED8;
    text-align: right;
}

.hero-card-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #E2E8F0;
}

.hero-card-footer p {
    color: #64748B;
    font-size: 14px;
    margin: 0;
}

/* Faixa de prova social */
.social-proof {
    padding: 28px 20px 60px;
    background: #EEF5FF;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.proof-box {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.proof-box strong {
    display: block;
    font-size: 28px;
    color: #1D4ED8;
    margin-bottom: 6px;
}

.proof-box span {
    color: #64748B;
    font-size: 15px;
}

/* Dores / benefícios */
.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.card h3 {
    color: #0F172A;
    font-size: 22px;
}

.card p {
    color: #64748B;
}

/* Diagnóstico */
.diagnostico {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.diagnostico-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: #E0ECFF;
    color: #1D4ED8;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.diagnostico-grid h2 {
    text-align: left;
    margin-bottom: 14px;
}

.diagnostico-grid p {
    text-align: left;
    color: #475569;
    font-size: 17px;
    margin-bottom: 12px;
}

.diagnostico-box {
    background: #0F172A;
    color: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.diagnostico-box h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.diagnostico-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diagnostico-box li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
}

.diagnostico-box li:last-child {
    border-bottom: none;
}

/* Como funciona */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.step-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    text-align: left;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #DBEAFE;
    color: #1D4ED8;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    color: #0F172A;
    margin-bottom: 10px;
}

.step-card p {
    color: #64748B;
    font-size: 15px;
}

/* Exemplos */
.img-exemplo {
    height: 360px;
    object-fit: cover;
    border-radius: 14px;
}

/* Planos */
.plan {
    text-align: left;
}

.plan h3,
.plan h2 {
    color: #0F172A;
}

.plan-indicado {
    color: #64748B;
    margin-bottom: 14px;
    font-size: 15px;
}

.plan.destaque,
.plan.best-plan {
    border: 2px solid #10B981;
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.10);
}

.badge-best {
    display: inline-flex;
    position: absolute;
    top: -12px;
    right: 18px;
    background: #10B981;
    color: white;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* FAQ */
.faq {
    background: #F8FAFC;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 14px;
}

.faq-question {
    width: 100%;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    cursor: pointer;
    position: relative;
}

.faq-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #1D4ED8;
    transition: transform 0.25s ease;
}

.faq-answer {
    display: none;
    background: white;
    border: 1px solid #E2E8F0;
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 16px 20px;
    color: #64748B;
    text-align: left;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* CTA final */
.cta-final {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
    color: white;
    padding: 80px 20px;
}

.cta-final-box {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-box h2 {
    color: white;
    font-size: 40px;
    margin-bottom: 14px;
}

.cta-final-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 24px;
}

/* Faixa de oferta / trial */
.offer-strip {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-grid,
    .diagnostico-grid,
    .steps-grid,
    .social-proof-grid,
    .cards-4,
    .cards-3 {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text h2 {
        font-size: 40px;
    }

    .hero-mini-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero,
    .section,
    .cta-final {
        padding: 56px 20px;
    }

    .container-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav {
        width: 100%;
    }

    .header-nav a {
        width: 100%;
    }

    .hero-grid,
    .diagnostico-grid,
    .steps-grid,
    .social-proof-grid,
    .cards-4,
    .cards-3 {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 34px;
    }

    .section-heading h2,
    .cta-final-box h2 {
        font-size: 30px;
    }

    .brand-subtitle,
    .hero-text p,
    .section-heading p,
    .cta-final-box p {
        font-size: 16px;
    }

    .logo {
        font-size: 34px;
    }

    .img-exemplo {
        height: 240px;
    }
}

/* =========================
   CADASTRO TRIAL - NOVO LAYOUT
========================= */

.register-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
}

.register-container--wide {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 20px;
    padding: 5px 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.register-header {
    text-align: center;
    margin-bottom: 22px;
}

.register-header h2 {
    font-size: 18px;
    line-height: 1.15;
    color: #1D4ED8;
    margin-bottom: 10px;
}

.register-subtitle {
    font-size: 16px;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
}

.register-form {
    margin-top: 10px;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.register-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 0;
}

.register-form .form-group--full {
    grid-column: 1 / -1;
}

.register-form .form-group label {
    width: auto;
    min-width: unset;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.register-form .form-group input,
.register-form .form-group select,
.register-form .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    font-size: 15px;
    color: #0F172A;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.register-form .form-group input:focus,
.register-form .form-group select:focus,
.register-form .form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.captcha-block {
    margin-top: 4px;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    background: #F8FAFC;
}

.captcha-row img {
    max-height: 54px;
    width: auto;
    border-radius: 8px;
    display: block;
}

.captcha-row input {
    flex: 1;
    min-width: 220px;
    background: #fff;
}

.btn-register-submit {
    width: 100%;
    margin-top: 24px;
    background: #1D4ED8;
    color: white;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-register-submit:hover {
    background: #2563EB;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.register-info {
    margin-top: 20px;
    text-align: center;
}

.register-info p {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 6px;
}

.register-info a {
    color: #1D4ED8;
    font-weight: 600;
    text-decoration: none;
}

.register-info a:hover {
    text-decoration: underline;
}

.note {
    font-size: 13px;
    color: #64748B;
}

.field-error {
    font-size: 13px;
    color: #DC2626;
    margin-top: 2px;
}

.error-message {
    background: #FEF2F2;
    color: #B91C1C;
    padding: 12px 14px;
    border: 1px solid #FECACA;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    text-align: left;
}

@media (max-width: 768px) {
    .register-container--wide {
        max-width: 100%;
        padding: 28px 20px;
    }

    .register-header h2 {
        font-size: 28px;
    }

    .register-grid {
        grid-template-columns: 1fr;
    }

    .captcha-row {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-row input {
        min-width: 0;
        width: 100%;
    }
}

.register-trial-badge {
    display: inline-block;
    margin-top: 10px;
    background: #DBEAFE;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
}