/* ============================================================
   RESET & BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html { font-size: 16px; }
body {
    background: #f7f9fc;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   BOTÕES CTA
============================================================ */
.cta-button {
    display: block;
    text-align: center;
    margin: 20px auto 25px;
    padding: 12px 18px;
    background: #ff7b00;
    color: white;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255, 124, 0, 0.35);
    transition: .25s;
    text-decoration: none;
    width: 80%;
    max-width: 220px;
}

.cta-button:hover {
    background: #e56d00;
    transform: scale(1.05);
}

/* ============================================================
   HEADER
============================================================ */
header {
    width: 100%;
    padding: 16px 12px;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
}

header img {
    height: 62px;
    max-width: 90%;
    object-fit: contain;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    background: linear-gradient(135deg, #007bff, #005fcc);
    padding: 56px 16px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1rem;
    opacity: .95;
    max-width: 740px;
    margin: 0 auto;
}

/* ============================================================
   BENEFÍCIOS
============================================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 36px 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: .25s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.icon { font-size: 40px; color: #007bff; }

/* ============================================================
   PLANOS
============================================================ */
.pricing-section {
    padding: 60px 20px;
    background: #f5f8ff;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2rem;
    color: #003f88;
    margin-bottom: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: .25s;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card-header {
    background: linear-gradient(135deg, #007bff, #005fcc);
    padding: 16px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-card.melhor .pricing-card-header {
    background: linear-gradient(135deg, #0bbf4f, #159b42);
}

.price {
    font-size: 2rem;
    color: #003f88;
    font-weight: 700;
    margin: 20px 0 10px;
}

.pricing-details {
    padding: 10px 22px 20px;
    color: #444;
    text-align: left;
}

/* ============================================================
   OBS CUSTO
============================================================ */


.obs-custo-fixo {
    max-width: 900px;
    margin: 25px auto 1px;
    background: #fff8e6;
    border-left: 5px solid #ffb300;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.obs-custo-fixo p {
    margin: 0;
    font-size: 1rem;
    color: #554400;
    line-height: 1.5;
}

.obs-custo-fixo strong {
    color: #b37400;
}

/* ============================================================
   COMO FUNCIONA – (NOVA SEÇÃO PROFISSIONAL)
============================================================ */

.fluxo-assinatura {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 60px auto;
    text-align: center;
}

.fluxo-assinatura h2 {
    font-size: 2rem;
    color: #003f88;
    margin-bottom: 40px;
    font-weight: 700;
}

.fluxo-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: nowrap;      /* ❗ NÃO QUEBRA EM TELAS GRANDES */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.fluxo-item {
    flex: 1;                /* ❗ Distribui itens igualmente */
    min-width: 230px;
}

.fluxo-numero {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    background: #007bff;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.fluxo-item h4 {
    font-size: 1.2rem;
    color: #003f88;
    margin-bottom: 10px;
}

.fluxo-item p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4rem;
}

.fluxo-item {
    flex: 1;                /* ❗ Distribui itens igualmente */
    min-width: 230px;
}
@media (max-width: 1100px) {
    .fluxo-container {
        flex-wrap: wrap;    /* ❗ AGREGA quebra normal */
        justify-content: center;
        gap: 25px;
    }

    .fluxo-seta {
        display: none;      /* ❗ Some com as setas no mobile */
    }

    .fluxo-item {
        width: 100%;
        max-width: 380px;
    }
}
/* RESPONSIVO */
@media (max-width: 900px) {
    .fluxo-container {
        flex-direction: column;
        gap: 30px;
    }
    .fluxo-seta {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    .fluxo-item {
        width: 100%;
        max-width: 380px;
    }
}

/* ============================================================
   ENVIO
============================================================ */
.envio-info {
    background: linear-gradient(180deg, #f7faff 0%, #eef3ff 100%);
    padding: 60px 25px;
    text-align: center;
    max-width: 1100px;
    margin: 50px auto;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.envio-info h3 {
    font-size: 1.9rem;
    color: #003f88;
    margin-bottom: 16px;
}

.envio-icons {
    margin-top: 22px;
    font-size: 36px;
    color: #007bff;
    display: flex;
    justify-content: center;
    gap: 32px;
}

/* ============================================================
   PARA QUEM É
============================================================ */
.para-quem {
    padding: 60px 20px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.para-quem h3 {
    font-size: 1.9rem;
    color: #003f88;
    margin-bottom: 25px;
}

.para-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.para-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    color: #003f88;
    font-weight: 600;
}

/* ============================================================
   PASSOS
============================================================ */
.passos {
    padding: 60px 20px;
    text-align: center;
}

.passos h3 {
    font-size: 1.9rem;
    color: #003f88;
    margin-bottom: 25px;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.passo {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    color: #003f88;
}

.passo span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7b00;
    display: block;
    margin-bottom: 12px;
}

/* ============================================================
   FAQ
============================================================ */
.faq {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq details {
    background: #fff;
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.faq summary {
    font-weight: 600;
    font-size: 1.1rem;
    color: #003f88;
}

.faq p {
    margin-top: 10px;
    color: #555;
}

/* ============================================================
   SOBRE
============================================================ */
.sobre {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.sobre h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #007bff;
}

.sobre p {
    max-width: 840px;
    margin: 0 auto;
    line-height: 1.6;
    color: #445;
}

/* ============================================================
   RODAPÉ PROFISSIONAL – ALINHADO PERFEITAMENTE
============================================================ */
.footer-cert {
    background: linear-gradient(135deg, #003f88 0%, #005fcc 40%, #007bff 100%);
    padding: 60px 20px 40px;
    margin-top: 60px;
    color: white;
    box-shadow: 0 -4px 25px rgba(0,0,0,0.15);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    margin-bottom: 40px;
}

.logo-box {
    width: 180px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.logo-box img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.logo-box span {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.3rem;
}

.footer-copy {
    font-size: 0.95rem;
    color: #e6e6e6;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

/* ============================================================
   WHATSAPP FLUTUANTE
============================================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 18px;
    right: 18px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.whatsapp-float img {
    width: 34px;
}

/* ============================================================
   RESPONSIVIDADE GERAL
============================================================ */
@media (max-width: 1100px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .para-grid { grid-template-columns: repeat(2, 1fr); }
    .passos-grid { grid-template-columns: 1fr; }
    .depo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .cards { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .passo span { font-size: 2rem; }
}

@media (max-width: 375px) {
    html { font-size: 14px; }
}