/* ============================================
   FRENTE DE CAIXA (PDV) — STYLESHEET
   Módulo: Frente de Caixa / PDV
   ControleNaMão
   ============================================ */

:root {
    --cnm-orange: #ff9d01;
    --cnm-orange-dark: #e68a00;
    --cnm-orange-light: rgba(255,157,1,0.1);
    --dark-blue: #0f172a;
    --dark-blue-mid: #1e293b;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --green: #10b981;
    --gradient-orange: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 2px 8px rgba(15,23,42,0.08);
    --shadow-md: 0 4px 16px rgba(15,23,42,0.12);
    --shadow-lg: 0 8px 32px rgba(15,23,42,0.16);
    --shadow-xl: 0 20px 60px rgba(15,23,42,0.18);
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: 80px;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header--sm { margin-bottom: 2rem; }

.section-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-700);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    font-weight: 700;
    color: var(--cnm-orange);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    background: var(--cnm-orange-light);
    padding: 4px 12px;
    border-radius: 50px;
}

.section-tag--light { color: var(--cnm-orange); background: rgba(255,157,1,0.15); }

/* ============================================
   HERO
   ============================================ */

.hero {
    padding: 100px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -8%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,157,1,0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover { color: var(--cnm-orange); }

.hero-breadcrumb span { color: var(--cnm-orange); font-weight: 600; }

.hero-breadcrumb .material-symbols-outlined { font-size: 14px; }

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-modulo-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    font-weight: 700;
    color: var(--cnm-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--cnm-orange-light);
    border: 1px solid rgba(255,157,1,0.25);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.hero-modulo-tag .material-symbols-outlined { font-size: 16px; }

.hero-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero-title-highlight {
    color: var(--cnm-orange);
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 520px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 600;
    padding: 0 0.75rem;
}

.hero-trust-item:first-child { padding-left: 0; }

.hero-trust-item .material-symbols-outlined { font-size: 15px; color: var(--cnm-orange); }

.hero-trust-divider {
    width: 1px;
    height: 16px;
    background: var(--gray-300);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-disclaimer {
    font-size: 12.5px;
    color: var(--gray-500);
}

/* Botões */
.btn-hero-primary {
    background: var(--gradient-orange);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,157,1,0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,157,1,0.45);
    color: var(--white);
}

.btn-hero-primary.btn-lg { padding: 1.1rem 2.25rem; font-size: 16px; }

.btn-hero-secondary {
    background: transparent;
    color: var(--gray-900);
    padding: 1rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-300);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    border-color: var(--cnm-orange);
    color: var(--cnm-orange);
}

/* ============================================
   PDV MOCK VISUAL
   ============================================ */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.pdv-mock {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.pdv-mock-header {
    background: var(--dark-blue);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pdv-mock-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.pdv-mock-title .material-symbols-outlined { font-size: 18px; color: var(--cnm-orange); }

.pdv-mock-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.pdv-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
    50%       { box-shadow: 0 0 0 6px rgba(16,185,129,0.1); }
}

.pdv-mock-body {
    padding: 1.25rem;
}

.pdv-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pdv-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.85rem;
    opacity: 0;
    transform: translateX(-10px);
}

.pdv-item--enter {
    animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
}

.pdv-item-qtd {
    font-size: 12px;
    font-weight: 700;
    color: var(--cnm-orange);
    min-width: 24px;
}

.pdv-item-nome {
    flex: 1;
    font-size: 13px;
    color: var(--gray-900);
    font-weight: 500;
}

.pdv-item-preco {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
}

.pdv-total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.85rem;
    background: var(--dark-blue);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.pdv-total-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
}

.pdv-total-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--cnm-orange);
}

.pdv-payments {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pdv-payment {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 0.4rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-300);
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
    cursor: default;
    transition: all 0.2s;
}

.pdv-payment .material-symbols-outlined { font-size: 18px; }

.pdv-payment--active {
    border-color: var(--cnm-orange);
    background: var(--cnm-orange-light);
    color: var(--cnm-orange);
}

.pdv-nfe-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.pdv-nfe-badge .material-symbols-outlined { font-size: 15px; }

.pdv-sync-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    background: var(--cnm-orange-light);
    border-top: 1px solid rgba(255,157,1,0.2);
    font-size: 12px;
    color: var(--cnm-orange-dark);
    font-weight: 600;
}

.pdv-sync-bar .material-symbols-outlined { font-size: 16px; }

.pdv-sync-check { margin-left: auto; color: var(--green); font-size: 16px !important; }

/* Float cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card--fin {
    bottom: 60px;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-card--nfe {
    top: 40px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--cnm-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-card-icon .material-symbols-outlined { font-size: 20px; color: var(--cnm-orange); }
.hero-float-card-icon--green { background: rgba(16,185,129,0.1); }
.hero-float-card-icon--green .material-symbols-outlined { color: var(--green); }

.hero-float-card-label { font-size: 11px; color: var(--gray-500); font-weight: 500; }
.hero-float-card-value { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gray-900); }

/* ============================================
   BIG NUMBERS
   ============================================ */

.bignumbers {
    padding: 56px 0;
    background: var(--dark-blue);
}

.bignumbers-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.bignum-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2.75rem;
}

.bignum-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--cnm-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bignum-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    max-width: 140px;
    line-height: 1.4;
    text-align: center;
}

.bignum-divider {
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ============================================
   O QUE É — SEÇÃO DEFINITÓRIA
   ============================================ */

.o-que-e {
    padding: 90px 0;
    background: var(--white);
}

.oque-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Coluna esquerda */
.oque-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    min-width: 0;
}

.oque-content { /* apenas texto */ }

.oque-titulo {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.oque-texto {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.oque-texto strong { color: var(--gray-900); }

/* Tabela de comparação */
.oque-comparativo-wrap {
    align-self: center;
    min-width: 0;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.oque-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.oque-comp-table thead tr {
    background: var(--dark-blue);
}

.oque-th {
    padding: 1rem 1.25rem;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    vertical-align: middle;
}

.oque-th--feature {
    text-align: left;
    width: auto;
}

.oque-th--outros {
    width: 110px;
}

.oque-th--cnm {
    width: 90px;
    color: var(--cnm-orange);
    background: rgba(255,157,1,0.08);
}

.oque-comp-table tbody tr {
    border-top: 1px solid var(--gray-300);
    transition: background 0.15s;
}

.oque-comp-table tbody tr:hover {
    background: var(--gray-100);
}

.oque-td {
    padding: 0.85rem 1.25rem;
    vertical-align: middle;
}

.oque-td--feature {
    font-size: 13.5px;
    color: var(--gray-700);
    font-weight: 500;
    text-align: left;
}

.oque-td--check {
    text-align: center;
}

.oque-td--cnm {
    background: rgba(255,157,1,0.04);
}

.oque-icon--ok  { font-size: 18px; color: var(--gray-300); }
.oque-icon--no  { font-size: 18px; color: #fca5a5; }
.oque-icon--cnm { font-size: 18px; color: var(--cnm-orange); font-variation-settings: 'FILL' 1; }

/* Fluxo horizontal */
.fluxo-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 2rem 1.75rem;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
}

.fluxo-h-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    flex: 1;
}

.fluxo-h-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fluxo-h-item--1 .fluxo-h-icon { background: rgba(255,157,1,0.12); }
.fluxo-h-item--1 .fluxo-h-icon .material-symbols-outlined { color: var(--cnm-orange); font-size: 24px; }
.fluxo-h-item--2 .fluxo-h-icon { background: rgba(99,102,241,0.1); }
.fluxo-h-item--2 .fluxo-h-icon .material-symbols-outlined { color: #6366f1; font-size: 24px; }
.fluxo-h-item--3 .fluxo-h-icon { background: rgba(16,185,129,0.1); }
.fluxo-h-item--3 .fluxo-h-icon .material-symbols-outlined { color: var(--green); font-size: 24px; }
.fluxo-h-item--4 .fluxo-h-icon { background: rgba(59,130,246,0.1); }
.fluxo-h-item--4 .fluxo-h-icon .material-symbols-outlined { color: #3b82f6; font-size: 24px; }

.fluxo-h-item strong {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.fluxo-h-item span {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.35;
}

.fluxo-h-seta {
    display: flex;
    align-items: center;
    padding-top: 14px;
    flex-shrink: 0;
}

.fluxo-h-seta .material-symbols-outlined {
    font-size: 18px;
    color: var(--gray-300);
}

.fluxo-h-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    background: var(--cnm-orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    text-align: center;
}

.fluxo-h-badge .material-symbols-outlined { font-size: 17px; }

/* ============================================
   FUNCIONALIDADES
   ============================================ */

.funcionalidades {
    padding: 90px 0;
    background: var(--gray-100);
}

.func-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.func-card {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.func-card:hover {
    border-color: var(--cnm-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.func-card--destaque {
    background: var(--white);
    border-color: var(--gray-300);
    border-top: 3px solid var(--cnm-orange);
    grid-column: span 4;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    box-shadow: var(--shadow-md);
}

.func-card--destaque:hover {
    border-top-color: var(--cnm-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.func-destaque-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.func-destaque-right h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.func-destaque-right p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.func-destaque-itens {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.func-destaque-itens span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--cnm-orange-dark);
    background: var(--cnm-orange-light);
    border: 1px solid rgba(255,157,1,0.25);
    padding: 4px 10px;
    border-radius: 50px;
}

.func-destaque-itens span .material-symbols-outlined {
    font-size: 14px;
    color: var(--cnm-orange);
}

.func-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--cnm-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.func-card-icon .material-symbols-outlined { font-size: 22px; color: var(--cnm-orange); }

.func-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.func-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.65;
    margin: 0;
}

.func-card--destaque .func-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--cnm-orange-light);
    margin-bottom: 0;
}

.func-card--destaque .func-card-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--cnm-orange);
}

.func-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--cnm-orange);
    background: var(--cnm-orange-light);
    border: 1px solid rgba(255,157,1,0.3);
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Cards de módulos adicionais */
.func-card--addon {
    border-style: dashed;
    background: var(--white);
}

.func-card-addon-tag {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

/* ============================================
   DIFERENCIAL PDV + FINANCEIRO
   ============================================ */

.diferencial-pdv {
    padding: 90px 0;
    background: var(--white);
}

.dif-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.dif-content h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.dif-content p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.dif-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.75rem 0 2rem;
}

.dif-lista li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 15px;
    line-height: 1.5;
}

.dif-lista li .material-symbols-outlined {
    font-size: 20px;
    color: var(--cnm-orange);
    flex-shrink: 0;
    margin-top: 1px;
}

.dif-lista li strong {
    display: block;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.15rem;
}

.dif-lista li span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Imagem diferencial — com contorno e sombra (fundo transparente) */
.dif-visual {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    padding: 0;
}

.dif-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Imagem integrações — sem wrapper, sem sombra */
.integ-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}


/* DRE Mock — mantido para uso futuro se necessário */
    background: var(--dark-blue);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-xl);
}

.dre-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dre-mock-titulo {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.dre-mock-live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.dre-linha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
}

.dre-linha-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.dre-linha--receita .dre-linha-label,
.dre-linha--receita-liq .dre-linha-label { color: rgba(255,255,255,0.85); font-weight: 600; }

.dre-linha-valor {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

.dre-linha-valor--pos { color: rgba(255,255,255,0.85); }

.dre-linha-valor--destaque {
    font-size: 18px;
    color: var(--cnm-orange) !important;
}

.dre-divisor {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 0.5rem 0;
}

.dre-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

.dre-footer .material-symbols-outlined { font-size: 15px; color: var(--cnm-orange); }

/* ============================================
   COMO FUNCIONA — STEPS
   ============================================ */

.como-funciona {
    padding: 90px 0;
    background: var(--gray-100);
}

.steps-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.step-item {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all 0.3s;
    height: 100%;
}

.step-item:hover {
    border-color: var(--cnm-orange);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--cnm-orange);
    line-height: 1;
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.65;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
}

.step-arrow .material-symbols-outlined {
    font-size: 24px;
    color: var(--cnm-orange);
    opacity: 0.5;
}

/* ============================================
   INTEGRAÇÕES
   ============================================ */

.integracoes {
    padding: 90px 0;
    background: var(--white);
}

.integ-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.integ-wrapper h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.integ-wrapper > .integ-content > p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.integ-grupo {
    margin-bottom: 1.5rem;
}

.integ-grupo-titulo {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.integ-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.integ-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1.5px solid var(--gray-300);
    padding: 4px 12px;
    border-radius: 50px;
    transition: all 0.2s;
}

.integ-tag:hover {
    border-color: var(--cnm-orange);
    color: var(--cnm-orange);
    background: var(--cnm-orange-light);
}

.integ-tag--pix {
    background: rgba(32,201,151,0.1);
    border-color: rgba(32,201,151,0.4);
    color: #0d9488;
}

/* Plataforma card */
.integ-plataforma-card {
    background: var(--dark-blue);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.integ-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.integ-card-header .material-symbols-outlined { color: var(--cnm-orange); font-size: 22px; }

.integ-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.integ-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 0.85rem 0.5rem;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    transition: all 0.2s;
}

.integ-platform:hover {
    background: rgba(255,157,1,0.1);
    border-color: rgba(255,157,1,0.3);
}

.integ-platform .material-symbols-outlined { font-size: 22px; color: var(--cnm-orange); }

.integ-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   CTA CENTRAL
   ============================================ */

.cta-central {
    padding: 100px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-central-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,157,1,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.cta-central-wrapper {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-central-wrapper h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-central-wrapper h2 span { color: var(--cnm-orange); }

.cta-central-wrapper p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-central-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #22c55e;
    color: var(--white);
    padding: 1rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(34,197,94,0.3);
}

.btn-wpp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34,197,94,0.4);
    color: var(--white);
    background: #16a34a;
}

.cta-central-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-central-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

.cta-central-trust .material-symbols-outlined {
    font-size: 15px;
    color: var(--cnm-orange);
}

/* ============================================
   PLANOS
   ============================================ */

.planos {
    padding: 90px 0;
    background: var(--gray-100);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.plano-card {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    transition: all 0.3s;
    position: relative;
}

.plano-card:hover {
    border-color: var(--cnm-orange);
    box-shadow: var(--shadow-lg);
}

.plano-card--destaque {
    background: var(--dark-blue);
    border-color: var(--cnm-orange);
    box-shadow: 0 12px 40px rgba(255,157,1,0.2);
}

.plano-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.plano-nome {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.plano-card--destaque .plano-nome { color: rgba(255,255,255,0.55); }

.plano-preco {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.plano-preco-cents {
    font-size: 22px;
}

.plano-card--destaque .plano-preco { color: var(--cnm-orange); }

.plano-preco-suffix {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
}

.plano-card--destaque .plano-preco-suffix { color: rgba(255,255,255,0.45); }

.plano-usuarios {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-300);
}

.plano-card--destaque .plano-usuarios {
    color: rgba(255,255,255,0.45);
    border-color: rgba(255,255,255,0.1);
}

.plano-itens {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.plano-itens li {
    font-size: 13px;
    color: var(--gray-700);
    padding-left: 1.3rem;
    position: relative;
    line-height: 1.5;
}

.plano-card--destaque .plano-itens li { color: rgba(255,255,255,0.8); }

.plano-itens li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cnm-orange);
    font-weight: 700;
    font-size: 12px;
}

.plano-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.plano-btn--outline {
    border: 2px solid var(--gray-300);
    color: var(--gray-900);
    background: transparent;
}

.plano-btn--outline:hover {
    border-color: var(--cnm-orange);
    color: var(--cnm-orange);
}

.plano-btn--primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255,157,1,0.3);
}

.plano-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255,157,1,0.4);
    color: var(--white);
}

.planos-obs {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1.75rem;
    font-size: 14px;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.25rem;
}

.planos-obs .material-symbols-outlined {
    font-size: 18px;
    color: var(--cnm-orange);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   FORMULÁRIO
   ============================================ */

.form-section {
    padding: 90px 0;
    background: var(--white);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.form-content h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-content h2 span { color: var(--cnm-orange); }

.form-content-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.form-content p {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.form-beneficios {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-beneficios li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.form-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cnm-orange);
    font-weight: 700;
}

.form-box {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-300);
}

.form-box-titulo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
}

.form-box-subtitulo {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 1.75rem;
}

.form-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-300);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus {
    border-color: var(--cnm-orange);
    box-shadow: 0 0 0 3px rgba(255,157,1,0.1);
}

.form-group input::placeholder { color: var(--gray-500); }

.btn-submit {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,157,1,0.3);
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,157,1,0.45);
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ============================================
   OUTROS MÓDULOS
   ============================================ */

.outros-modulos {
    padding: 64px 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
}

.modulos-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.modulo-mini-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.25s;
}

.modulo-mini-card:hover,
.modulo-mini-card--ver-todos {
    border-color: var(--cnm-orange);
    color: var(--cnm-orange);
}

.modulo-mini-card .material-symbols-outlined { font-size: 18px; }

/* ============================================
   FAQ
   ============================================ */

.container__faq {
    max-width: 860px;
    margin: 0 auto;
    padding: 90px 1.5rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.container__faq-titulo {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.container__faq-subtitulo {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 3.5rem;
}

.faq-item {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.active {
    border-color: var(--cnm-orange);
    box-shadow: 0 4px 20px rgba(255,157,1,0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.35rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    cursor: pointer;
    text-align: left;
}

.faq-question-text {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--cnm-orange);
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,157,1,0.08);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(255,157,1,0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 600px; }

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9625rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0;
}

.faq-answer p strong { color: var(--gray-900); }

.faq-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1e2d45 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    text-align: center;
}

.faq-cta-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,157,1,0.3);
}

.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,157,1,0.4);
    color: var(--white);
}

.faq-cta-secondary {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

/* CTA Btn usado em outras seções */
.cta-btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,157,1,0.3);
    border: none;
    cursor: pointer;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,157,1,0.45);
    color: var(--white);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-buttons {
    bottom: 90px;
    display: flex;
    flex-direction: column-reverse;
    position: fixed;
    right: 0;
    z-index: 9999;
}

.whatsapp { background: #27d045; }

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #000;
    z-index: 1000;
    cursor: pointer;
    padding: 10px;
    margin: 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s;
    text-decoration: none;
}

.floating-button img { width: 100%; height: auto; max-width: 35px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Navbar scroll */
.navbar.scrolled {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(8px);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1200px) {
    .func-grid { grid-template-columns: repeat(3, 1fr); }
    .func-card--destaque { grid-column: span 3; }
    .planos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .hero-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { display: none; }
    .hero-title { font-size: 36px; }
    .oque-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .oque-comparativo-wrap { position: static; }
    .fluxo-horizontal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .fluxo-h-seta { display: none; }
    .fluxo-h-item { flex: 0 0 calc(50% - 0.5rem); }
    .dif-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .integ-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .form-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .steps-wrapper { grid-template-columns: 1fr; gap: 1rem; }
    .step-arrow { transform: rotate(90deg); }
    .func-grid { grid-template-columns: repeat(2, 1fr); }
    .func-card--destaque { grid-column: span 2; grid-template-columns: auto 1fr; }
    .section-header h2 { font-size: 30px; }
    .cta-central-wrapper h2 { font-size: 34px; }
}

@media (max-width: 768px) {
    body { padding-top: 70px; }
    .hero { padding: 60px 0 50px; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .bignumbers-grid { flex-direction: column; }
    .bignum-divider { width: 100%; height: 1px; }
    .bignum-item { padding: 1.5rem 2rem; }
    .bignum-value { font-size: 40px; }
    .oque-comparativo { grid-template-columns: 1fr; }
    .fluxo-h-item { flex: 0 0 100%; }
    .fluxo-horizontal { padding: 1.5rem 1.25rem; }
    .func-grid { grid-template-columns: 1fr; }
    .func-card--destaque { grid-column: span 1; grid-template-columns: 1fr; }
    .func-destaque-left { flex-direction: row; align-items: center; gap: 0.75rem; }
    .planos-grid { grid-template-columns: 1fr; }
    .faq-header { margin-bottom: 2rem; }
    .container__faq-titulo { font-size: 1.75rem; }
    .faq-question { padding: 1.25rem; }
    .faq-question-text { font-size: 0.95rem; }
    .faq-cta { padding: 2rem 1.5rem; }
    .modulos-mini-grid { gap: 0.5rem; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 16px; }
    .oque-titulo { font-size: 28px; }
    .dif-content h2 { font-size: 28px; }
    .integ-wrapper > h2 { font-size: 28px; }
    .cta-central-wrapper h2 { font-size: 28px; }
    .cta-central-buttons { flex-direction: column; align-items: center; }
    .btn-hero-primary.btn-lg, .btn-wpp { width: 100%; justify-content: center; }
    .cta-central-trust { flex-direction: column; align-items: center; gap: 0.5rem; }
    .form-box { padding: 1.75rem 1.5rem; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .hero-trust-divider { display: none; }
    .hero-trust-item { padding-left: 0; }
}

@media (max-width: 480px) {
    .hero { padding: 48px 0 40px; }
    .hero-title { font-size: 26px; }
    .bignumbers { padding: 40px 0; }
    .o-que-e, .funcionalidades, .diferencial-pdv, .como-funciona, .integracoes, .form-section, .outros-modulos, .planos { padding: 56px 0; }
    .cta-central { padding: 56px 0; }
    .container__faq { padding: 56px 1rem; }
}

/* ============================================
   OTIMIZAÇÃO PAGE SPEED: prefers-reduced-motion
   Desativa animações CSS para usuários que
   solicitaram menos movimento no sistema.
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   COOKIE BANNER (CNM STYLE)
   ============================================ */

#cnm-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
  height: 167px;
  flex-shrink: 0;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 20px 45px;
  display: flex;
  flex-direction: column;
  z-index: 999999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#cnm-cookie-banner h3 {
  width: 1050px;
  height: 17px;
  flex-shrink: 0;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto 10px auto;
}

.cnm-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
}

.cnm-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

#cnm-cookie-banner p {
  width: 719px;
  height: 54px;
  color: rgba(0, 0, 0, 0.56);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto;
}

#cnm-cookie-banner p a {
  color: #316CF4;
  text-decoration: none;
}

#cnm-cookie-banner p a:hover {
  text-decoration: underline;
}

.cnm-cookie-options {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  width: 719px;
}

.cnm-check {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  min-width: fit-content;
}

.cnm-check.necessary { color: rgba(0, 0, 0, 0.40); }
.cnm-check:not(.necessary) { color: rgba(0, 0, 0, 0.56); }

.cnm-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 17px;
  height: 17px;
  border: 2px solid #EABE6D;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

.cnm-check input[type="checkbox"]:checked {
  background: #EABE6D;
  border-color: #EABE6D;
}

.cnm-check input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cnm-check.necessary input[type="checkbox"]:disabled {
  cursor: not-allowed;
  border-color: rgba(224, 153, 19, 0.30);
  background: rgba(224, 153, 19, 0.30);
  opacity: 1;
}

.cnm-check.necessary input[type="checkbox"]:disabled::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cnm-buttons {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}

.cnm-buttons-top {
  display: flex;
  gap: 14px;
}

.cnm-btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.cnm-btn:hover { opacity: 0.9; }

.cnm-btn.reject-all {
  width: 138px;
  height: 33px;
  background: #D9D9D9B2;
  color: rgba(0, 0, 0, 0.70);
  font-size: 16px;
  font-weight: 400;
}

.cnm-btn.accept-all {
  width: 138px;
  height: 33px;
  background: rgba(224, 153, 19, 0.61);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

.cnm-btn.accept-selection {
  width: 290px;
  height: 40px;
  background: #0000009C;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 1200px) {
  #cnm-cookie-banner {
    position: fixed !important;
    bottom: 20px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 40px);
    max-width: 450px;
    height: auto;
    padding: 16px 18px;
    margin: 0 !important;
  }
  #cnm-cookie-banner h3 { width: 100%; font-size: 14px; margin-bottom: 8px; }
  .cnm-content-wrapper { flex-direction: column; gap: 12px; }
  .cnm-left { width: 100%; gap: 8px; }
  #cnm-cookie-banner p { width: 100%; height: auto; font-size: 11px; line-height: 1.4; }
  .cnm-cookie-options { flex-wrap: nowrap; justify-content: flex-start; width: 100%; gap: 8px; overflow-x: auto; padding: 4px 0; }
  .cnm-check { gap: 4px; font-size: 10px; white-space: nowrap; }
  .cnm-check input[type="checkbox"] { width: 14px; height: 14px; border-width: 1.5px; }
  .cnm-check input[type="checkbox"]:checked::before,
  .cnm-check.necessary input[type="checkbox"]:disabled::before { left: 3px; top: 0px; width: 3px; height: 7px; border-width: 0 1.5px 1.5px 0; }
  .cnm-buttons { width: 100%; align-items: stretch; gap: 8px; }
  .cnm-buttons-top { width: 100%; justify-content: space-between; gap: 8px; }
  .cnm-btn.reject-all, .cnm-btn.accept-all { flex: 1; height: 36px; font-size: 12px; border-radius: 6px; }
  .cnm-btn.accept-selection { width: 100%; height: 38px; font-size: 12px; border-radius: 6px; }
}

@media (max-width: 480px) {
  #cnm-cookie-banner { position: fixed !important; bottom: 15px !important; top: auto !important; left: 50% !important; right: auto !important; transform: translateX(-50%) !important; width: calc(100% - 30px); padding: 14px 16px; margin: 0 !important; }
  #cnm-cookie-banner h3 { font-size: 13px; }
  #cnm-cookie-banner p { font-size: 10px; }
  .cnm-check { font-size: 9px; }
  .cnm-btn.reject-all, .cnm-btn.accept-all { font-size: 11px; height: 34px; }
  .cnm-btn.accept-selection { font-size: 11px; height: 36px; }
}