/* ============================================
   SISTEMA PARA PIZZARIAS — STYLESHEET
   Baseado em: lanchonetes.css
   Segmento: Pizzarias
   ============================================ */

:root {
    --primary-orange: #ff9d01;
    --primary-dark: #e68a00;
    --dark-blue: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --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);
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ============================================
   BIG NUMBERS
   ============================================ */

.bignumbers {
    padding: 56px 0;
    background: var(--dark-blue);
}

.bignumbers-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.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(--primary-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bignum-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    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;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.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-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* ============================================
   DESAFIOS
   ============================================ */

.desafios {
    padding: 90px 0;
    background: var(--white);
}

.desafios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.desafio-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
}

.desafio-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.desafio-icon {
    font-size: 32px;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.desafio-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.desafio-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   SOLUÇÃO — BLOCOS ALTERNADOS
   ============================================ */

.solucao {
    padding: 90px 0;
    background: var(--gray-100);
}

.solucao-bloco {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.solucao-bloco:last-child {
    margin-bottom: 0;
}

.solucao-bloco--reverse {
    direction: rtl;
}

.solucao-bloco--reverse > * {
    direction: ltr;
}

.solucao-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.solucao-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.solucao-texto h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.solucao-texto p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.solucao-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.solucao-lista li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.55;
}

.solucao-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 13px;
}

.solucao-cta {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: gap 0.2s;
    gap: 0.25rem;
}

.solucao-cta:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

/* ============================================
   DESTAQUE PIZZARIA — BLOCO ÚNICO
   ============================================ */

.pizza-destaque {
    background: linear-gradient(135deg, #0f172a 0%, #1e2d45 100%);
    border-radius: 24px;
    padding: 3.5rem;
    margin: 0 0 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pizza-destaque-texto h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pizza-destaque-texto p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.pizza-destaque-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}

.pizza-destaque-lista li {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.55;
}

.pizza-destaque-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 13px;
}

.pizza-destaque-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pizza-sabores-demo {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.5rem;
}

.pizza-sabores-demo-titulo {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pizza-sabores-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pizza-slot {
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 4px;
    color: var(--white);
    background: rgba(255,157,1,0.2);
    border: 2px solid var(--primary-orange);
    transition: all 0.2s;
}

.pizza-slot:hover {
    background: rgba(255,157,1,0.35);
    transform: scale(1.05);
}

.pizza-slot-vazio {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    cursor: default;
}

.pizza-sabores-legenda {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* ============================================
   POR QUE O CNM
   ============================================ */

.porque-cnm {
    padding: 90px 0;
    background: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.diferencial-item {
    padding: 2.25rem 2.5rem;
    border-right: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

.diferencial-item:nth-child(3n) {
    border-right: none;
}

.diferencial-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.diferencial-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.diferencial-num::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
    opacity: 0.5;
}

.diferencial-item h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.diferencial-item > p {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.diferencial-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.diferencial-lista li {
    font-size: 13px;
    color: var(--gray-700);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.diferencial-lista li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 12px;
}

/* ============================================
   MÓDULOS
   ============================================ */

.modulos-adicionais {
    padding: 90px 0;
    background: var(--gray-100);
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.modulo-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.modulo-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.modulo-icon {
    font-size: 28px;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 0.85rem;
}

.modulo-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.modulo-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.modulo-card--cta {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

.modulo-card--cta .modulo-icon,
.modulo-card--cta h4 {
    color: var(--white);
}

.modulo-card--cta p {
    color: rgba(255,255,255,0.6);
}

.modulo-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.2s;
}

.modulo-link:hover { color: #ffb347; }

/* ============================================
   CTA CENTRAL
   ============================================ */

.cta {
    padding: 100px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.cta-bg-accent {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,157,1,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cta-content h2 span {
    color: var(--primary-orange);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    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.35);
    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);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.25);
    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;
}

.cta-btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.cta-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.cta-trust-item .material-symbols-outlined {
    font-size: 16px;
    color: var(--primary-orange);
}

/* ============================================
   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(--gray-100);
    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(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.plano-card--destaque {
    background: var(--dark-blue);
    border-color: var(--primary-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: 14px;
    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.6);
}

.plano-preco {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.plano-card--destaque .plano-preco {
    color: var(--primary-orange);
}

.plano-preco-suffix {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
}

.plano-card--destaque .plano-preco-suffix {
    color: rgba(255,255,255,0.5);
}

.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.5);
    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(--primary-orange);
    font-weight: 700;
    font-size: 12px;
}

.plano-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    border-radius: 10px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.plano-btn--outline {
    border: 2px solid var(--gray-300);
    color: var(--gray-900);
    background: transparent;
}

.plano-btn--outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.plano-btn--primary {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    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);
}

/* ============================================
   FORMULÁRIO INLINE
   ============================================ */

.form-section {
    padding: 90px 0;
    background: var(--gray-100);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.form-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-content h2 span {
    color: var(--primary-orange);
}

.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(--primary-orange);
    font-weight: 700;
}

.form-box {
    background: var(--white);
    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.5rem;
}

.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: 10px;
    border: 1.5px solid var(--gray-300);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--gray-100);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus {
    border-color: var(--primary-orange);
    background: var(--white);
    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: 12px;
    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;
}

/* ============================================
   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: 14px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.active {
    border-color: var(--primary-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(--primary-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 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-answer p a {
    color: var(--primary-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.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: 12px;
    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.55);
}

/* ============================================
   OUTROS SEGMENTOS
   ============================================ */

.outros-segmentos {
    padding: 64px 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
}

.segmentos-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.segmento-mini-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 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;
}

.segmento-mini-card:hover,
.segmento-mini-card--ver-todos {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.segmento-mini-card .material-symbols-outlined {
    font-size: 18px;
}

/* ============================================
   NAVBAR SCROLL
   ============================================ */

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(8px);
}

/* ============================================
   RESPONSIVIDADE GERAL
   ============================================ */

@media (max-width: 1200px) {
    .modulos-grid { grid-template-columns: repeat(3, 1fr); }
    .planos-grid { grid-template-columns: repeat(2, 1fr); }
    .pizza-sabores-slots { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .section-header h2 { font-size: 30px; }
    .desafios-grid { grid-template-columns: repeat(2, 1fr); }
    .solucao-bloco { grid-template-columns: 1fr; gap: 2.5rem; }
    .solucao-bloco--reverse { direction: ltr; }
    .pizza-destaque { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .diferencial-item:nth-child(3n) { border-right: 1px solid var(--gray-300); }
    .diferencial-item:nth-child(2n) { border-right: none; }
    .diferencial-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray-300); }
    .diferencial-item:nth-last-child(-n+2) { border-bottom: none; }
    .form-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .planos-grid { grid-template-columns: repeat(2, 1fr); }
    .modulos-grid { grid-template-columns: repeat(2, 1fr); }

    .cta { padding: 80px 0; }
    .cta-wrapper { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .cta-image { order: -1; }
    .cta-image img { max-width: 400px; }
    .cta-content h2 { font-size: 36px; }
    .cta-buttons { justify-content: center; }
    .cta-trust { justify-content: center; }
}

@media (max-width: 768px) {
    .bignumbers-grid { flex-direction: column; }
    .bignum-divider { width: 100%; height: 1px; }
    .bignum-item { padding: 1.5rem 2rem; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 16px; }
    .desafios-grid { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .diferencial-item { border-right: none !important; border-bottom: 1px solid var(--gray-300) !important; }
    .diferencial-item:last-child { border-bottom: none !important; }
    .modulos-grid { grid-template-columns: repeat(2, 1fr); }
    .planos-grid { grid-template-columns: 1fr; }
    .form-box { padding: 1.75rem 1.5rem; }

    .faq-header { margin-bottom: 44px; }
    .container__faq-titulo { font-size: 2rem; margin-bottom: 16px; }
    .container__faq-subtitulo { font-size: 1rem; }
    .faq-accordion { gap: 12px; margin-bottom: 48px; }
    .faq-question { padding: 20px; gap: 16px; }
    .faq-question-text { font-size: 1rem; }
    .faq-icon { font-size: 1.5rem; width: 28px; height: 28px; }
    .faq-answer p { padding: 6px 20px 20px 20px; font-size: 0.9375rem; }
    .faq-cta { padding: 36px 24px; border-radius: 12px; }
    .faq-cta-text { font-size: 1.25rem; margin-bottom: 20px; }
    .faq-cta-button { font-size: 1rem; padding: 14px 32px; }
}

@media (max-width: 480px) {
    .bignumbers { padding: 40px 0; }
    .bignum-value { font-size: 40px; }
    .bignum-item { padding: 1.25rem 1.5rem; }
    .desafios { padding: 50px 0; }
    .solucao { padding: 50px 0; }
    .porque-cnm { padding: 50px 0; }
    .modulos-adicionais { padding: 50px 0; }
    .cta { padding: 50px 0; }
    .cta-content h2 { font-size: 26px; }
    .modulos-grid { grid-template-columns: 1fr; }
    .pizza-sabores-slots { grid-template-columns: repeat(2, 1fr); }
    .container__faq { padding: 50px 16px; }
    .container__faq-titulo { font-size: 1.75rem; }
    .faq-question { padding: 18px 16px; }
    .faq-question-text { font-size: 0.9375rem; }
    .faq-answer p { padding: 4px 16px 18px 16px; font-size: 0.875rem; }
    .faq-cta { padding: 32px 20px; }
    .faq-cta-text { font-size: 1.125rem; }
    .faq-cta-button { padding: 12px 28px; font-size: 0.9375rem; }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-buttons {
    bottom: 90px;
    display: flex;
    display: -webkit-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;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    text-decoration: none;
}

.floating-button img {
    width: 100%;
    height: auto;
    max-width: 35px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================
   DESTAQUE HUB DE DELIVERY
   ============================================ */

.delivery-destaque {
    background: linear-gradient(135deg, #0f172a 0%, #1e2d45 100%);
    border-radius: 24px;
    padding: 3.5rem;
    margin: 0 0 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.delivery-destaque-texto h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.delivery-destaque-texto p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Reutiliza .pizza-destaque-lista do bloco anterior */

/* Painel visual */
.delivery-destaque-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-painel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 1.5rem;
    width: 100%;
    max-width: 380px;
}

.delivery-painel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.delivery-painel-titulo {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.delivery-painel-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
}

.delivery-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: pulse-dot 2s infinite;
}

@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); }
}

.delivery-canais {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.delivery-canal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border-left: 3px solid transparent;
    background: rgba(255,255,255,0.06);
    transition: background 0.2s;
}

.delivery-canal:hover {
    background: rgba(255,255,255,0.1);
}

.delivery-canal--ifood    { border-left-color: #ea1d2c; }
.delivery-canal--99food   { border-left-color: #f5c518; }
.delivery-canal--proprio  { border-left-color: var(--primary-orange); }
.delivery-canal--vina     { border-left-color: #7c3aed; }

.delivery-canal-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.delivery-canal-nome {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.delivery-canal-qtd {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.delivery-canal-badge {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.delivery-canal-badge--novo {
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
}

.delivery-painel-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.delivery-painel-total {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
}

.delivery-painel-hint {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
}

@media (max-width: 992px) {
    .delivery-destaque {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .delivery-painel { max-width: 100%; }
}

/* ============================================
   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; }
}