/* ============================================
   DELIVERY — STYLESHEET
   Módulo: Sistema de Delivery / Hub de Pedidos
   ControleNaMão
   v1.0
   ============================================ */

: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;
    --ifood-red: #ea1d2c;
    --food99-yellow: #f5a623;
    --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); }

.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); }

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    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;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,157,1,0.3);
    white-space: nowrap;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,157,1,0.45);
    color: var(--white);
}

/* ============================================
   MOCK VISUAL — KANBAN DE DELIVERY
   ============================================ */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.kanban-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: 460px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.kanban-mock-header {
    background: var(--dark-blue);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kanban-mock-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.kanban-mock-title .material-symbols-outlined { font-size: 18px; color: var(--cnm-orange); }

.kanban-mock-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.kanban-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); }
}

/* Corpo kanban — 3 colunas */
.kanban-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0.75rem;
    gap: 0.5rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
}

.kanban-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.kanban-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0 0.25rem;
    margin-bottom: 0.2rem;
}

.kanban-col-count {
    background: var(--gray-300);
    color: var(--gray-700);
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 50px;
}

.kanban-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.65rem;
    border: 1.5px solid var(--gray-300);
    opacity: 0;
    transform: translateY(6px);
}

.kanban-card--enter { animation: cardUp 0.35s ease forwards; }

@keyframes cardUp {
    to { opacity: 1; transform: translateY(0); }
}

.kanban-card--ifood   { border-left: 3px solid var(--ifood-red); }
.kanban-card--99food  { border-left: 3px solid var(--food99-yellow); }
.kanban-card--proprio { border-left: 3px solid var(--cnm-orange); }

.kanban-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.kanban-source {
    font-size: 9px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.kanban-source--ifood   { background: rgba(234,29,44,0.1);  color: var(--ifood-red); }
.kanban-source--99food  { background: rgba(245,166,35,0.1);  color: #b57a00; }
.kanban-source--proprio { background: var(--cnm-orange-light); color: var(--cnm-orange-dark); }

.kanban-order {
    font-size: 9px;
    color: var(--gray-500);
    font-family: monospace;
    font-weight: 600;
}

.kanban-card-item {
    font-size: 10.5px;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kanban-card-value {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-900);
}

/* Sync bar */
.kanban-sync-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    background: var(--cnm-orange-light);
    border-top: 1px solid rgba(255,157,1,0.2);
    font-size: 11.5px;
    color: var(--cnm-orange-dark);
    font-weight: 600;
}

.kanban-sync-bar .material-symbols-outlined { font-size: 15px; }
.kanban-sync-check { margin-left: auto; color: var(--green); font-size: 15px !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--pedidos { bottom: 55px; left: -40px; animation-delay: 0s; }
.hero-float-card--ifood   { top: 35px;    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;
}

.oque-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    min-width: 0;
}

.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); }

/* Checklist simples (substitui a tabela comparativa) */
.oque-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.oque-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.4;
}

.oque-checklist li .material-symbols-outlined {
    font-size: 20px;
    color: var(--green);
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1;
}

.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; }
.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(16,185,129,0.1); }
.fluxo-h-item--2 .fluxo-h-icon .material-symbols-outlined { color: var(--green); font-size: 24px; }
.fluxo-h-item--3 .fluxo-h-icon { background: rgba(99,102,241,0.1); }
.fluxo-h-item--3 .fluxo-h-icon .material-symbols-outlined { color: #6366f1; 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--5 .fluxo-h-icon { background: rgba(239,68,68,0.08); }
.fluxo-h-item--5 .fluxo-h-icon .material-symbols-outlined { color: #ef4444; font-size: 24px; }

.fluxo-h-item strong {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.fluxo-h-item span { font-size: 11px; 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: 16px; color: var(--gray-300); }

/* ============================================
   CANAIS — 3 CARDS (iFood, 99Food, Próprio)
   ============================================ */

.canais-section {
    padding: 90px 0;
    background: var(--gray-100);
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.canal-card {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.4rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.canal-card:hover {
    border-color: var(--cnm-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.canal-card--principal {
    border-top: 3px solid var(--cnm-orange);
    box-shadow: var(--shadow-md);
}

.canal-card-img {
    width: calc(100% + 2.8rem);
    height: 120px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: -1.75rem -1.4rem 1.5rem -1.4rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.canal-card-sigla {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.canal-card-nome {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 1rem;
}

.canal-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.canal-card p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.canal-usos {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.canal-usos li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.4;
}

.canal-usos li .material-symbols-outlined {
    font-size: 15px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
    font-variation-settings: 'FILL' 1;
}

.canal-aviso {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 12px;
    color: var(--gray-500);
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.85rem;
    line-height: 1.5;
}

.canal-aviso .material-symbols-outlined { font-size: 15px; color: var(--cnm-orange); flex-shrink: 0; }

/* ============================================
   FUNCIONALIDADES
   ============================================ */

.funcionalidades {
    padding: 90px 0;
    background: var(--white);
}

.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: 1.75rem;
}

.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; margin-bottom: 0; }
.func-card--destaque .func-card-icon .material-symbols-outlined { font-size: 26px; }

.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;
}

.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;
}

/* ============================================
   NOVIDADES — SEÇÃO DESTAQUE (DARK)
   ============================================ */

.novidades-section {
    padding: 90px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.novidades-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,157,1,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.novidades-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.novidades-content .section-tag { background: rgba(255,157,1,0.15); color: var(--cnm-orange); }

.novidades-content h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.novidades-content h2 span { color: var(--cnm-orange); }

.novidades-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.novidades-visual { position: relative; z-index: 1; }

.novidades-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* 4 itens horizontais */
.novidades-itens {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.novidades-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.75rem 1.5rem;
    background: rgba(255,255,255,0.03);
    transition: background 0.2s;
}

.novidades-item:hover { background: rgba(255,157,1,0.07); }

.novidades-item-icon {
    font-size: 22px;
    color: var(--cnm-orange);
    margin-bottom: 0.25rem;
}

.novidades-item strong {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.novidades-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ============================================
   DIFERENCIAL — DELIVERY
   ============================================ */

.diferencial-delivery {
    padding: 90px 0;
    background: var(--white);
}

.dif-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    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.75;
    margin-bottom: 2rem;
}

.dif-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.dif-lista li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.dif-lista li > .material-symbols-outlined {
    font-size: 22px;
    color: var(--cnm-orange);
    flex-shrink: 0;
    margin-top: 2px;
    font-variation-settings: 'FILL' 1;
}

.dif-lista li div { display: flex; flex-direction: column; gap: 0.2rem; }

.dif-lista li strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.dif-lista li span { font-size: 13.5px; color: var(--gray-700); line-height: 1.55; }

/* Visual: fluxo de canais */
.dif-visual { align-self: center; }

.dif-fluxo {
    background: var(--dark-blue);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-xl);
}

.dif-fluxo-titulo {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.dif-fluxo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    margin-bottom: 0.6rem;
    transition: all 0.2s;
}

.dif-fluxo-item:last-of-type { margin-bottom: 0; }
.dif-fluxo-item:hover { background: rgba(255,157,1,0.08); border-color: rgba(255,157,1,0.3); }

.dif-fluxo-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.dif-fluxo-item--ifood   .dif-fluxo-icon { background: rgba(234,29,44,0.2); }
.dif-fluxo-item--ifood   .dif-fluxo-icon .material-symbols-outlined { color: #ff6b6b; font-size: 18px; }
.dif-fluxo-item--99food  .dif-fluxo-icon { background: rgba(245,166,35,0.2); }
.dif-fluxo-item--99food  .dif-fluxo-icon .material-symbols-outlined { color: var(--food99-yellow); font-size: 18px; }
.dif-fluxo-item--proprio .dif-fluxo-icon { background: rgba(255,157,1,0.15); }
.dif-fluxo-item--proprio .dif-fluxo-icon .material-symbols-outlined { color: var(--cnm-orange); font-size: 18px; }
.dif-fluxo-item--vina    .dif-fluxo-icon { background: rgba(16,185,129,0.15); }
.dif-fluxo-item--vina    .dif-fluxo-icon .material-symbols-outlined { color: var(--green); font-size: 18px; }

.dif-fluxo-texto { flex: 1; min-width: 0; }

.dif-fluxo-texto strong {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.1rem;
}

.dif-fluxo-texto span { font-size: 12px; color: rgba(255,255,255,0.5); }

.dif-fluxo-check { margin-left: auto; flex-shrink: 0; }
.dif-fluxo-check .material-symbols-outlined { font-size: 18px; color: var(--green); font-variation-settings: 'FILL' 1; }

.dif-fluxo-destino {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.85rem;
    background: var(--cnm-orange-light);
    border: 1.5px solid rgba(255,157,1,0.35);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--cnm-orange);
}

.dif-fluxo-destino .material-symbols-outlined { font-size: 20px; color: var(--cnm-orange); }

/* ============================================
   COMO COMEÇAR — PASSO A PASSO
   ============================================ */

.como-funciona {
    padding: 90px 0;
    background: var(--gray-100);
}

.steps-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.step-item {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    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: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p { font-size: 13px; color: var(--gray-700); line-height: 1.65; margin: 0; }

.step-arrow { display: flex; align-items: center; justify-content: center; padding: 0 0.5rem; padding-top: 1.75rem; }
.step-arrow .material-symbols-outlined { font-size: 22px; color: var(--cnm-orange); opacity: 0.5; }

/* ============================================
   INTEGRAÇÕES E COMPATIBILIDADE
   ============================================ */

.integracoes {
    padding: 90px 0;
    background: var(--gray-100);
}

.integ-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.integ-content h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.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(--white);
    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-visual-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
    align-self: center;
}

/* ============================================
   CTA CENTRAL
   ============================================ */

.cta-central {
    padding: 56px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.cta-central-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-central-left h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.cta-central-left h2 span { color: var(--cnm-orange); }

.cta-central-left p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.cta-central-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cta-central-right .cta-central-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
}

.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);
    white-space: nowrap;
}

.btn-wpp .wpp-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wpp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.4); color: var(--white); background: #16a34a; }

/* ============================================
   PLANOS
   ============================================ */

.planos { padding: 90px 0; background: var(--white); }

.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-delivery-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 11px;
    font-weight: 700;
    color: var(--cnm-orange);
    background: rgba(255,157,1,0.12);
    border: 1px solid rgba(255,157,1,0.3);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.plano-delivery-tag .material-symbols-outlined { font-size: 14px; }

.plano-itens {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.plano-itens li {
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.plano-itens li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.plano-card--destaque .plano-itens li { color: rgba(255,255,255,0.75); }
.plano-card--destaque .plano-itens li::before { color: var(--cnm-orange); }

.plano-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.plano-btn--outline {
    border-color: var(--gray-300);
    color: var(--gray-700);
    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(-2px);
    box-shadow: 0 8px 20px rgba(255,157,1,0.4);
    color: var(--white);
}

.planos-obs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
    font-size: 13.5px;
    color: var(--gray-500);
}

.planos-obs .material-symbols-outlined { font-size: 16px; color: var(--cnm-orange); }

/* ============================================
   FORMULÁRIO DE LEAD
   ============================================ */

.form-section {
    padding: 90px 0;
    background: var(--white);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content .section-tag { display: block; width: fit-content; margin-bottom: 0.85rem; }

.form-content h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.form-content h2 span { color: var(--cnm-orange); }

.form-content-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    object-fit: cover;
}

.form-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.form-beneficios {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-beneficios li {
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-beneficios li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.form-box {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-md);
}

.form-box-titulo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.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.75rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus { border-color: var(--cnm-orange); }
.form-group input::placeholder { color: var(--gray-500); }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    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);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,157,1,0.45);
}

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-submit .material-symbols-outlined { font-size: 20px; }

.form-disclaimer {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.25rem;
}

/* ============================================
   OUTROS MÓDULOS
   ============================================ */

.outros-modulos {
    padding: 64px 0;
    background: var(--gray-100);
}

.modulos-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.modulo-mini-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.25s;
}

.modulo-mini-card:hover {
    border-color: var(--cnm-orange);
    color: var(--cnm-orange);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.modulo-mini-card .material-symbols-outlined { font-size: 20px; color: var(--cnm-orange); }

.modulo-mini-card--ver-todos {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: rgba(255,255,255,0.8);
}

.modulo-mini-card--ver-todos .material-symbols-outlined { color: var(--cnm-orange); }
.modulo-mini-card--ver-todos:hover { border-color: var(--cnm-orange); color: var(--white); }

/* ============================================
   FAQ
   ============================================ */

#faq { background: var(--white); }

.container__faq {
    max-width: 840px;
    margin: 0 auto;
    padding: 90px 1.5rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header .section-tag { display: inline-block; }

.container__faq-titulo {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.container__faq-subtitulo {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-accordion { display: flex; flex-direction: column; gap: 0; }

.faq-item {
    border-bottom: 1px solid var(--gray-300);
}

.faq-item:first-child { border-top: 1px solid var(--gray-300); }

.faq-item h3 { margin: 0; }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover .faq-question-text { color: var(--cnm-orange); }

.faq-question-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.45;
    transition: color 0.2s;
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--cnm-orange);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-question-text { color: var(--cnm-orange); }

.faq-answer {
    display: none;
    padding: 0 0.5rem 1.4rem;
}

.faq-item.active .faq-answer { display: block; }

.faq-answer p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin: 0;
}

.faq-answer p strong { color: var(--gray-900); }

.faq-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2.5rem 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-300);
}

.faq-cta-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--gradient-orange);
    color: var(--white);
    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(255,157,1,0.3);
    margin-bottom: 1rem;
}

.faq-cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,157,1,0.4); color: var(--white); }

.faq-cta-secondary {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   RESPONSIVO — TABLET (1024px)
   ============================================ */

@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { display: none; }
    .hero-title { font-size: 36px; }
    .oque-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .oque-comparativo-wrap { max-width: 100%; }
    .canais-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .novidades-top { grid-template-columns: 1fr; gap: 2rem; }
    .novidades-visual { display: none; }
    .novidades-itens { grid-template-columns: repeat(2, 1fr); }
    .dif-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .integ-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .integ-visual-img { max-width: 480px; }
    .form-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .planos-grid { grid-template-columns: repeat(2, 1fr); }
    .func-grid { grid-template-columns: repeat(2, 1fr); }
    .func-card--destaque { grid-column: span 2; }
}

@media (max-width: 768px) {
    .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; }
    .fluxo-horizontal { padding: 1.5rem 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
    .fluxo-h-seta { display: none; }
    .fluxo-h-item { flex: 0 0 calc(33.33% - 0.5rem); }
    .steps-wrapper { grid-template-columns: 1fr; gap: 0; }
    .step-arrow { padding: 0.5rem 0; transform: rotate(90deg); }
    .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; }
    .novidades-itens { grid-template-columns: 1fr; }
    .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-content h2 { font-size: 28px; }
    .cta-central-wrapper { flex-direction: column; gap: 2rem; text-align: center; }
    .cta-central-right { align-items: center; }
    .cta-central-right .cta-central-buttons { flex-direction: column; align-items: center; }
    .btn-hero-primary.btn-lg, .btn-wpp { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .hero-trust-divider { display: none; }
    .hero-trust-item { padding-left: 0; }
    .form-box { padding: 1.75rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero { padding: 48px 0 40px; }
    .hero-title { font-size: 26px; }
    .bignumbers { padding: 40px 0; }
    .o-que-e, .canais-section, .funcionalidades, .diferencial-delivery, .integracoes, .form-section, .outros-modulos, .planos { padding: 56px 0; }
    .novidades-section { padding: 56px 0; }
    .cta-central { padding: 56px 0; }
    .container__faq { padding: 56px 1rem; }
    .fluxo-h-item { flex: 0 0 calc(50% - 0.5rem); }
}

/* ============================================
   OTIMIZAÇÃO PAGE SPEED: prefers-reduced-motion
   ============================================ */

@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-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-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-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; 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; }
}

/* ============================================
   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; }
}