/* =========================================
   VARIÁVEIS DE COR (tom emergent)
========================================= */
:root {
    --blue: #0B63F6;
    --blue-dark: #063DA6;
    --green: #0AF5A3;
    --green-soft: #C9FFE9;
    --text-dark: #0B1426;
    --text-light: #6c7a8a;
    --bg-soft: #F7F7F5;
    --white: #ffffff;
    --shadow: rgba(0,0,0,0.06);
    --dark: #0F1114;
    --transition: .25s ease;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}
section { padding: 100px 0; }

/* =========================================
   NAVBAR
========================================= */
.premium-navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 18px 0;
}

.navbar .nav-link {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    color: #595F6B !important;
    position: relative;
    transition: 0.25s;
}
.navbar .nav-link:hover {
    color: var(--blue) !important;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 4px;
    height: 2px;
    background: var(--green);
    opacity: 0;
    transform: translateY(6px);
    transition: 0.3s ease;
}
.navbar .nav-link:hover::after {
    opacity: 1;
    transform: translateY(0);
}
.nav-btn {
    font-family: "Inter", sans-serif;
    background: var(--green);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: #1969D1 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    border: none;
}
.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    background: #0FEFAE; /* tom levemente mais forte */
}

.navbar-toggler {
    border: none !important;
    outline: none !important;
    padding: 4px 8px;
    box-shadow: none !important;
}

/* Ícone hamburguer mais elegante */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 28px;
    height: 28px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    /* Espaçamento mais bonito no mobile */
    .navbar-nav {
        background: transparent !important;
        padding: 20px 0;
        gap: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        font-weight: 700;
        color: #595F6B !important;
    }
}
/* =========================================
   HERO — estilo idêntico ao emergent
========================================= */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 150px;
    background: url("/static/img/hero_bg.jpg") center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0, 98, 255, 0.74); /* overlay azul claro */
    backdrop-filter: blur(1px);
}

.hero .row {
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.tag-online {
    background: var(--green);
    padding: 7px 16px;
    border-radius: 25px;
    font-weight: 700;
    color: #595F6B;
    display: inline-block;
    margin-bottom: 22px;
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.2;
    font-weight: 800;
    color: white;
}
.hero-title span {
    color: var(--green);
}

.hero-subtitle {
    font-size: 18px;
    margin-top: 20px;
    color: #f3f8ff;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btn {
    background: var(--green);
    padding: 14px 30px;
    border-radius: 40px;
    color: black;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn-primary {
    background: var(--green);
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 800;
    color: #1969D1;
    
    box-shadow: 0 8px 24px rgba(10, 245, 163, 0.45);
    transition: 0.25s;
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 245, 163, 0.55);
    color: #1969D1;
}

.hero-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;   
    padding: 14px 34px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    transition: 0.25s;
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-4px);
}

.btn-outline-light {
    border: 1.7px solid white !important;
    color: white !important;
    font-weight: 600;
    border-radius: 40px !important;
    padding: 12px 28px !important;
    transition: .2s !important;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15) !important;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    justify-content: center;
    text-align: center;
}
.hero-stats h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
}
.hero-stats p {
    color: #d9e7ff;
}

/* HERO IMAGE RIGHT */
.hero-image {
    width: 420px;
    opacity: 0.95;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* =========================================
   BENEFÍCIOS — estilo cartão premium branco
========================================= */
.benefits-section {
    background: #F9F9F6;
    padding: 120px 0 110px;
    text-align: center;
}

/* Tag */
.benefits-tag {
    display: inline-block;
    padding: 6px 26px;
    border-radius: 40px;
    border: 2px solid #0AF5A3;
    /* background: rgba(10, 245, 163, 0.1); */
    background: #ffffff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #0B63F6;
    margin-bottom: 18px;
}

/* Título */
.benefits-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.3;
    color: #595F6B;
    margin-bottom: 12px;
}
.benefits-title span {
    color: #0B63F6;
}

/* Subtítulo */
.benefits-subtitle {
    font-size: 16px;
    color: #6c7a8a;
    max-width: 620px;
    margin: 0 auto 60px;
}

/* ==== CARDS ==== */
.benefits-card {
    flex: 1;
    background: white;
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover */
.benefits-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

/* Glow verde */
.benefits-card::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    bottom: -35px;
    right: -35px;
    background: rgba(10, 245, 163, 0.22);
    filter: blur(38px);
    opacity: 0.45;
}

/* Ícone */
.benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #C9FFE9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--green);
}

/* Título do card */
.benefits-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #595F6B;
}

/* Texto do card */
.benefits-card p {
    font-size: 15px;
    line-height: 1.45;
    color: #595F6B;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .benefits-card {
        min-height: auto;
        padding: 28px;
    }
    .benefits-title {
        font-size: 2rem;
    }
}

/* ================================
   COMO FUNCIONA (Timeline)
================================= */
.process-section {
    padding: 120px 0;
    background: var(--white);
}

/* TAG PROCESSO */
.process-tag-wrapper {
    text-align: center;
    width: 100%;
}

.process-tag {
    display: inline-block;
    padding: 6px 22px;
    border: 2px solid var(--green);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: white;
    margin-bottom: 25px;
}

/* TÍTULO */
.process-title {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 800;
    color: #595F6B;
    margin-bottom: 10px;
    
}

.process-title span {
    color: var(--blue);
}

.process-subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: #6c7a8a;
}

/* TIMELINE */
.timeline {
    position: relative;
    width: 100%;
    max-width: 870px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 75px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d3e0ff;
}

/* ITEM */
.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

/* NÚMERO */
.timeline-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--blue);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(11, 99, 246, 0.2);
}

/* CARD */
.timeline-card {
    margin-left: 120px;
    background: #f9f9f7;
    border-radius: 16px;
    padding: 26px 32px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ÍCONE */
.timeline-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: #d0fdeb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--green);
}

/* TEXTOS */
.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #595F6B;
}

.timeline-text {
    margin: 0;
    color: #555;
}

/* =========================================
   FAQ
========================================= */
.faq-section {
    background: var(--bg-soft);
    padding: 130px 0;
    text-align: center;
}

/* TAG */
.faq-tag {
    display: inline-block;
    padding: 6px 22px;
    border: 2px solid var(--green);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: white;
    margin-bottom: 20px;
}

/* TÍTULO */
.faq-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #595F6B;
    margin-bottom: 10px;
}
.faq-title span {
    color: var(--blue);
}

/* SUBTÍTULO */
.faq-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 16px;
}

/* ==== ITENS ==== */
.faq-item {
    background: white;
    border-radius: 18px;
    padding: 22px 26px;
    margin: 0 auto 16px;
    max-width: 720px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow);
    transition: .25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--shadow);
}

/* PERGUNTA */
.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #595F6B;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transition: .3s;
}

/* RESPOSTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    color: #555;
    line-height: 1.5;
    transition: .3s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 14px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* MOBILE */
@media (max-width: 768px) {
    .faq-title { font-size: 2rem; }
    .faq-item { padding: 18px; }
}

/* =========================================
   FORMULÁRIO CONTATO
========================================= */
.contact-section {
    background: var(--white);
    padding: 110px 0 140px;
}

.contact-left {
    max-width: 480px;
}
/* TAG */
.contact-tag {
    display: inline-block;
    padding: 6px 18px;
    border: 2px solid var(--green);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    background: white;
    margin-bottom: 16px;
}

/* TÍTULO */
.contact-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 12px;
}
.contact-title span {
    color: var(--green);
}

/* TEXTO */
.contact-text {
    color: #555;
    margin-bottom: 22px;
    max-width: 420px;
}

/* CHECKLIST */
.contact-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
}
.contact-checklist li {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-checklist i {
    color: var(--green);
    font-size: 18px;
}

/* IMAGEM */
.contact-image {
    width: 100%;
    max-width: 380px;
    border-radius: 14px;
    margin-top: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* FORMULÁRIO */
.contact-form-wrapper {
    background: #F6F4EF;
    padding: 34px 32px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* CAMPOS */
.form-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d6d6d6;
    background: white;
    font-size: 14px;
}
.form-input.textarea {
    height: 100px;
    resize: none;
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 99, 246, 0.15);
    outline: none;
}

.contact-form-wrapper label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
    color: #666;
}

/* BOTÃO */
.contact-submit {
    width: 100%;
    padding: 14px;
    background: #1969D1;
    border-radius: 40px;
    font-weight: 700;
    color: #ffffff;
    border: none;
    transition: 0.25s;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 245, 163, 0.45);
}

/* MOBILE */
@media(max-width: 768px) {
    .contact-title { font-size: 2rem; }
    .contact-image { margin-top: 30px; }
}


/* BOTÕES PADRÃO DO SITE */
.btn-cta {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    text-decoration: none;
    transition: 0.2s ease;
}

/* azul para o botão do formulário */
.btn-cta-blue {
    background-color: #007BFF; /* azul */
    color: white;
}

.btn-cta-blue:hover {
    background-color: #0066d6;
}

/* verde para o botão WhatsApp */
.btn-cta-green {
    background-color: #4EF291; /* seu verde neon */
    color: #1969D1;
}

.btn-cta-green:hover {
    background-color: #00d891;
}

/* ===== AJUSTE DA LOGO NA NAVBAR ===== */
.navbar-brand .logo {
    height: 60px;       /* ⬅️ Ajuste ideal */
    width: auto;
    object-fit: contain;
    margin-top: -4px;   /* fica alinhada verticalmente */
}

@media (max-width: 768px) {
    .navbar-brand .logo {
        height: 30px;
    }
}

/* MEDIA */
@media(max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 20px; }
}
a {
    text-decoration: none !important;
}

.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer hr {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer .social-icons i,
.footer .contact-icons i {
    color: #1969D1 !important;
    font-size: 18px;
}

/* Efeito hover */
.footer .social-icons a:hover i,
.footer .contact-icons li:hover i {
    color: #0fffbd !important; /* tom mais claro */
}

/* Ajuste espaçamento ícones contato */
.footer .contact-icons li {
    display: flex;
    align-items: center;
    gap: 8px;
}
#successAlert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;   /* fica acima do navbar */
}
.toast {
    border-radius: 12px !important;
    padding: 8px 10px;
    font-size: 0.95rem;
}

.toast-body {
    font-weight: 500;
}

.toast-container {
    pointer-events: none; /* evita clicar sem querer */
}

.toast .btn-close {
    pointer-events: auto; /* mas permite clicar no X */
}