/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue-700: #1a4cd6;
    --blue-900: #0b2e6f;
    --blue-600: #2a63f0;
    --blue-50: #eef3ff;        
    --green: #22c55e;
    --green-light: #86efac;    
    --text: #0f172a;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --radius: 14px;            
    --shadow: 0 10px 30px -12px rgba(15,23,42,.15);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
}

.logo-mark { color: var(--blue-700); }
.logo-mark.accent { color: var(--green); }

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn-primary, .btn-primary2, .btn-light, .btn-outline, .btn-outline-dark, .btn-ghost {
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background: var(--blue-700);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--blue-900);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}

.btn-outline-dark {
    background: transparent;
    color: var(--blue-700);
    border: 1.5px solid var(--blue-700);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.hero {
    background: linear-gradient(160deg, #1a4cd6 0%, #0b2e6f 100%);
    color: #fff;
    padding: 72px 0 100px;
}

.hero-inner {
    text-align: center;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight {
    color: #86efac;
}

.lead {
    font-size: clamp(16px, 1.6vw, 19px);
    max-width: 640px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,.85);
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.chips {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.chip {
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 13px;
}

.hero-checks {
    display: flex;
    gap: 24px;
    justify-content: center;
    list-style: none;
    color: rgba(255,255,255,.85);
}

.dashboard-mock {
    margin-top: 56px;
}

.dashboard-mock img {
    width: 100%;
    max-width: 920px;
    border-radius: 20px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.45);
}

.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.eyebrow {
    color: var(--blue-700);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 14px;
}

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

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    transition: all .2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -12px rgba(15,23,42,.15);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
}

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

.plan {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 34px;
    position: relative;
}

.plan h3 {
    font-size: 22px;
    font-weight: 800;
}

.price {
    margin: 20px 0;
}

.amount {
    font-size: 36px;
    font-weight: 800;
}

.plan.featured {
    border-color: var(--blue-700);
    box-shadow: 0 25px 60px -25px rgba(26,76,214,.45);
}

.ribbon {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--blue-700);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
}

.footer {
    background: #0b1220;
    color: #cbd5e1;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 14px;
}

.footer ul {
    list-style: none;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer a:hover { color: #fff; }

.muted {
    color: #94a3b8;
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
}

@media (max-width: 960px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .plans {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .nav-links.open, .nav-actions.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu {
        flex-direction: column;
        gap: 14px;
    }
    .menu-toggle {
        display: flex;
    }
    .cards-grid, .plans {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 48px 0 60px;
    }
}
/* ========== ESTILOS QUE FALTAVAM ========== */

/* Cards de funcionalidades */
.card.feature .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

/* Planos - versão completa */
.plan {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.amount {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cycle {
    color: var(--muted);
    font-size: 14px;
}

.plan ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
    list-style: none;
}

.plan li {
    font-size: 14.5px;
    color: #334155;
}

.plan.featured {
    border-color: var(--blue-700);
    box-shadow: 0 25px 60px -25px rgba(26,76,214,.45);
}

.plan.featured2 {
    border-color: var(--green);
    box-shadow: 0 25px 60px -25px rgba(26,76,214,.45);
}

.ribbon {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--blue-700);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.ribbon2 {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--green);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
    color: var(--muted);
    font-size: 14px;
    list-style: none;
}

/* Botões de certificado */
.btn-primaryecpf,
.btn-primaryecnpj {
    display: inline-table;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 15px;
    margin-left: 1.4%;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    cursor: pointer;
    border: 0;
    text-decoration: none;
}

.btn-primaryecpf {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(26,76,214,.55);
}

.btn-primaryecnpj {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(26,76,214,.55);
}

.btn-primaryecpf:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

.btn-primaryecnpj:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

.cert-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

/* Testimonials */
.testimonial {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial p {
    color: #334155;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.author small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(160deg, #1a4cd6, #0b2e6f);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final p {
    color: rgba(255,255,255,.85);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 17px;
}

.cta-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
}

/* Grid 4 colunas */
.cards-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsivo para grid-4 */
@media (max-width: 960px) {
    .cards-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .cards-grid.grid-4 {
        grid-template-columns: 1fr;
    }
    
    .cert-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primaryecpf,
    .btn-primaryecnpj {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
	/* ========== CONTROLE DE TAMANHO DA LOGO ========== */
.logo-img {
    max-width: 200px !important;
    height: auto !important;
    max-height: 50px !important;
}

/* Para telas menores (celular) */
@media (max-width: 720px) {
    .logo-img {
        max-height: 35px !important;
    }
}
	/* ===== PLANOS RESPONSIVOS ===== */

/* Container dos planos */
.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 960px) {
    .plans {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
}

/* Celular */
@media (max-width: 720px) {
    .plans {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    
    .plan {
        padding: 20px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .plan .ribbon,
    .plan .ribbon2 {
        font-size: 10px !important;
        padding: 3px 10px !important;
        top: -10px !important;
        right: 10px !important;
    }
    
    .plan h3 {
        font-size: 18px !important;
    }
    
    .plan .amount {
        font-size: 24px !important;
    }
    
    .plan ul li {
        font-size: 13px !important;
    }
    
    .cert-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .cert-buttons a {
        width: 100% !important;
        text-align: center !important;
        margin: 2px 0 !important;
    }
    
    .btn-primary,
    .btn-primary2,
    .btn-outline-dark {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* Celular muito pequeno */
@media (max-width: 480px) {
    .plan {
        padding: 16px !important;
        max-width: 100% !important;
    }
    
    .plan h3 {
        font-size: 16px !important;
    }
    
    .plan .amount {
        font-size: 20px !important;
    }
    
    .plan ul li {
        font-size: 12px !important;
    }
    
    .plan .plan-sub {
        font-size: 11px !important;
    }
}
/* ===== ÍCONES PROFISSIONAIS ===== */

/* Ícones dos cards */
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 24px;
    color: var(--blue-700);
    transition: all 0.3s ease;
}

/* Efeito hover nos ícones */
.card:hover .card-icon {
    background: var(--blue-700);
    transform: scale(1.05);
}

.card:hover .card-icon i {
    color: #fff;
}

/* Ícones das funcionalidades (já existentes) */
.card.feature .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.card.feature .icon i {
    font-size: 26px;
    color: var(--blue-700);
    transition: all 0.3s ease;
}

.card.feature:hover .icon {
    background: var(--blue-700);
    transform: scale(1.05);
}

.card.feature:hover .icon i {
    color: #fff;
}

/* Ícones do hero */
.hero-checks i {
    font-size: 18px;
}

/* Responsivo */
@media (max-width: 720px) {
    .card-icon,
    .card.feature .icon {
        width: 48px;
        height: 48px;
    }
    
    .card-icon i,
    .card.feature .icon i {
        font-size: 20px;
    }
	/* ===== MOCKUP FLUTUANTE ===== */

.dashboard-mock {
    margin: 0 auto;
    margin-top: 56px;
    width: 100%;
    max-width: 920px;
    text-align: center;
}

.dashboard-mock img {
    width: 100%;
    max-width: 920px;
    height: auto;
    display: block;
    border-radius: 20px;
    border: none !important;
    outline: none !important;
    margin: 0 auto;
    box-shadow: none !important;
    background: transparent !important;
    animation: floatMockup 5s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.dashboard-mock img:hover {
    transform: translateY(-6px) scale(1.01);
}

@keyframes floatMockup {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===== CORREÇÃO MENU MOBILE ===== */

/* Mostra o botão hambúrguer apenas no mobile */
.menu-toggle {
    display: none !important;
    background: none !important;
    border: none !important;
    flex-direction: column !important;
    gap: 5px !important;
    cursor: pointer !important;
    padding: 10px !important;
    z-index: 100 !important;
}

.menu-toggle span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    background: #0f172a !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
}

/* MOBILE - Tela menor que 720px */
@media (max-width: 720px) {
    
    /* Esconde o menu desktop */
    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 72px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        padding: 20px 24px !important;
        border-bottom: 1px solid #e2e8f0 !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        flex-direction: column !important;
        gap: 14px !important;
        z-index: 999 !important;
    }
    
    /* Mostra o menu quando tem a classe 'open' */
    .nav-links.open {
        display: flex !important;
    }
    
    /* Esconde os botões de ação no mobile */
    .nav-actions {
        display: none !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        padding-top: 14px !important;
        border-top: 1px solid #e2e8f0 !important;
        margin-top: 10px !important;
    }
    
    /* Mostra os botões quando tem a classe 'open' */
    .nav-actions.open {
        display: flex !important;
    }
    
    /* Menu do WordPress em coluna */
    .nav-menu {
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
    }
    
    .nav-menu a {
        font-size: 16px !important;
        padding: 8px 0 !important;
        display: block !important;
    }
    
    /* Botões de ação ocupam 100% */
    .nav-actions a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Mostra o botão hambúrguer */
    .menu-toggle {
        display: flex !important;
    }
}

/* ===== CORREÇÃO: Botões Certificados ===== */
.cert-buttons {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.cert-buttons .btn-primaryecpf,
.cert-buttons .btn-primaryecnpj {
    display: inline-block !important;
    padding: 10px 25px !important;
    border-radius: 9px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    background: var(--green) !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px -8px rgba(26,76,214,.55) !important;
    transition: all .15s ease !important;
    border: 0 !important;
    cursor: pointer !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 80px !important;
    text-align: center !important;
}

.cert-buttons .btn-primaryecpf:hover,
.cert-buttons .btn-primaryecnpj:hover {
    background: var(--green-light) !important;
    transform: translateY(-1px) !important;
}

/* Força os botões a ficarem em linha */
.plan .cert-buttons {
    display: flex !important;
    flex-direction: row !important;
}

/* Responsivo: Em telas pequenas, vão para coluna */
@media (max-width: 720px) {
    .cert-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .cert-buttons .btn-primaryecpf,
    .cert-buttons .btn-primaryecnpj {
        width: 100% !important;
        text-align: center !important;
        margin-left: 0 !important;
    }
}
	