/* ========== FONTS (GOOGLE FONTS) ========== */
/* Loaded in index.html for performance */

/* latin-ext */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    font-display: swap;
    src: url(/assets/fonts/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t7R-tQKr51pE8.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    font-display: swap;
    src: url(/assets/fonts/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t1R-tQKr51.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(/assets/fonts/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t7R-tQKr51pE8.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(/assets/fonts/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t1R-tQKr51.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.is-hidden {
    display: none !important;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 18px;
    /* Grossa (Thicker) */
    height: 18px;
}

::-webkit-scrollbar-track {
    background: #000000;
    /* Black track */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #FF0000, #CC0000);
    /* Red Gradient */
    border-radius: 9px;
    border: 4px solid #000000;
    /* Padding effect with black track */
    min-height: 100px;
    /* Taller thumb - reduces perceived page length */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #FF3333, #FF0000);
    /* Brighter on hover */
}

/* Mobile: hide custom scrollbars (keep touch scroll) */
@media (hover: none) and (pointer: coarse) {
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    html,
    body {
        scrollbar-width: none;
    }
}

/* ========== VARIABLES ========== */
:root {
    /* Colors */
    --primary: #D91E0D;
    --primary-dark: #BF0413;
    --bg-warm: #FAF1E6;
    /* Bege suave - não amarelo forte */
    --accent: #F29979;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #666666;
    --text-subtitle: #999999;
    /* Acessibilidade: Emerald 600+ para contraste AA (4.5:1 no branco) */
    --success: #059669;
    --success-dark: #047857;
    --error: #EF4444;

    /* Icon Colors (Mega Menu Categories) */
    --icon-essential: #D91E0D;
    --icon-orders: #059669;
    --icon-advanced: #F59E0B;
    --icon-custom: #8B5CF6;
    --icon-integration: #3B82F6;

    /* Feature Card Impact Colors */
    --impact-hero: #D91E0D;
    --impact-hero-bg: rgba(217, 30, 13, 0.08);
    --impact-hero-gradient: linear-gradient(135deg, #D91E0D 0%, #BF0413 100%);

    --impact-growth: #059669;
    --impact-growth-bg: rgba(5, 150, 105, 0.08);
    --impact-growth-gradient: linear-gradient(135deg, #059669 0%, #047857 100%);

    --impact-efficiency: #F59E0B;
    --impact-efficiency-bg: rgba(245, 158, 11, 0.08);
    --impact-efficiency-gradient: linear-gradient(135deg, #F59E0B 0%, #C2410C 100%);

    --impact-tech: #3B82F6;
    --impact-tech-bg: rgba(59, 130, 246, 0.08);
    --impact-tech-gradient: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);

    --impact-custom: #8B5CF6;
    --impact-custom-bg: rgba(139, 92, 246, 0.08);
    --impact-custom-gradient: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);

    /* CTA Phone Icon Palette - Cores DNA delivery (suave) */
    --cta-icon-yellow: #FEF3C7;
    /* Amarelo suave pedido chegando */
    --cta-icon-red: #E4574E;
    /* Coral suave entrega */
    --cta-icon-green: #A7F3D0;
    /* Verde pago/confirmado */
    --cta-icon-smoke: rgba(38, 38, 38, 0.32);
    /* fumaça mais realista, tom grafite */
    --cta-icon-shadow-red: rgba(228, 87, 78, 0.22);
    --cta-icon-shadow-yellow: rgba(254, 243, 199, 0.65);
    --cta-icon-shadow-green: rgba(167, 243, 208, 0.42);

    /* Footer Palette (suave, premium) */
    --footer-bg: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
    --footer-card: rgba(255, 255, 255, 0.94);
    --footer-border: rgba(228, 87, 78, 0.14);
    --footer-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
    --footer-text: #1F2933;
    --footer-subtext: #4B5563;
    --footer-pill: rgba(5, 150, 105, 0.16);
    --footer-pill-border: rgba(5, 150, 105, 0.32);
    --footer-accent: #E4574E;
    --footer-accent-soft: rgba(228, 87, 78, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.18);
    --shadow-mega: 0 1px 3px rgba(0, 0, 0, 0.06),
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 10px 24px rgba(0, 0, 0, 0.10),
        0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-green: 0 4px 16px rgba(5, 150, 105, 0.25);

    /* Typography - Nunito Sans (Display) + Inter (Body) - Steve Jobs Approved */
    --font-display: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* iPhone Mockup */
    --iphone-width: 332px;
    --iphone-height: 640px;
    --iphone-bezel: 8px;
    --iphone-radius-outer: 50px;
    --iphone-radius-inner: 42px;

    /* WhatsApp Theme */
    --whatsapp-header-green: #00897B;
    --whatsapp-chat-bg: #E5DDD5;
    --whatsapp-bubble-sent: #DCF8C6;
    --whatsapp-bubble-received: #FFFFFF;
    --bubble-padding: 10px 14px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-warm);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* ========== ACCESSIBILITY ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== HEADER V2 & TOPBAR ========== */
:root {
    --topbar-height-desktop: 38px;
    /* Altura da topbar em duas linhas (padding 7+8, preço ~17px, gap 1,
       benefícios ~14px). Este valor alimenta o `top` do header e o
       `padding-top` do body — se ele mentir, o header cobre a barra.
       Era 44px assumindo UMA linha; a 360px a barra virava 50px e 6px
       ficavam escondidos atrás do header.
       js/main.js sobrescreve com a altura MEDIDA em tempo de execução,
       então este número é só o ponto de partida antes do JS rodar. */
    --topbar-height-mobile: 48px;
    --header-height-desktop: 80px;
    --header-height-mobile: 70px;
}

.header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 241, 230, 0.96) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    height: var(--header-height-desktop);
    position: sticky;
    top: var(--topbar-height-desktop);
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: repeating-linear-gradient(90deg,
            rgba(217, 30, 13, 0.1) 0px,
            rgba(217, 30, 13, 0.1) 10px,
            transparent 10px,
            transparent 18px) 1;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

/* --- TRUST TOPBAR (Apple Premium Glassmorphism) --- */
.announcement-topbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1001;
    /* Above header */
    background: rgba(17, 24, 39, 0.96);
    /* Dark charcoal/black */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: var(--topbar-height-desktop);
    padding: 6px 16px;
    text-align: center;
}

.announcement-topbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-badge {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.announcement-topbar p {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #F3F4F6;
    margin: 0;
    letter-spacing: 0.01em;
}

.announcement-topbar p strong {
    color: #10B981;
    /* Premium Green */
    font-weight: 700;
}

/* ───────────────────────────────────────────────────────────────────────
   TOPBAR NO MOBILE — hierarquia em duas linhas

   O QUE ESTAVA ERRADO
   A frase era um bloco único de 53 caracteres a 12,5px. A 360px (largura
   CSS da maioria dos Android de entrada no Brasil, que é o público) ela
   quebrava sozinha e deixava "pedidos." órfã na segunda linha, encostada
   na borda por causa do padding lateral de 12px.

   Pior: a barra usa min-height, então ela CRESCIA para 50px — enquanto o
   header continuava preso em top: 44px. Resultado medido em produção:
   6px do texto ficavam escondidos atrás do header.

   O QUE MUDOU
   Preço e benefícios viram linhas próprias por decisão de layout. O preço
   ganha peso visual (é o argumento mais forte da oferta e o que precisa
   ser capturado em menos de um segundo); os benefícios ficam menores e
   com menos contraste, como apoio.

   A altura passa a ser determinística: sempre duas linhas, em qualquer
   largura a partir de 320px. E o ResizeObserver em js/main.js sincroniza
   --topbar-height-mobile com a altura real medida, para o caso de alguém
   usar fonte ampliada por acessibilidade.
   ─────────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .announcement-topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1002;
        min-height: var(--topbar-height-mobile);
        /* env() protege telas curvas e recortes, onde 12px não bastavam
           e o texto era cortado na lateral. */
        padding: 7px calc(16px + env(safe-area-inset-right)) 8px calc(16px + env(safe-area-inset-left));
    }

    .announcement-topbar-content {
        flex-direction: column;
        gap: 1px;
        width: 100%;
    }

    /* Seletor com o pai de propósito, NÃO por capricho:
       `.announcement-topbar p` vale 0,1,1 (classe + elemento) e venceria
       `.announcement-topbar-price`, que vale só 0,1,0 — as fontes não
       aplicariam. Qualificar com o ancestral leva a 0,2,1 e resolve sem
       recorrer a !important, que é a origem dos 63 !important deste
       arquivo: cada um é um dev perdendo a briga de especificidade
       contra o próprio CSS. */
    .announcement-topbar p.announcement-topbar-price {
        font-size: 15px;
        line-height: 1.15;
        letter-spacing: -0.01em;
    }

    .announcement-topbar p.announcement-topbar-perks {
        font-size: 11px;
        line-height: 1.25;
        color: #9CA3AF;
        letter-spacing: 0.02em;
        /* Encolhe em vez de quebrar em 3 linhas e estourar a altura. */
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Telas muito estreitas (≤340px): um passo menor para o texto de
   benefícios não precisar de reticências. */
@media (max-width: 340px) {
    .announcement-topbar p.announcement-topbar-price {
        font-size: 14px;
    }

    .announcement-topbar p.announcement-topbar-perks {
        font-size: 10.5px;
    }
}

.header-content {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(217, 30, 13, 0.3);
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 12px rgba(217, 30, 13, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: source-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu - Delivery Vibe */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    padding: 10px 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

/* Ketchup Hand-drawn Underline - Caneta Orgânica */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 3' preserveAspectRatio='none'%3E%3Cpath d='M0,1.5 Q10,0.8 20,1.2 Q30,1.8 40,1.3 Q50,0.9 60,1.4 Q70,1.9 80,1.2 Q90,0.7 100,1.5' stroke='url(%23gradient)' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cdefs%3E%3ClinearGradient id='gradient' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23D91E0D;stop-opacity:1'/%3E%3Cstop offset='100%25' style='stop-color:%23BF0413;stop-opacity:1'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: blur(0.3px);
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Header Phone CTA - Premium Vertical */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 18px;
    min-height: 44px;
    /* altura alinhada ao botão verde */
    background: transparent;
    border: 2px dashed var(--primary);
    border-radius: 8px;
    /* mesmo arredondamento dos botões */
    box-shadow: 0 6px 18px rgba(217, 30, 13, 0.12);
    color: var(--text-dark);
    flex-shrink: 0;
}

.header-phone:hover .phone-icon {
    transform: scale(1.08) rotate(-6deg);
}

.header-phone:hover .phone-content {
    color: white;
}

.header-phone:hover .phone-label,
.header-phone:hover .phone-number-full {
    color: #FFFFFF;
}

.header-phone:hover {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(217, 30, 13, 0.22),
        0 4px 10px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px) scale(1.005);
    color: #FFFFFF;
}

.header-phone:hover .phone-icon i,
.header-phone:hover .phone-icon svg {
    color: #FFFFFF;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}

/* Phone Icon Container - Steve Jobs: Simplicidade Brutal */
.phone-icon {
    position: relative;
    width: 42px;
    height: 42px;
    min-width: 42px;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ícones - TODOS NO EXATO MESMO LUGAR */
.phone-icon i,
.phone-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    stroke-width: 2.4;
    color: var(--cta-icon-red);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.14));
    opacity: 0;
    will-change: opacity, transform;
    transition: color 0.2s ease, filter 0.2s ease;
}

/* Ícones controlados por JS para sincronizar a ordem */
.phone-icon .icon-receipt-text,
.phone-icon .icon-receipt,
.phone-icon .icon-motorbike {
    animation: none;
    opacity: 0;
    display: none;
    visibility: hidden;
}

/* Cores específicas por estado - Consistência visual: herda cor do container */
.phone-icon .icon-receipt-text,
.phone-icon .icon-receipt,
.phone-icon .icon-motorbike {
    filter: drop-shadow(0 4px 10px var(--cta-icon-shadow-red));
}

.phone-icon .icon-receipt-text.active {
    display: block;
    visibility: visible;
    animation: iconReceiptText 3s ease-in-out forwards;
}

.phone-icon .icon-receipt.active {
    display: block;
    visibility: visible;
    animation: iconReceipt 3s ease-in-out forwards;
}

.phone-icon .icon-motorbike.active {
    display: block;
    visibility: visible;
    animation: iconMotorbike 3s ease-in-out forwards;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.phone-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1F2937;
    line-height: 1.2;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.phone-number-full {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #111827;
    white-space: nowrap;
    line-height: 1.2;
    transition: color 0.2s ease;
}

/* Header Separator - Sexy Dash */
.header-separator {
    width: 1px;
    height: 28px;
    background: repeating-linear-gradient(to bottom,
            rgba(217, 30, 13, 0.2) 0px,
            rgba(217, 30, 13, 0.2) 4px,
            transparent 4px,
            transparent 8px);
    margin: 0 10px;
}

/* Nav Dropdown Container */
.nav-dropdown {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0em;
    color: var(--text-dark);
    padding: 4px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-dropdown:hover {
    color: var(--primary);
}

.nav-link-dropdown.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-chevron {
    width: 16px;
    height: 16px;
    color: #FCD34D;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-dropdown.active .nav-chevron {
    transform: rotate(180deg);
    color: #F59E0B;
}

/* Mega Menu Dropdown (Sem textura - legibilidade) */
.mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1160px;
    background: var(--bg-white);
    box-shadow: var(--shadow-mega);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-radius: 0 0 16px 16px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.mega-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.mega-menu-content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    box-sizing: border-box;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Mega Menu Section Title (Ícone + H3) */
.mega-menu-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.mega-menu-section-title--spaced {
    margin-top: 24px;
}

.mega-menu-section-title .title-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    stroke-width: 2.5;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    /* ajuste fino para alinhar ópticamente ao texto */
}

.mega-menu-section-title h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--primary);
    border-bottom: 2px dashed rgba(217, 30, 13, 0.5);
    padding-bottom: 8px;
    flex: 1;
    margin: 0;
    box-sizing: border-box;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.mega-menu-item:hover {
    background: #FFF5F0;
    color: var(--primary);
    transform: translateY(-2px);
}

.mega-menu-item i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    padding: 8px;
    background: rgba(217, 30, 13, 0.08);
    border-radius: 12px;
    stroke-width: 2;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-item:hover i {
    background: var(--primary);
    color: white;
    transform: rotate(5deg);
}

/* Icon Colors by Category */
.mega-menu-item[data-category="essential"] i {
    color: var(--icon-essential);
}

.mega-menu-item[data-category="orders"] i {
    color: var(--icon-orders);
}

.mega-menu-item[data-category="advanced"] i {
    color: var(--icon-advanced);
}

.mega-menu-item[data-category="custom"] i {
    color: var(--icon-custom);
}

.mega-menu-item[data-category="integration"] i {
    color: var(--icon-integration);
}

/* Mega Menu CTA Section (Full Width - Fora do Grid) */
.mega-menu-cta-section {
    padding: 24px 32px;
    background: linear-gradient(to bottom, transparent, rgba(242, 220, 179, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px dashed rgba(217, 30, 13, 0.15);
    box-sizing: border-box;
}

/* Mega Menu CTA - Notinha V2 (Verde) */
.mega-menu-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: #D1FAE5;
    color: var(--success);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 8px;
    border: 2px dashed var(--success);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15),
        0 2px 8px rgba(209, 250, 229, 0.3);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.mega-menu-primary-cta:hover {
    background: var(--success);
    color: white;
    border-style: solid;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3),
        0 4px 12px rgba(16, 185, 129, 0.2);
}

.mega-menu-primary-cta i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-primary-cta:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.mega-menu-secondary-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-menu-secondary-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Mega Menu Footer */
.mega-menu-footer {
    background: var(--bg-warm);
    padding: 16px 32px;
    border-radius: 0 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    border-top: 1px dashed rgba(217, 30, 13, 0.2);
    box-sizing: border-box;
}

.mega-menu-footer i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    stroke-width: 2;
}

.mega-menu-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.mega-menu-footer a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: #10B981;
    /* Success green - match header */
    color: white;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    /* SemiBold = Confidence without shouting */
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
    /* Slight spacing = Premium feel + Legibility */
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.btn:hover {
    background: #059669;
    /* Darker green on hover */
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 4px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Header CTA - V3 Master Ticket (Mini Version) */
.btn-success {
    background: linear-gradient(180deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 4px 0 #047857,
        0 8px 20px rgba(5, 150, 105, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-success::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    pointer-events: none;
}

.btn-success:hover {
    background: linear-gradient(180deg, #34D399 0%, #10B981 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 6px 0 #047857,
        0 12px 24px rgba(5, 150, 105, 0.4);
}

.btn-success:active {
    transform: translateY(4px);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 #047857,
        0 0 0 rgba(5, 150, 105, 0);
}

.btn-success i {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.btn-success:hover i {
    transform: scale(1.1) rotate(-5deg);
    color: white;
}

.btn-success:focus-visible {
    outline: 2px solid var(--success);
    outline-offset: 4px;
}

/* ⚠️ O SELETOR PRECISA COBRIR `svg`, NÃO SÓ `i`.
   O js/lucide-lite.js SUBSTITUI <i data-lucide="x"> por <svg><use href="#x">
   em tempo de execução. Ou seja: a regra abaixo era escrita para o markup
   original e parava de valer exatamente quando o ícone passava a existir.

   Consequência medida em produção no botão "Quero o Cardápio" do desktop:
   sem flex-shrink: 0, o <svg> era o ÚNICO item encolhível do botão (o texto
   é nowrap), então o algoritmo flex o esmagava para 0px de largura para
   tentar caber. O ícone não sumia — ficava com 0x24. No mobile funcionava
   por acidente, porque existe um `.btn svg` dentro de media query.

   Corrigir aqui conserta os 6 botões da página de uma vez. */
.btn i,
.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ========== MOBILE MENU (HIDDEN ON DESKTOP) ========== */
.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
}

.header-mobile-separator,
/* .btn-text-desktop / .btn-text-mobile removidos: a troca de texto por
   media query deixou de existir. O botão do header agora usa uma copy só
   ("Testar Grátis"), o que também eliminou o overflow que esmagava o ícone. */

.mobile-menu {
    display: none;
    /* Hidden on desktop, shown via mobile media query */
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-warm);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    align-self: start;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: 30px;
}

@media (min-width: 969px) {
    .hero-content {
        padding-left: 64px;
    }
}

.whatsapp-mockup {
    position: relative;
}

/* Hero Badge - Notinha de Pedido DNA */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FEF3C7;
    border: 1.5px dashed rgba(217, 30, 13, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #B91C1C;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(217, 30, 13, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    position: relative;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            rgba(217, 30, 13, 0.15) 0px,
            rgba(217, 30, 13, 0.15) 4px,
            transparent 4px,
            transparent 8px);
}

.hero-badge::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            rgba(217, 30, 13, 0.15) 0px,
            rgba(217, 30, 13, 0.15) 4px,
            transparent 4px,
            transparent 8px);
}

.hero-badge:hover {
    transform: translateY(-1px) rotate(-0.5deg);
    border-color: rgba(217, 30, 13, 0.35);
    box-shadow: 0 4px 12px rgba(217, 30, 13, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.06);
}

.hero-badge i {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
    color: var(--primary);
    animation: delivery-shake 3s ease-in-out infinite;
}

@keyframes delivery-shake {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-2px) rotate(-5deg);
    }

    75% {
        transform: translateX(2px) rotate(5deg);
    }
}

/* 📄 ANIMAÇÕES PHONE CTA - STEVE JOBS: SIMPLICIDADE */

/* 1. Receipt-Text: NOTINHA VERMELHA #B91C1C - Pedido chegando! */
@keyframes iconReceiptText {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.93) rotate(-5deg);
        filter:
            drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08)) drop-shadow(0 3px 10px rgba(185, 28, 28, 0.45)) brightness(1.05) saturate(1.08);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter:
            drop-shadow(0 3px 10px rgba(0, 0, 0, 0.12)) drop-shadow(0 4px 14px rgba(185, 28, 28, 0.6)) brightness(1.08) saturate(1.1);
    }

    25% {
        transform: translate(-50%, -50%) scale(1.02) rotate(-2deg);
        filter:
            drop-shadow(0 3px 10px rgba(0, 0, 0, 0.12)) drop-shadow(0 3px 12px rgba(185, 28, 28, 0.55)) brightness(1.06) saturate(1.09);
    }

    40% {
        transform: translate(-50%, -50%) scale(1.01) rotate(2deg);
        filter:
            drop-shadow(0 3px 10px rgba(0, 0, 0, 0.12)) drop-shadow(0 3px 12px rgba(185, 28, 28, 0.55)) brightness(1.06) saturate(1.09);
    }

    65% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter:
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1)) drop-shadow(0 3px 10px rgba(185, 28, 28, 0.5)) brightness(1.05) saturate(1.08);
    }

    80% {
        opacity: 0.65;
        transform: translate(-50%, -50%) scale(0.96) rotate(-3deg);
        filter:
            drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08)) drop-shadow(0 2px 8px rgba(185, 28, 28, 0.45)) brightness(1.04) saturate(1.06);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.92) rotate(-5deg);
    }
}

/* 2. Receipt: NOTINHA VERMELHA #B91C1C - Pago/confirmado (cha-ching!) */
@keyframes iconReceipt {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.93);
        filter: drop-shadow(0 2px 6px rgba(185, 28, 28, 0.2)) brightness(1.02) saturate(1.05);
    }

    12% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04) rotate(3deg);
        filter: drop-shadow(0 3px 9px rgba(185, 28, 28, 0.35)) brightness(1.06) saturate(1.05);
    }

    28% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: drop-shadow(0 3px 8px rgba(185, 28, 28, 0.28)) brightness(1.04) saturate(1.04);
    }

    45% {
        transform: translate(-50%, -50%) scale(1.05) rotate(-2deg);
        filter: drop-shadow(0 4px 12px rgba(185, 28, 28, 0.4)) brightness(1.08) saturate(1.05);
    }

    62% {
        transform: translate(-50%, -50%) scale(1.02) rotate(1deg);
        filter: drop-shadow(0 3px 10px rgba(185, 28, 28, 0.32)) brightness(1.04) saturate(1.04);
    }

    75% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: drop-shadow(0 3px 8px rgba(185, 28, 28, 0.25)) brightness(1.03);
    }

    88% {
        opacity: 0.65;
        transform: translate(-50%, -50%) scale(0.95) rotate(2deg);
        filter: drop-shadow(0 2px 6px rgba(185, 28, 28, 0.18)) brightness(1.02);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

/* 3. Motorbike: Acelerando e saindo */
@keyframes iconMotorbike {
    0% {
        opacity: 0;
        transform: translate(calc(-50% - 10px), -50%) scale(0.75) rotate(-10deg);
    }

    12% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02) rotate(2deg);
    }

    /* Tremor de motor ligado */
    24%,
    38%,
    52% {
        transform: translate(calc(-50% - 3px), -50%) scale(1.01) rotate(-2deg);
    }

    30%,
    44%,
    58% {
        transform: translate(calc(-50% + 3px), -50%) scale(1) rotate(2deg);
    }

    65% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    /* Saindo para direita */
    78% {
        opacity: 0.85;
        transform: translate(calc(-50% + 16px), -50%) scale(0.95) rotate(-3deg);
    }

    90% {
        opacity: 0.55;
        transform: translate(calc(-50% + 36px), -50%) scale(0.84) rotate(-5deg);
    }

    100% {
        opacity: 0;
        transform: translate(calc(-50% + 58px), -50%) scale(0.72) rotate(-8deg);
    }
}

/* 4A. Fumaça parada - Motor ligado tremendo (24-65%) */
@keyframes smokeIdle {

    0%,
    100% {
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0.4);
        filter: blur(3px);
    }

    15% {
        opacity: 0.45;
        transform: translateX(-2px) translateY(-3px) scale(0.7);
        filter: blur(4px);
    }

    50% {
        opacity: 0.55;
        transform: translateX(1px) translateY(-6px) scale(0.95);
        filter: blur(5px);
    }

    85% {
        opacity: 0.3;
        transform: translateX(-1px) translateY(-9px) scale(1.1);
        filter: blur(6px);
    }
}

/* 4B. Fumaça trail - Moto saindo (65-100%) */
@keyframes smokeTrail {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0.5);
        filter: blur(1px);
    }

    15% {
        opacity: 0.6;
        transform: translateX(-4px) translateY(-2px) scale(0.7);
        filter: blur(2px);
    }

    30% {
        opacity: 0.68;
        transform: translateX(-10px) translateY(-3px) scale(0.85);
        filter: blur(3px);
    }

    50% {
        opacity: 0.58;
        transform: translateX(-18px) translateY(-4px) scale(1);
        filter: blur(4px);
    }

    70% {
        opacity: 0.38;
        transform: translateX(-28px) translateY(-5px) scale(1.1);
        filter: blur(5px);
    }

    85% {
        opacity: 0.18;
        transform: translateX(-38px) translateY(-6px) scale(1.2);
        filter: blur(6px);
    }

    100% {
        opacity: 0;
        transform: translateX(-48px) translateY(-7px) scale(1.25);
        filter: blur(7px);
    }
}

/* Elementos de fumaça - Orgânica com blur */
.phone-icon-smoke {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--cta-icon-smoke);
    border-radius: 50% 45% 55% 50%;
    pointer-events: none;
    opacity: 0;
    display: none;
    visibility: hidden;
    will-change: opacity, transform, filter;
    transition: background-color 0.2s ease;
}

.phone-icon .icon-motorbike~.phone-icon-smoke {
    animation: none;
}

.phone-icon .icon-motorbike~.phone-icon-smoke.active {
    display: block;
    visibility: visible;
    animation: smokeTrail 3s ease-out forwards;
}

/* Hover do CTA: fumaça mais clara para contraste */
.header-phone:hover .phone-icon-smoke {
    background: rgba(255, 255, 255, 0.6);
}

/* Puff 1 - Primeiro a sair (pequeno) */
.phone-icon-smoke:nth-child(4) {
    animation-delay: 0s;
    top: 19px;
    left: 2px;
    width: 4px;
    height: 4px;
}

/* Puff 2 */
.phone-icon-smoke:nth-child(5) {
    animation-delay: 0.06s;
    top: 17px;
    left: 5px;
    width: 4.5px;
    height: 4.5px;
    border-radius: 45% 55% 50% 50%;
}

/* Puff 3 */
.phone-icon-smoke:nth-child(6) {
    animation-delay: 0.12s;
    top: 20px;
    left: 8px;
    width: 5px;
    height: 5px;
    border-radius: 55% 45% 45% 55%;
}

/* Puff 4 (começando a expandir) */
.phone-icon-smoke:nth-child(7) {
    animation-delay: 0.18s;
    top: 18px;
    left: 11px;
    width: 5.5px;
    height: 5.5px;
    border-radius: 50% 48% 52% 50%;
}

/* Puff 5 */
.phone-icon-smoke:nth-child(8) {
    animation-delay: 0.24s;
    top: 21px;
    left: 14px;
    width: 6px;
    height: 6px;
    border-radius: 48% 52% 50% 50%;
}

/* Puff 6 (mais expandido) */
.phone-icon-smoke:nth-child(9) {
    animation-delay: 0.30s;
    top: 19px;
    left: 17px;
    width: 6.5px;
    height: 6.5px;
    border-radius: 52% 48% 48% 52%;
}

/* Puff 7 */
.phone-icon-smoke:nth-child(10) {
    animation-delay: 0.36s;
    top: 17px;
    left: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50% 50% 45% 55%;
}

/* Puff 8 - Último (maior - já expandido) */
.phone-icon-smoke:nth-child(11) {
    animation-delay: 0.42s;
    top: 20px;
    left: 23px;
    width: 7.5px;
    height: 7.5px;
    border-radius: 55% 45% 50% 50%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    /* Tighter = More tension = More authority */
    letter-spacing: -0.04em;
    /* Steve Jobs: Kerning matters! Tight = Impact */
    margin-bottom: 20px;
    color: var(--text-dark);
    max-width: 480px;
}

.hero-title .highlight {
    font-weight: 900;
    color: var(--primary);
    display: inline-block;
    white-space: nowrap;
    letter-spacing: -0.035em;
    /* Even tighter on highlight = PUNCH */
}

.nowrap {
    white-space: nowrap;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    /* Bigger = More confident */
    font-weight: 500;
    /* Medium = Authority without screaming */
    line-height: 1.65;
    /* Tighter = More intentional */
    letter-spacing: -0.005em;
    /* Subtle tightness = Modern */
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 540px;
    /* Limit line length for readability */
}

/* Hero CTA: standardized to match global button size (18px/40px) */
.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}

.hero-cta .ps-cta-button,
.hero-cta .btn-secondary {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Removed shrinking override to align with 'Como Funciona' and Reference Button */

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--primary);
    border: 2px dashed var(--primary);
    box-shadow: none;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon sizing and animation - targets both <i> placeholder and <svg> rendered by Lucide */
.btn-secondary i,
.btn-secondary svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bounceDown 1.8s ease-in-out infinite;
    display: inline-block;
}

/* Bounce animation - points down to indicate scrolling */
@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {

    .btn-secondary i,
    .btn-secondary svg {
        animation: none !important;
    }
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    border-style: solid;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(217, 30, 13, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover i,
.btn-secondary:hover svg {
    animation-play-state: paused;
    transform: translateY(8px);
}

.btn-secondary:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 0 2px 8px rgba(217, 30, 13, 0.2);
}


/* ========== COMO FUNCIONA (HOW IT WORKS) ========== */
.how-it-works {
    padding: 100px 24px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern - subtle notinha texture */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(217, 30, 13, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(254, 243, 199, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header - Centered (same pattern as Features) */
.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-it-works-header .section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== TIMELINE CONTAINER ========== */
.hiw-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-bottom: 80px;
}

/* Connection Line - Horizontal Dashed (Desktop) */
.hiw-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    /* Center of step number */
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: repeating-linear-gradient(90deg,
            var(--primary) 0px,
            var(--primary) 8px,
            transparent 8px,
            transparent 16px);
    opacity: 0.25;
    z-index: 1;
}

/* ========== INDIVIDUAL STEP ========== */
.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Step Number Circle - Notinha DNA */
.hiw-step-number {
    width: 72px;
    height: 72px;
    background: #FEF3C7;
    border: 3px dashed var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(217, 30, 13, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Hover - Number becomes solid red (notinha inverts) */
.hiw-step:hover .hiw-step-number {
    background: var(--primary);
    color: white;
    border-style: solid;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(217, 30, 13, 0.3);
}

/* Step Icon (below number) */
.hiw-step-icon {
    width: 64px;
    height: 64px;
    background: #FFFBF5;
    border: 1px dashed rgba(217, 30, 13, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.hiw-step-icon i {
    width: 32px;
    height: 32px;
    color: var(--primary);
    stroke-width: 2;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiw-step:hover .hiw-step-icon {
    background: rgba(217, 30, 13, 0.08);
    border-color: rgba(217, 30, 13, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(217, 30, 13, 0.12);
}

.hiw-step:hover .hiw-step-icon i {
    transform: rotate(5deg) scale(1.05);
}

/* Step Title */
.hiw-step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* Step Description */
.hiw-step-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-medium);
    max-width: 280px;
}

/* ========== PAIN POINT FINALE SECTION ========== */
.hiw-pain-section {
    background: linear-gradient(135deg, rgba(217, 30, 13, 0.04) 0%, rgba(254, 243, 199, 0.3) 100%);
    border: 2px dashed rgba(217, 30, 13, 0.2);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

/* Subtle paper texture */
.hiw-pain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='%23D91E0D' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Pain Section Header */
.hiw-pain-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hiw-pain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1.5px dashed var(--error);
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--error);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.hiw-pain-badge i {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.hiw-pain-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hiw-pain-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

/* Pain Points Grid */
.hiw-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Individual Pain Card */
.hiw-pain-card {
    background: #FFFBF5;
    border: 1px dashed rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.hiw-pain-card:hover {
    transform: translateY(-4px);
    border-color: var(--error);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.15);
}

/* VS Badge on pain cards */
.hiw-pain-vs {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--success);
    color: white;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Strikethrough competitor name (playful, not direct) */
.hiw-pain-competitor {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-medium);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.45);
    text-decoration-thickness: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: 0.01em;
}

.hiw-pain-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hiw-pain-card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-medium);
}

/* Solution inline highlight */
.hiw-pain-solution {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(16, 185, 129, 0.3);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
}

.hiw-pain-solution i {
    width: 16px;
    height: 16px;
    stroke-width: 3;
    flex-shrink: 0;
}

/* CTA at the end */
.hiw-cta-section {
    margin-top: 72px;
    text-align: center;
    padding-top: 24px;
}

/* Bigger CTA button for this section */
.hiw-cta-section .ps-cta-button {
    font-size: 22px;
    font-weight: 800;
    padding: 24px 56px;
    gap: 16px;
    min-width: 560px;
    letter-spacing: -0.01em;
}

.hiw-cta-section .ps-cta-button i {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.hiw-cta-section .ps-cta-subtext {
    margin-top: 24px;
    font-size: 15px;
}

/* ========== SOCIAL PROOF BANNER ========== */
.hiw-social-banner {
    margin-top: 64px;
    position: relative;
    width: 100%;
}

.hiw-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1810 100%);
    border: 2px dashed rgba(254, 243, 199, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiw-banner-container:hover {
    border-color: rgba(217, 30, 13, 0.8);
    box-shadow: 0 12px 48px rgba(217, 30, 13, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hiw-banner-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiw-banner-container:hover .hiw-banner-image {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 968px) {
    .hiw-banner-image {
        height: 400px;
    }
}

@media (min-width: 969px) and (max-width: 1240px) {

    .hero-cta .ps-cta-button,
    .hero-cta .btn-secondary {
        padding: 16px 30px;
    }
}

@media (max-width: 640px) {
    .hiw-social-banner {
        margin-top: 48px;
    }

    .hiw-banner-container {
        border-radius: 12px;
        border-width: 1.5px;
    }

    .hiw-banner-image {
        height: 300px;
        object-position: 40% center;
    }
}


/* ========== IPHONE 14 PRO MOCKUP ========== */

.iphone-mockup {
    position: relative;
    width: var(--iphone-width);
    max-width: 100%;
    margin: 0 auto;
}

/* iPhone Bezel - Titanium Natural #CDCDCD (iPhone 15 Pro 2025) */
.iphone-bezel {
    position: relative;
    background: #CDCDCD;
    /* Titanium Natural - cor premium */
    border-radius: var(--iphone-radius-outer);
    padding: var(--iphone-bezel);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(136, 136, 136, 0.4),
        /* 3D inner border - efeito profundidade */
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    /* Shine metalico sutil */
}

/* iPhone Physical Buttons */
.iphone-button-volume-up {
    position: absolute;
    left: -3px;
    top: 180px;
    width: 3px;
    height: 28px;
    background: linear-gradient(90deg, #555 0%, #666 50%, #555 100%);
    border-radius: 2px 0 0 2px;
    z-index: 1;
}

.iphone-button-volume-down {
    position: absolute;
    left: -3px;
    top: 220px;
    width: 3px;
    height: 28px;
    background: linear-gradient(90deg, #555 0%, #666 50%, #555 100%);
    border-radius: 2px 0 0 2px;
    z-index: 1;
}

.iphone-button-power {
    position: absolute;
    right: -3px;
    top: 180px;
    width: 3px;
    height: 60px;
    background: linear-gradient(270deg, #555 0%, #666 50%, #555 100%);
    border-radius: 0 2px 2px 0;
    z-index: 1;
}

/* iPhone Display (tela) */
.iphone-display {
    position: relative;
    background: #000000;
    border-radius: var(--iphone-radius-inner);
    overflow: hidden;
    height: var(--iphone-height);
}

/* iOS Status Bar - TRANSPARENT (sem fundo preto) */
.ios-statusbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 47px;
    background: transparent;
    /* SEM fundo preto - deixa o iPhone aparecer */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Hora esquerda, icons direita */
    padding: 8px 20px 0 20px;
    z-index: 100;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: 14px;
    /* PAR - was 15px */
    font-weight: 600;
    color: #000000;
}

.ios-time {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.ios-indicators {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ios-wifi-icon {
    width: 16px;
    height: 16px;
}

.ios-battery-icon {
    width: 24px;
    height: 12px;
}

/* Dynamic Island - iPhone 14 Pro (altura reduzida + padding extra) */
.dynamic-island {
    position: absolute;
    top: 16px;
    /* Extra padding - não encostar no topo */
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 32px;
    /* Altura menor - was 37.33px */
    background: #000000;
    border-radius: 16px;
    /* Proporcional a nova altura */
    z-index: 101;
    /* NO shadow - flat black only */
}

/* Home Indicator - iOS 2025 (preto sobre fundo claro) */
.ios-home-indicator {
    width: 134px;
    height: 5px;
    background: rgba(0, 0, 0, 0.3);
    /* Preto com opacity - correto para iOS sobre fundo claro */
    border-radius: 100px;
    flex-shrink: 0;
    margin: 4px auto 0 auto;
    /* Espaço interno na área do input */
}

/* WhatsApp App Container */
.whatsapp-app {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #E5DDD5;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='wp-pattern' x='0' y='0' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23D1C4B0' opacity='0.3'/%3E%3Ccircle cx='40' cy='25' r='1' fill='%23D1C4B0' opacity='0.25'/%3E%3Ccircle cx='70' cy='15' r='1.2' fill='%23D1C4B0' opacity='0.28'/%3E%3Ccircle cx='25' cy='45' r='1.3' fill='%23D1C4B0' opacity='0.32'/%3E%3Ccircle cx='55' cy='60' r='1.1' fill='%23D1C4B0' opacity='0.27'/%3E%3Ccircle cx='15' cy='70' r='1.4' fill='%23D1C4B0' opacity='0.3'/%3E%3Cpath d='M35,35 Q38,32 40,35 Q42,38 40,40 Q38,42 35,40 Q32,38 35,35' fill='%23D1C4B0' opacity='0.15'/%3E%3Cpath d='M60,50 Q62,48 64,50 Q66,52 64,54 Q62,56 60,54 Q58,52 60,50' fill='%23D1C4B0' opacity='0.12'/%3E%3Cpath d='M20,55 L22,53 L24,55 L22,57 Z' fill='%23D1C4B0' opacity='0.13'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23wp-pattern)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    text-align: left;
}

/* WhatsApp Header VERDE - iOS 2025 */
.whatsapp-header {
    background: rgba(240, 240, 240, 0.95);
    /* Mesma cor do input bar, com leve vidro */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 112px;
    /* Status bar 47px + header 65px */
    padding-top: 47px;
    /* Offset for status bar */
    display: flex;
    align-items: center;
    padding-left: 12px;
    padding-right: 16px;
    gap: 12px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(31, 44, 52, 0.08);
}

.wa-back-btn {
    color: #1F2C34;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    /* PAR - was 17px */
    text-decoration: none;
}

.wa-back-btn i {
    width: 24px;
    height: 24px;
}

.wa-contact {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E7ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1F2C34;
    font-size: 18px;
    flex-shrink: 0;
}

.wa-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
    text-align: left;
}

.wa-contact-name {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1F2C34;
    line-height: 1.2;
}

.wa-contact-status {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: 12px;
    /* PAR - was 13px */
    font-weight: 400;
    color: #667781;
    line-height: 1.2;
}

.wa-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wa-header-actions i {
    width: 24px;
    height: 24px;
    color: #1F2C34;
    cursor: pointer;
}

/* WhatsApp Chat Area - NON-SCROLLABLE (prevents scroll hijacking) */
.whatsapp-chat {
    flex: 1;
    overflow: hidden;
    /* Prevents scroll interception - static display */
    padding: 12px 12px 40px 12px;
    /* 40px bottom - zona de seguranca para home indicator */
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    pointer-events: none;
    /* Pass through clicks/scrolls to page */
}

.whatsapp-chat::-webkit-scrollbar {
    width: 0;
    display: none;
}

/* Chat Bubbles - iOS 2025 Style */
.wa-bubble {
    max-width: 75%;
    padding: var(--bubble-padding);
    /* iOS 2025: more padding */
    position: relative;
    word-wrap: break-word;
    font-family: var(--font-body);
    font-size: 14px;
    /* PAR - was 15px */
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    text-align: left;
}

/* Bubble enviada (cliente) - direita, verde */
.wa-bubble.sent {
    background: var(--whatsapp-bubble-sent);
    align-self: flex-end;
    margin-left: auto;
    border-radius: 18px 18px 4px 18px;
    /* iOS tail bottom-right */
}

/* Bubble recebida (Queru) - esquerda, branco */
.wa-bubble.received {
    background: var(--whatsapp-bubble-received);
    align-self: flex-start;
    border-radius: 18px 18px 18px 4px;
    /* iOS tail bottom-left */
}

/* Message animation states */
.wa-bubble.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.wa-bubble.animated {
    animation: messageSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.wa-bubble-time {
    font-size: 12px;
    /* iOS 2025: larger */
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
    /* Accessible Contrast */
    margin-top: 4px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.wa-bubble.sent .wa-bubble-time {
    color: rgba(0, 0, 0, 0.70);
}

/* Check marks system */
.wa-check-marks {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    margin-left: 4px;
}

.wa-check-marks i,
.wa-check-marks svg {
    width: 16px;
    height: 16px;
}

/* Check mark states */
.wa-check-marks.sending {
    opacity: 0;
}

.wa-check-marks.sent {
    color: #8D99A5;
    /* Gray - sent */
    animation: checkAppear 0.3s ease-out forwards;
}

.wa-check-marks.delivered {
    color: #8D99A5;
    /* Gray - delivered (2 checks) */
}

.wa-check-marks.read {
    color: #34B7F1;
    /* Blue - read */
    animation: checkRead 0.3s ease-out forwards;
}

/* Pedido formatado dentro da bubble */
.wa-order {
    margin: 4px 0;
}

.wa-order-header {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.wa-order-items {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 8px 0;
}

.wa-order-total {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

/* Typing Indicator - WhatsApp iOS 2024 Accurate */
.typing-indicator {
    display: none;
    align-self: flex-start;
    background: var(--whatsapp-bubble-received);
    border-radius: 18px 18px 18px 4px;
    padding: 14px 18px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.typing-indicator.active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    animation: typingAppear 0.25s ease-out forwards;
}

@keyframes typingAppear {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.typing-dot {
    width: 7px;
    height: 7px;
    background: #667781;
    border-radius: 50%;
    animation: typingBounce 1.2s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.16s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* WhatsApp Input Bar - iOS 2025 Style */
.whatsapp-input {
    background: #F0F0F0;
    padding: 8px 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    flex-shrink: 0;
}

.wa-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-btn-plus,
.wa-btn-camera,
.wa-btn-mic {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #54656F;
    font-size: 20px;
    flex-shrink: 0;
    padding: 0;
}

.wa-btn-plus {
    font-size: 24px;
    font-weight: 600;
}

.wa-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.wa-input-field {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 10px 44px 10px 16px;
    /* Extra padding right for sticker icon */
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: 16px;
    /* PAR - was 17px */
    color: #000;
    outline: none;
    width: 100%;
}

.wa-input-field::placeholder {
    color: #86939E;
}

.wa-input-sticker {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #54656F;
    padding: 0;
}

.wa-sticker-icon {
    width: 18px;
    height: 18px;
    stroke: #54656F;
    stroke-width: 1.8;
    fill: none;
}

.wa-sticker-icon path {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Badge "Tudo Organizado" - acima do input bar */
.wa-badge {
    animation: notinhaEntrada 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.7s backwards,
        badgePulse 2s ease-in-out 1.3s infinite;
    position: absolute;
    bottom: 70px;
    /* Acima do input bar (56px) + margin */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(254, 243, 199, 0.95);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    border: 2px dashed var(--primary);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 50;
}

/* ========== ANIMATIONS (Optimized for Scroll) ========== */

/* Notinha entrance animation - SIMPLIFIED (no clip-path) */
@keyframes notinhaEntrada {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Badge pulse animation */
@keyframes badgePulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 16px rgba(217, 30, 13, 0.25);
    }
}

/* ========== MESSAGE ANIMATIONS ========== */

/* Message slide in - for messages appearing */
@keyframes messageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Check mark appearance */
@keyframes checkAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Check mark color change (gray to blue) */
@keyframes checkRead {
    0% {
        color: #8D99A5;
    }

    100% {
        color: #34B7F1;
    }
}

/* Apply entrance animations with staggered delays - OPTIMIZED */
.wa-message[data-type="mesa"] {
    animation: notinhaEntrada 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s backwards;
}

.wa-message[data-type="delivery"] {
    animation: notinhaEntrada 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.wa-message[data-type="retirada"] {
    animation: notinhaEntrada 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.45s backwards;
}

/* Badge - Inside iPhone frame, above home indicator */
.wa-badge {
    animation: notinhaEntrada 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.7s backwards,
        badgePulse 2s ease-in-out 1.3s infinite;
    position: absolute;
    bottom: 20px;
    /* Above home indicator - inside iPhone */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(254, 243, 199, 0.95);
    /* Semi-transparent yellow */
    backdrop-filter: blur(8px) saturate(180%);
    /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    /* Safari */
    border: 2px dashed var(--primary);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 12px 32px rgba(217, 30, 13, 0.15);
    /* Strong 3-layer shadow */
    z-index: 20;
    /* Above home indicator and screen */
}

.wa-badge i {
    width: 16px;
    height: 16px;
}

/* iPhone mockup entrance animation - Simple */
@keyframes iphoneEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.iphone-mockup {
    animation: iphoneEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

/* Chat Scenario Transitions */
.chat-scenario {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.chat-scenario.fade-out {
    opacity: 0;
}

.chat-scenario.fade-in {
    opacity: 1;
}

/* ========== ACCESSIBILITY - REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

    /* Disable all iPhone animations */
    .iphone-frame {
        animation: none !important;
        transform: none !important;
    }

    /* Disable badge animations */
    .wa-badge {
        animation: none !important;
    }

    /* Disable Phone CTA icon animations */
    .phone-icon i,
    .phone-icon svg {
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .phone-icon .icon-receipt-text {
        display: block !important;
        visibility: visible !important;
    }

    .phone-icon .icon-receipt,
    .phone-icon .icon-motorbike {
        display: none !important;
        visibility: hidden !important;
    }

    .phone-icon-smoke {
        display: none !important;
        visibility: hidden !important;
    }

    .header-phone:hover .phone-icon {
        transform: none !important;
    }

    /* Disable notinha entrance animations */
    .wa-message[data-type="mesa"],
    .wa-message[data-type="delivery"],
    .wa-message[data-type="retirada"] {
        animation: none !important;
    }

    /* Remove smooth scroll for auto-scroll */
    .wa-messages {
        scroll-behavior: auto !important;
    }

    /* Disable screen glow */
    @keyframes screenGlow {

        0%,
        100% {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                0 10px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
        }
    }

    /* Disable problem-solution rotations and hovers */
    .problem-side,
    .solution-side {
        transform: none !important;
    }

    .problem-side:hover,
    .solution-side:hover {
        transform: none !important;
    }

    /* Disable item transforms and icon animations */
    .ps-item:hover {
        transform: none !important;
    }

    .ps-item:hover .ps-item-icon {
        transform: none !important;
    }

    /* Disable CTA button animations */
    .ps-cta-button:hover,
    .mega-menu-primary-cta:hover,
    .btn-success:hover {
        transform: none !important;
    }

    .ps-cta-button:hover i,
    .mega-menu-primary-cta:hover i,
    .btn-success:hover i {
        transform: none !important;
    }

    /* Disable FAQ animations */
    .faq-item:hover {
        transform: none !important;
    }

    .faq-item.active .faq-icon {
        transform: none !important;
    }
}

.menu-card-content .stars {
    font-size: 12px;
    margin-bottom: 4px;
}

.menu-card-content .price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary);
}

/* ========== FEATURES ========== */
.features {
    padding: 80px 24px;
    background: var(--bg-white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FEF3C7;
    border: 1.5px dashed rgba(217, 30, 13, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #B91C1C;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(217, 30, 13, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            rgba(217, 30, 13, 0.15) 0px,
            rgba(217, 30, 13, 0.15) 4px,
            transparent 4px,
            transparent 8px);
}

.section-badge::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            rgba(217, 30, 13, 0.15) 0px,
            rgba(217, 30, 13, 0.15) 4px,
            transparent 4px,
            transparent 8px);
}

.section-badge:hover {
    transform: translateY(-1px) rotate(-0.5deg);
    border-color: rgba(217, 30, 13, 0.35);
    box-shadow: 0 4px 12px rgba(217, 30, 13, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.06);
}

.section-badge i {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
    color: var(--primary);
    animation: delivery-shake 3s ease-in-out infinite;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 40px);
    font-weight: 800;
    /* ExtraBold = Sections have PRESENCE */
    line-height: 1.15;
    /* Tighter = Authority */
    letter-spacing: -0.035em;
    /* Tight kerning = Premium feel */
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    /* Medium = More confident */
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: var(--text-light);
    margin-bottom: 60px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Feature Sections */
.feature-section {
    margin-bottom: 80px;
}

.feature-section:last-child {
    margin-bottom: 0;
}

/* Section Header - Horizontal Layout with Icon */
.feature-section-header {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Section Icon (Left side) - Visible but Decorative */
.feature-section-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary);
    stroke-width: 2.5;
    margin-top: 8px;
}

/* Section Content Column (Title + Description) with Border */
.feature-section-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    border-bottom: 2px dashed rgba(217, 30, 13, 0.5);
    padding-bottom: 16px;
}

.feature-section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--primary);
    margin: 0;
}

/* HERO Section Title (Larger) */
.feature-section.feature-section-hero .feature-section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.feature-section-description {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0em;
    color: var(--text-light);
    margin: 0;
}

/* Feature Grid (12-column system) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* ========== FEATURE CTA NUDGE - Creative Inline Conversion ========== */
/* Queru DNA: subtle text link, elegant, notinha style - não é botão */
.feature-cta-nudge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 14px 28px;
    background: #FFFBF5;
    border: 1px dashed rgba(217, 30, 13, 0.12);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
}

.feature-cta-nudge:hover {
    background: #FFF8F0;
    border-color: rgba(217, 30, 13, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 30, 13, 0.06);
}

.feature-cta-nudge-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: #5A4A3A;
    transition: color 0.3s ease;
    flex: 1 1 auto;
    min-width: 0;
}

.feature-cta-nudge:hover .feature-cta-nudge-text {
    color: #2A1F17;
}

/* Highlight text - Queru DNA "Hand-drawn" Underline */
.feature-cta-nudge-highlight {
    color: #D91E0D;
    font-weight: 700;
    position: relative;
    padding-bottom: 2px;
}

/* Undeline SVG igual ao Menu Principal */
.feature-cta-nudge-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 3' preserveAspectRatio='none'%3E%3Cpath d='M0,1.5 Q10,0.8 20,1.2 Q30,1.8 40,1.3 Q50,0.9 60,1.4 Q70,1.9 80,1.2 Q90,0.7 100,1.5' stroke='url(%23gradient)' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cdefs%3E%3ClinearGradient id='gradient' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23D91E0D;stop-opacity:1'/%3E%3Cstop offset='100%25' style='stop-color:%23BF0413;stop-opacity:1'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: blur(0.3px);
    opacity: 0.8;
}

.feature-cta-nudge:hover .feature-cta-nudge-highlight::after {
    transform: scaleX(1);
}

/* Arrow Circle - Site Green #10B981 with Pulse Animation */
.feature-cta-nudge-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex: 0 0 32px;
    aspect-ratio: 1 / 1;
    background: rgba(16, 185, 129, 0.12);
    /* Site green opacity */
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: arrowPulse 2s infinite;
    /* Always alive */
}

@keyframes arrowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        transform: scale(1);
    }
}

.feature-cta-nudge-arrow i,
.feature-cta-nudge-arrow svg {
    width: 18px;
    height: 18px;
    color: #10B981;
    stroke: #10B981;
    transition: all 0.3s ease;
}

.feature-cta-nudge:hover .feature-cta-nudge-arrow {
    background: #10B981;
    animation: none;
    /* Stop pulse on hover */
    transform: translateX(4px) scale(1.1);
}

.feature-cta-nudge:hover .feature-cta-nudge-arrow i,
.feature-cta-nudge:hover .feature-cta-nudge-arrow svg {
    color: white;
    stroke: white;
}

/* Feature Card Base - Notinha Style */
.feature-card {
    grid-column: span 4;
    background: #FFFBF5;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px dashed rgba(217, 30, 13, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.feature-card:hover {
    transform: translateY(-2px);
    background: #FFF5F0;
    border-color: rgba(217, 30, 13, 0.25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.06);
}

/* HERO Cards (span 6 columns - slightly larger) */
.feature-card[data-impact="hero"] {
    grid-column: span 6;
}

/* Remove all data-impact specific styles */
.feature-card[data-impact="compact"] {
    grid-column: span 4;
}

/* Feature Icon - NOTINHA STYLE (Amarelo + Vermelho) */
.feature-icon {
    width: 56px;
    height: 56px;
    background: #FEF3C7;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 20px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(254, 243, 199, 0.4);
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: #D91E0D;
    stroke-width: 2;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state - vermelho sólido */
.feature-card:hover .feature-icon {
    background: var(--primary);
    box-shadow: 0 4px 8px rgba(217, 30, 13, 0.25);
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: rotate(5deg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    /* Tighter = More intentional */
    letter-spacing: -0.02em;
    /* Tighter = Premium branding */
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0em;
    color: #4A4A4A;
}


/* ========== PROBLEM SOLUTION (NOTINHA DNA COMPLETO) ========== */
.problem-solution {
    padding: 80px 24px;
    background: var(--bg-warm);
}

.problem-solution-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header (Features DNA) */
.problem-solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-solution-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.problem-solution-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
}

/* Vertical Separator - PONTILHADO (igual feature-section) */
.ps-separator {
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            var(--primary) 0px,
            var(--primary) 6px,
            transparent 6px,
            transparent 12px);
    opacity: 0.5;
    align-self: stretch;
}

/* Cards - Feature-Card DNA 100% */
.problem-side,
.solution-side {
    background: #FFFBF5;
    border: 1px dashed rgba(217, 30, 13, 0.12);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);
    align-self: stretch;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Hover - Feature-Card DNA (SEM rotação) */
.problem-side:hover {
    transform: translateY(-2px);
    background: #FFF5F0;
    border-color: rgba(217, 30, 13, 0.25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.06);
}

.solution-side:hover {
    transform: translateY(-2px);
    background: #FFF5F0;
    border-color: rgba(217, 30, 13, 0.25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.06);
}

/* Header - Layout igual feature-section-header */
.ps-header {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Ícone decorativo (feature-section-icon DNA) */
.ps-header-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke-width: 2.5;
    margin-top: 8px;
}

.problem-side .ps-header-icon {
    color: var(--error);
}

.solution-side .ps-header-icon {
    color: var(--success);
}

/* Content com border-bottom pontilhado (feature-section-content DNA) */
.ps-header-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    border-bottom: 2px dashed rgba(217, 30, 13, 0.5);
    padding-bottom: 16px;
}

/* AAA - Main Title (COR PRIMÁRIA como features!) */
.ps-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--primary);
}

/* aaa - Subtitle Description */
.ps-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

.ps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Item - Limpo, sem bordas estranhas */
.ps-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    min-height: 88px;
}

/* Hover - Apenas movimento suave (sexy!) */
.problem-side .ps-item:hover {
    transform: translateX(-3px);
}

.solution-side .ps-item:hover {
    transform: translateX(3px);
}

/* Ícone Circle - PERSONALIDADE */
.ps-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Problem Icon - Fundo vermelho suave */
.problem-side .ps-item-icon {
    background: rgba(239, 68, 68, 0.12);
}

/* Solution Icon - Fundo verde suave */
.solution-side .ps-item-icon {
    background: rgba(16, 185, 129, 0.12);
}

/* Hover - Ícone vira SÓLIDO (feature-card DNA!) */
.problem-side .ps-item:hover .ps-item-icon {
    background: var(--error);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.solution-side .ps-item:hover .ps-item-icon {
    background: var(--success);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.ps-item-icon i {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-side .ps-item-icon i {
    color: var(--error);
}

.solution-side .ps-item-icon i {
    color: var(--success);
}

/* Hover - Ícone vira BRANCO (contraste AAA!) */
.problem-side .ps-item:hover .ps-item-icon i {
    color: white;
}

.solution-side .ps-item:hover .ps-item-icon i {
    color: white;
}

.ps-item-text {
    flex: 1;
    padding-top: 2px;
}

/* AA - Item Title com COR no hover (clareza ICP!) */
.ps-item-text strong {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--text-dark);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover - Título vermelho/verde (povão entende!) */
.problem-side .ps-item:hover .ps-item-text strong {
    color: var(--error);
}

.solution-side .ps-item:hover .ps-item-text strong {
    color: var(--success);
}

/* aa - Item Description */
.ps-item-text p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
}

/* ========== PROBLEM SOLUTION CTA ========== */
.ps-cta-section {
    margin-top: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Botão Notinha V2 - EXCLUSIVO QUERU */
.ps-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: #FEF3C7;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 8px;
    border: 2px dashed var(--primary);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(217, 30, 13, 0.15),
        0 2px 8px rgba(254, 243, 199, 0.3);
    position: relative;
    overflow: hidden;
}

/* Hover - Inversão dramática (notinha vira carimbo!) */
.ps-cta-button:hover {
    background: var(--primary);
    color: white;
    border-style: solid;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(217, 30, 13, 0.3),
        0 4px 12px rgba(217, 30, 13, 0.2);
}

.ps-cta-button i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-cta-button:hover i {
    transform: scale(1.1) rotate(-5deg);
}

/* Variante Verde */
/* Variante Verde V3 (The 'Master Ticket' - McDonald's Level CTR) */
/* Concept: A "Physical" Ticket/Button that begs to be pressed. */
.ps-cta-button.green {
    /* Background: Deep, Juicy Gradient (Not Flat) */
    background: linear-gradient(180deg, #10B981 0%, #059669 100%);

    /* Text: White, Heavy, Readable (Povão) */
    color: #FFFFFF;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

    /* Border: None (The gradient defines the shape) */
    border: none;

    /* The "Notinha" DNA: A Dashed 'Cut' Line inside */
    background-image: linear-gradient(180deg, #10B981 0%, #059669 100%);
    box-shadow:
        /* Top Highlight (Glass) */
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        /* Bottom Shade (3D Weight) */
        0 4px 0 #047857,
        /* Soft Drop Shadow */
        0 8px 20px rgba(5, 150, 105, 0.3);

    /* Shape */
    border-radius: 12px;
    transform: translateY(0);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy press */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* UX Fix: Affordance */
}

/* The "Perforation" Detail - Sexy Micro-detail */
.ps-cta-button.green::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    pointer-events: none;
}

/* Hover: Lift & Brighten (Sexy Interaction) */
.ps-cta-button.green:hover {
    background: linear-gradient(180deg, #34D399 0%, #10B981 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 6px 0 #047857,
        /* Shadow grows as it lifts */
        0 12px 24px rgba(5, 150, 105, 0.4);
}

/* Active: The "Click" (Satisfying Tactile Feedback) */
.ps-cta-button.green:active {
    transform: translateY(4px);
    /* Pushes down */
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 #047857,
        /* Shadow collapsed */
        0 0 0 rgba(5, 150, 105, 0);
}


/* Texto persuasivo abaixo (Russell Brunson stack) */
.ps-cta-subtext {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.ps-cta-subtext span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ps-cta-subtext span::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
}

/* ========== MENU SECTION ========== */
.menu-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-warm);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover,
.category-item.active {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.category-item:hover .category-icon i,
.category-item.active .category-icon i {
    color: white;
}

.category-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.category-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.menu-item-card {
    background: var(--bg-warm);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.menu-item-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    position: relative;
}

.menu-item-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-white);
    padding: 6px 12px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-sm);
}

.menu-item-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.menu-item-favorite i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.menu-item-content {
    padding: 20px;
}

.menu-item-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0em;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.menu-item-description {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    color: var(--text-light);
    margin-bottom: 16px;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.menu-item-order {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item-order:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.menu-item-order i {
    width: 20px;
    height: 20px;
    color: white;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 80px 24px;
    background: var(--bg-warm);
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonials-image {
    position: relative;
    height: 500px;
}

.chef-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
}

.chef-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
}

.testimonials-content {
    position: relative;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.testimonial-stars {
    color: #FCD34D;
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: var(--text-medium);
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    border-radius: 50%;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0em;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    color: var(--text-light);
}

.reviewer-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

/* ========== FAQ ========== */
/* ========== FAQ V2 (NOTINHA DNA + SEO) ========== */
.faq {
    padding: 80px 24px;
    background: var(--bg-warm);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

/* FAQ Item - Notinha Style */
.faq-item {
    background: #FFFBF5;
    border: 1px dashed rgba(217, 30, 13, 0.12);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 30, 13, 0.25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.06);
}

/* Question Button - Destaque Vermelho */
.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(217, 30, 13, 0.2) 20%,
            rgba(217, 30, 13, 0.2) 80%,
            transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::after {
    opacity: 1;
}

.faq-question:hover {
    color: var(--error);
}

/* Icon - HelpCircle */
.faq-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--success);
}

/* Answer - Padding Maior */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 8px 28px 28px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0em;
    color: var(--text-dark);
}

.faq-answer-content strong {
    color: var(--primary);
    font-weight: 600;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
}

/* FAQ Inline CTA Nudge (inside answer, after content) */
.faq-answer .feature-cta-nudge {
    display: flex;
    width: auto;
    margin: 16px 28px 20px 28px;
    border-radius: 10px;
}

/* FAQ CTA Section */
.faq-cta {
    margin-top: 60px;
    padding: 40px;
    background: #FEF3C7;
    border: 2px dashed var(--primary);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(217, 30, 13, 0.15);
}

.faq-cta-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-cta-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.faq-cta-subtext {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-subtext span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.faq-cta-subtext span::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    align-items: center;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
    /* Prevent line breaks on menu items */
}

/* ========== CTA ========== */
.cta {
    position: relative;
    padding: 100px 24px 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.35) 0px,
            rgba(255, 255, 255, 0.35) 10px,
            transparent 10px,
            transparent 20px);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.35) 0px,
            rgba(255, 255, 255, 0.35) 10px,
            transparent 10px,
            transparent 20px);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 2px dashed rgba(255, 255, 255, 0.35);
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: white;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.cta-badge i {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    color: white;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.cta-value-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-value-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-value-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.cta-value-icon i {
    width: 26px;
    height: 26px;
    stroke-width: 2.5;
    color: white;
}

.cta-value-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.3;
}

.cta-value-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.btn-white {
    background: white;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 800;
    padding: 24px 56px;
    width: 100%;
    /* Responsive Fix */
    max-width: 560px;
    /* Was min-width: 560px (Bug) */
    justify-content: center;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25),
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 30, 13, 0.04) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-white::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    will-change: transform;
}

.btn-white:hover::before {
    opacity: 1;
}

.btn-white:hover::after {
    transform: translateX(100%);
}

.btn-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.25);
}

.btn-white:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-white i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: transform 0.35s ease;
    position: relative;
    z-index: 1;
}

.btn-white:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.cta-footer-note {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-footer-note i {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* ========== FOOTER - PREMIUM DNA ========== */
.footer {
    background: var(--footer-bg);
    padding: 88px 24px 48px;
    position: relative;
    overflow: visible;
    border-top: 1px solid var(--footer-border);
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(228, 87, 78, 0.08), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08), transparent 35%);
    pointer-events: none;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 0.9fr;
    gap: 36px;
    align-items: start;
    padding: 28px;
    background: var(--footer-card);
    border: 1px solid var(--footer-border);
    border-radius: 18px;
    box-shadow: var(--footer-shadow);
    backdrop-filter: blur(8px);
    overflow: visible;
}

.footer-logo-area {
    display: flex;
    align-items: flex-start;
}

.footer-logo-lockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-img {
    height: 132px;
    width: auto;
    display: block;
    margin-left: -32px;
    /* Compensa espaço interno do SVG para alinhar à esquerda (desktop) */
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--footer-text);
    line-height: 1.6;
    max-width: 320px;
}

.footer-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
}

.footer-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--footer-pill);
    border: 1px solid var(--footer-pill-border);
    color: var(--footer-text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    justify-content: center;
    min-height: 36px;
    width: 100%;
}

.footer-meta-item i {
    width: 16px;
    height: 16px;
    color: var(--success-dark);
    stroke-width: 2.3;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 26px 40px;
}

.footer-col {
    text-align: left;
}

.footer-col-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--footer-text);
    margin: 0 0 16px 0;
}

.footer-col-title i {
    width: 16px;
    height: 16px;
    stroke-width: 2.4;
    color: var(--footer-accent);
    display: block;
    transform: translateY(1px);
    /* alinhamento óptico com texto */
}

.footer-col-title svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.4;
    color: var(--footer-accent);
    flex-shrink: 0;
    display: block;
    transform: translateY(1px);
    /* alinhamento óptico com texto */
}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: visible;
}

.footer-col-list li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--footer-subtext);
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: visible;
}

.footer-col-list a {
    color: var(--footer-subtext);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* Fix: Ensure buttons never get the underline artifact */
.footer-col-list a:not(.btn) {
    padding: 3px 0;
    background: transparent;
    /* Ensure no accidental background */
}

/* Underline effect ONLY for non-buttons */
.footer-col-list a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--footer-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    border-radius: 999px;
    opacity: 0.8;
}

.footer-col-list a:hover {
    color: var(--footer-text);
    transform: translateY(-1px);
}

.footer-col-list a:not(.btn):hover::after {
    transform: scaleX(1);
}

.footer-col-list li:not(:has(a)) {
    color: var(--footer-subtext);
}

/* Botão verde no footer segue o mesmo padrão global */
.footer-inline-icon i,
.footer-inline-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
    color: var(--success-dark);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(1px);
    /* alinhamento óptico com texto */
}

.footer-inline-icon .fa-brands {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 1;
}

.footer-inline-icon.primary i,
.footer-inline-icon.primary svg {
    color: var(--primary);
}

.footer-contact-cta {
    margin-top: 10px;
    display: flex;
    padding-bottom: 5px;
}

.footer-contact-cta .btn {
    width: 100%;
    justify-content: center;
}

.footer-social-proof-box {
    text-align: left;
    padding: 18px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid var(--footer-border);
    box-shadow: 0 14px 38px rgba(228, 87, 78, 0.12);
    width: 100%;
    max-width: none;
}

.footer-proof-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--footer-accent);
    margin: 0 0 8px 0;
}

.footer-proof-context {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--footer-subtext);
    margin: 0 0 14px 0;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 18px;
    background: var(--footer-accent-soft);
    color: var(--footer-text);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
    border: 1px dashed var(--footer-accent);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(228, 87, 78, 0.16);
}

.footer-cta-button:hover {
    background: var(--footer-accent);
    color: #FFFFFF;
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(228, 87, 78, 0.28);
}

.footer-cta-button i {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
}

.footer-whatsapp-area {
    margin: 28px 0 36px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-whatsapp-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 18px;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.footer-whatsapp-link i {
    width: 22px;
    height: 22px;
    color: var(--success-dark);
    stroke-width: 2.4;
}

.footer-whatsapp-link:hover {
    color: var(--footer-accent);
}

.footer-whatsapp-link:hover i {
    color: var(--footer-accent);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--footer-border);
}

.footer-copyright {
    justify-self: start;
    text-align: left;
}

.footer-bottom .brandpage-credit {
    justify-self: center;
    margin: 0;
}

.footer-legal-links {
    justify-self: end;
    display: flex;
    gap: 16px;
}

@media (max-width: 968px) {
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        justify-self: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-self: center;
        justify-content: center;
    }
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--footer-subtext);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--footer-subtext);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--footer-accent);
}

/* Brandpage Credit (Simplicidade Premium) */
.brandpage-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brandpage-credit:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.08);
    /* Subtle border interaction */
}

.brandpage-credit:hover .brandpage-name {
    color: var(--primary);
    /* Queru Red #D91E0D */
}

.brandpage-credit:hover .brandpage-arrow {
    fill: var(--primary);
    opacity: 1;
    transform: translate(2px, -2px);
    /* Sexy arrow movement */
}

.brandpage-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.brandpage-text {
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-light);
    /* Softer secondary text */
}

.brandpage-name {
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 300ms ease;
    color: var(--text-dark);
}

.brandpage-arrow {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.3;
    /* Subtle initially */
    transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}



/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .header {
        height: var(--header-height-mobile);
    }

    .header-content {
        gap: 24px;
        padding: 0 24px;
    }

    /* Hide phone and separator on tablet */
    .header-phone,
    .header-separator {
        display: none;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .logo-text {
        font-size: 26px;
    }

    .nav-menu {
        gap: 28px;
    }

    .nav-link {
        font-size: 15px;
        padding: 7px 3px;
    }

    .nav-link-dropdown {
        font-size: 15px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 14px;
    }

    .btn-success {
        font-size: 14px;
        padding: 11px 20px;
    }

    /* Footer tablet: breathing room without breaking layout */
    .footer {
        padding: 72px 20px 90px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }

    .footer-logo-area {
        align-items: flex-start;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 18px 0;
    }

    .footer-social-proof-box {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    /* Mega Menu Responsive */
    .mega-menu-dropdown {
        left: 0;
        transform: translateX(0);
        width: 100vw;
        border-radius: 0;
        max-width: none;
    }

    .mega-menu-dropdown.active {
        transform: translateX(0);
    }

    .mega-menu-content {
        padding: 32px 20px 20px 20px;
        gap: 28px;
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu-column-hero {
        grid-column: 1 / -1;
    }

    .mega-menu-section-title {
        gap: 8px;
        margin-bottom: 12px;
    }

    .mega-menu-section-title .title-icon {
        width: 20px;
        height: 20px;
    }

    .mega-menu-section-title h3 {
        font-size: 16px;
        padding-bottom: 6px;
    }

    .mega-menu-item {
        font-size: 14px;
        padding: 10px 12px;
    }

    .mega-menu-cta-section {
        padding: 20px 20px;
    }

    .mega-menu-primary-cta {
        font-size: 15px;
        padding: 12px 28px;
    }

    .mega-menu-secondary-link {
        font-size: 13px;
    }

    .mega-menu-item i {
        width: 20px;
        height: 20px;
        padding: 8px;
    }

    /* Features Grid Responsive (Tablet) */
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .feature-card {
        grid-column: span 3;
    }

    .feature-card[data-impact="hero"] {
        grid-column: span 3;
    }

    .feature-card[data-impact="compact"] {
        grid-column: span 3;
    }

    .feature-section.feature-section-hero .feature-section-title {
        font-size: 32px;
    }

    .feature-section-title {
        font-size: 28px;
    }

    .feature-section-description {
        font-size: 17px;
    }

    .feature-section-icon {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 19px;
    }

    .feature-text {
        font-size: 15px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        padding: 12px;
    }

    .feature-icon i {
        width: 24px;
        height: 24px;
    }

    /* Como Funciona - Tablet */
    .how-it-works {
        padding: 80px 24px;
    }

    .how-it-works-header {
        margin-bottom: 60px;
    }

    .hiw-timeline {
        gap: 32px;
        margin-bottom: 60px;
    }

    .hiw-timeline::before {
        left: 12%;
        right: 12%;
    }

    .hiw-step-number {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .hiw-step-icon {
        width: 56px;
        height: 56px;
    }

    .hiw-step-icon i {
        width: 28px;
        height: 28px;
    }

    .hiw-step-title {
        font-size: 20px;
    }

    .hiw-step-description {
        font-size: 15px;
    }

    .hiw-pain-section {
        padding: 40px 32px;
    }

    .hiw-pain-title {
        font-size: 28px;
    }

    .hiw-pain-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hiw-pain-card {
        padding: 22px;
    }


    .mega-menu-footer {
        padding: 14px 20px;
        font-size: 13px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content,
    .hero-visual {
        grid-column: 1 / -1;
    }

    .hero-title {
        font-size: clamp(40px, 8vw, 56px);
    }

    .whatsapp-mockup {
        max-width: 380px;
    }

    .wa-messages {
        height: 420px;
        /* Increased for tablet */
        gap: 18px;
    }

    .hero-visual {
        padding-bottom: 25px;
        /* Badge space for tablet */
    }

    /* iPhone mockup adjustments for tablet */
    .iphone-container {
        width: 360px;
        /* Smaller for tablet */
    }

    .iphone-frame {
        transform: none;
        /* Remove 3D rotation on tablet */
        animation: iphoneEntradaTablet 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    }

    @keyframes iphoneEntradaTablet {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .wa-message {
        padding: 14px;
        min-height: 145px;
    }

    .section-title {
        font-size: clamp(32px, 6vw, 48px);
    }

    .feature-section-title {
        font-size: 32px;
    }

    .ps-title {
        font-size: 32px;
    }

    .problem-solution-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ps-separator {
        display: none;
    }

    .ps-cta-button {
        font-size: 16px;
        padding: 16px 32px;
    }

    .ps-cta-subtext {
        font-size: 13px;
        gap: 12px;
    }

    .menu-content {
        grid-template-columns: 1fr;
    }

    .menu-categories {
        flex-direction: row;
        overflow-x: auto;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    /* Footer Responsive - Tablet */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-social-proof-box {
        min-width: auto;
    }
}

@media (max-width: 640px) {

    /* ========== GLOBAL MOBILE OVERFLOW PREVENTION ========== */
    /* Senior fix: Prevent ANY element from causing horizontal scroll */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box !important;
    }

    img,
    svg,
    video,
    iframe {
        max-width: 100% !important;
        height: auto !important;
    }

    .footer,
    .footer-main,
    .footer-columns,
    .footer-col,
    .footer-social-proof-box,
    .footer-logo-area {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .header-content {
        flex-wrap: wrap;
        padding: 0 16px;
    }

    .logo {
        flex: 1;
    }

    /* Header logo image - prevent oversized on mobile */
    .logo img,
    .header .logo img {
        height: 36px !important;
        /* Smaller on mobile */
        max-height: 36px !important;
        width: auto !important;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .logo-text {
        font-size: 24px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 8px 0;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        white-space: nowrap;
        font-size: 14px;
    }

    .nav-link-dropdown {
        white-space: nowrap;
        font-size: 14px;
    }

    /* Mobile: Mega Menu Single Column */
    .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 24px 16px 16px 16px;
        gap: 20px;
    }

    .mega-menu-column-hero {
        grid-column: 1;
    }

    .mega-menu-section-title {
        gap: 8px;
        margin-bottom: 12px;
    }

    .mega-menu-section-title .title-icon {
        width: 18px;
        height: 18px;
    }

    .mega-menu-section-title h3 {
        font-size: 15px;
        padding-bottom: 6px;
    }

    .mega-menu-item {
        font-size: 14px;
        padding: 8px 12px;
    }

    .mega-menu-cta-section {
        padding: 16px;
        gap: 10px;
    }

    .mega-menu-primary-cta {
        font-size: 14px;
        padding: 12px 24px;
    }

    .mega-menu-secondary-link {
        font-size: 12px;
    }

    .mega-menu-footer {
        padding: 12px 16px;
        font-size: 12px;
        flex-direction: column;
        gap: 4px;
    }

    /* Features Grid Responsive (Mobile) */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card[data-impact="hero"],
    .feature-card[data-impact="compact"] {
        grid-column: span 1;
    }

    .feature-section.feature-section-hero .feature-section-title {
        font-size: 28px;
    }

    .feature-section-title {
        font-size: 24px;
    }

    .feature-section-description {
        font-size: 16px;
    }

    .feature-section-header {
        gap: 12px;
    }

    .feature-section-icon {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-text {
        font-size: 15px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .feature-icon i {
        width: 24px;
        height: 24px;
    }

    .feature-card[data-impact="hero"] {
        padding: 24px;
    }

    /* Como Funciona - Mobile */
    .how-it-works {
        padding: 60px 20px;
    }

    .how-it-works-header {
        margin-bottom: 48px;
    }

    .hiw-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 48px;
    }

    /* Hide horizontal line on mobile */
    .hiw-timeline::before {
        display: none;
    }

    /* ========== MOBILE TIMELINE - LEFT RAIL PATTERN ========== */
    /* Numbers on left with vertical line, content on right */

    .hiw-step {
        position: relative;
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto auto;
        gap: 0 16px;
        padding-bottom: 32px;
        text-align: left;
    }

    .hiw-step:last-child {
        padding-bottom: 0;
    }

    /* Number stays in left column, spans all rows */
    .hiw-step-number {
        grid-column: 1;
        grid-row: 1 / -1;
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin: 0;
        align-self: start;
        position: relative;
        z-index: 2;
    }

    /* Vertical connector line - on left rail, below number */
    .hiw-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 24px;
        transform: translateX(-50%);
        top: 56px;
        width: 2px;
        height: calc(100% - 48px);
        background: repeating-linear-gradient(to bottom,
                var(--primary) 0px,
                var(--primary) 4px,
                transparent 4px,
                transparent 8px);
        opacity: 0.3;
        z-index: 1;
    }

    /* Icon in right column, row 1 */
    .hiw-step-icon {
        grid-column: 2;
        grid-row: 1;
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
        justify-self: start;
    }

    .hiw-step-icon i {
        width: 22px;
        height: 22px;
    }

    /* Title in right column, row 2 */
    .hiw-step-title {
        grid-column: 2;
        grid-row: 2;
        font-size: 18px;
        margin-bottom: 6px;
    }

    /* Description in right column, row 3 */
    .hiw-step-description {
        grid-column: 2;
        grid-row: 3;
        font-size: 14px;
        max-width: 100%;
        line-height: 1.5;
    }

    .hiw-pain-section {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .hiw-pain-header {
        margin-bottom: 28px;
    }

    .hiw-pain-badge {
        padding: 6px 16px;
        font-size: 11px;
    }

    .hiw-pain-title {
        font-size: 24px;
    }

    .hiw-pain-subtitle {
        font-size: 15px;
    }

    .hiw-pain-grid {
        gap: 16px;
    }

    .hiw-pain-card {
        padding: 20px;
    }

    .hiw-pain-card-title {
        font-size: 17px;
    }

    .hiw-pain-card-desc {
        font-size: 14px;
    }

    .hiw-pain-vs {
        font-size: 10px;
        padding: 4px 12px;
        top: -10px;
        right: 12px;
    }

    .hiw-cta-section {
        margin-top: 40px;
    }

    /* Fix: Remove min-width that causes overflow */
    .hiw-cta-section .ps-cta-button {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        font-size: 17px;
        padding: 18px 24px;
        box-sizing: border-box;
    }

    .hiw-cta-section .ps-cta-button i {
        width: 22px;
        height: 22px;
    }

    /* Mobile: Sticky Bottom WhatsApp Button - HEADER ONLY */
    .header .btn-success {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
        z-index: 1001;
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 700;
        font-weight: 700;
        animation: pulse 2.5s ease-in-out infinite;
        display: flex !important;
        /* Override the header hide rule */
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.02);
        }
    }

    /* ========== MOBILE TYPOGRAPHY & SPACING (SYSTEMATIC FIX) ========== */

    /* Sections: Reduced vertical padding */
    section {
        padding: 48px 20px;
    }

    /* Hero: TIGHT to header - minimal top, room for sticky button */
    .hero {
        padding: 0;
        min-height: auto;
        /* Let content define height */
    }

    .hero-container {
        padding: 24px 20px 100px;
        gap: 20px;
    }

    /* Containers: Full width with padding */
    .container,
    .features-container,
    .how-it-works-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* ========== HEADER MOBILE FIXES ========== */

    /* Show button in header on mobile (compact, aligned right) */
    .header .btn-success.header-cta-desktop {
        display: inline-flex !important;
        padding: 10px 16px;
        font-size: 14px;
        position: static;
        width: auto;
        max-width: none;
    }

    /* Separator before hamburger */
    .header-mobile-separator {
        display: block;
        width: 1px;
        height: 20px;
        background: rgba(217, 30, 13, 0.2);
        margin: 0 8px;
        flex-shrink: 0;
    }

    /* Toggle button text for mobile */
    .header-phone {
        display: none !important;
    }

    /* Header FIXED on mobile (more reliable than sticky) */
    .header {
        position: fixed !important;
        top: var(--topbar-height-mobile) !important;
        left: 0 !important;
        right: 0 !important;
        padding: 8px 0;
        z-index: 1000;
    }

    /* Compensate for fixed header + sticky topbar */
    body {
        padding-top: calc(var(--header-height-mobile, 70px) + var(--topbar-height-mobile, 44px));
    }

    .header-content {
        min-height: 48px;
        padding: 0 12px;
        gap: 8px;
        flex-wrap: nowrap !important;
    }

    /* Protect logo from flex compression */
    .logo {
        flex-shrink: 0 !important;
    }

    .logo img {
        height: 28px !important;
        width: auto !important;
    }

    /* Compact button on mobile */
    .header .btn-success.header-cta-desktop {
        padding: 8px 14px !important;
        font-size: 14px !important;
        flex-shrink: 0;
    }

    /* Mobile menu button (hamburger) - smaller */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        order: 3;
        flex-shrink: 0;
    }

    .mobile-menu-icon {
        width: 24px;
        height: 24px;
        position: relative;
    }

    .mobile-menu-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-dark);
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-icon span:nth-child(1) {
        top: 4px;
    }

    .mobile-menu-icon span:nth-child(2) {
        top: 11px;
    }

    .mobile-menu-icon span:nth-child(3) {
        top: 18px;
    }

    /* ========== PREMIUM MOBILE MENU SYSTEM ========== */

    /* Hamburger Icon */
    .hamburger-icon {
        width: 24px;
        height: 20px;
        position: relative;
    }

    .hamburger-icon span {
        display: block;
        width: 100%;
        height: 2.5px;
        background: var(--text-dark);
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger-icon span:nth-child(1) {
        top: 0;
    }

    .hamburger-icon span:nth-child(2) {
        top: 8px;
        width: 75%;
    }

    .hamburger-icon span:nth-child(3) {
        top: 16px;
    }

    /* Hamburger X State */
    .mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
        top: 8px;
        transform: rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
        top: 8px;
        transform: rotate(-45deg);
    }

    /* Mobile Menu Container */
    .mobile-menu {
        display: block;
        /* Override desktop display:none */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        pointer-events: none;
        visibility: hidden;
    }

    .mobile-menu.active {
        pointer-events: auto;
        visibility: visible;
    }

    /* Backdrop with Blur */
    .mobile-menu-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .mobile-menu.active .mobile-menu-backdrop {
        opacity: 1;
    }

    /* Drawer Panel */
    .mobile-menu-drawer {
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100%;
        background: var(--bg-warm);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        border-left: 2px dashed rgba(217, 30, 13, 0.15);
    }

    .mobile-menu.active .mobile-menu-drawer {
        transform: translateX(0);
    }

    /* Menu Header - Premium */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        background: linear-gradient(180deg,
                rgba(250, 241, 230, 0.95) 0%,
                rgba(250, 241, 230, 0.85) 100%);
        border-bottom: 3px dashed rgba(217, 30, 13, 0.15);
        flex-shrink: 0;
        position: relative;
    }

    /* Subtle warmth overlay */
    .mobile-menu-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at top right,
                rgba(217, 30, 13, 0.03) 0%,
                transparent 70%);
        pointer-events: none;
    }

    .mobile-menu-logo {
        position: relative;
        z-index: 1;
    }

    .mobile-menu-logo-img {
        height: 40px;
        width: auto;
        display: block;
        filter: drop-shadow(0 2px 4px rgba(217, 30, 13, 0.08));
    }

    /* Close Button - "Notinha" DNA Style */
    .mobile-menu-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;

        /* Notinha style - matches step numbers */
        background: #FEF3C7;
        border: 2px dashed var(--primary, #D91E0D);
        border-radius: 50%;

        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
        position: relative;
        z-index: 1;

        /* Subtle notinha shadow */
        box-shadow:
            0 2px 8px rgba(217, 30, 13, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    /* Hover - Inverts like step numbers */
    .mobile-menu-close:hover {
        background: var(--primary, #D91E0D);
        border-style: solid;
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(217, 30, 13, 0.25);
    }

    .mobile-menu-close:hover svg,
    .mobile-menu-close:hover i {
        stroke: white !important;
        color: white !important;
    }

    /* Active state */
    .mobile-menu-close:active {
        transform: scale(0.95);
    }

    .mobile-menu-close svg,
    .mobile-menu-close i {
        width: 22px !important;
        height: 22px !important;
        stroke: var(--primary, #D91E0D);
        color: var(--primary, #D91E0D);
        stroke-width: 2.5;
        transition: all 0.3s ease;
    }

    /* Fallback X */
    .mobile-menu-close:empty::before {
        content: '✕';
        font-size: 20px;
        font-weight: 800;
        color: var(--primary, #D91E0D);
        font-family: var(--font-display, 'Nunito Sans', sans-serif);
    }

    .mobile-menu-close:empty:hover::before {
        color: white;
    }

    /* Navigation Links */
    .mobile-menu-nav {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 0;
        font-family: var(--font-display);
        font-size: 17px;
        font-weight: 700;
        color: var(--text-dark);
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: color 0.2s;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
        color: var(--primary);
    }

    .mobile-nav-link svg {
        width: 22px;
        height: 22px;
        stroke: var(--primary);
        opacity: 0.7;
    }

    /* Accordion */
    .mobile-nav-accordion {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-accordion-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 0;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--font-display);
        font-size: 17px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .mobile-nav-link-content {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .mobile-nav-link-content svg {
        width: 22px;
        height: 22px;
        stroke: var(--primary);
        opacity: 0.7;
    }

    .accordion-chevron {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .mobile-nav-accordion-trigger[aria-expanded="true"] .accordion-chevron {
        transform: rotate(180deg);
    }

    .mobile-nav-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-nav-accordion-trigger[aria-expanded="true"]+.mobile-nav-accordion-content {
        max-height: 600px;
    }

    /* Menu Groups */
    .mobile-menu-group {
        padding: 12px 0 16px 38px;
    }

    .mobile-menu-group-title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 12px;
    }

    .mobile-menu-group-title svg {
        width: 16px;
        height: 16px;
    }

    .mobile-menu-item {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.2s;
    }

    .mobile-menu-item:hover {
        color: var(--primary);
    }

    /* Menu Footer CTA */
    .mobile-menu-footer {
        padding: 24px;
        /* More space for shadow */
        border-top: 2px dashed rgba(217, 30, 13, 0.1);
        background: rgba(255, 255, 255, 0.5);
        /* Ensure shadow isn't clipped */
        overflow: visible;
    }

    .mobile-menu-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding: 16px 24px;
        text-decoration: none;
        /* Ensure it behaves like the desktop button */
        -webkit-tap-highlight-color: transparent;
    }

    /* Fix: Remove any hover/active specific overrides here that conflict with .btn-success */
    .mobile-menu-cta svg {
        width: 20px;
        height: 20px;
    }

    .mobile-menu-phone {
        margin-top: 16px;
        text-align: center;
        font-size: 14px;
        color: var(--text-muted);
    }

    .mobile-menu-phone a {
        color: var(--primary);
        font-weight: 700;
        text-decoration: none;
    }

    /* Hide desktop nav on mobile */
    .nav-menu {
        display: none !important;
    }

    /* ========== TYPOGRAPHY SCALE (MOBILE OPTIMIZED) ========== */

    /* Hero Title: Premium Impact (Ive: Make it Unmissable) */
    .hero-title {
        font-size: clamp(32px, 8.5vw, 40px);
        /* Larger for impact */
        line-height: 1.15;
        /* Tighter for drama */
        letter-spacing: -0.025em;
        /* Precise kerning */
        margin-bottom: 20px;
        max-width: 100%;
        font-weight: 800;
        /* Heavier weight on mobile */
    }

    /* Section Titles */
    .section-title {
        font-size: clamp(24px, 6vw, 28px);
        /* Was clamp(28px, 8vw, 32px) */
        line-height: 1.25;
        margin-bottom: 32px;
    }

    /* Subtitles: Better readability */
    .hero-subtitle,
    .section-subtitle {
        font-size: 16px;
        /* Was 18px */
        line-height: 1.7;
        /* Was 1.6, more breathing room */
        margin-bottom: 28px;
    }

    /* Hero Badge: Social Proof (Wheeler: Trust Signal) */
    .hero-badge {
        padding: 8px 16px;
        margin: 0 auto 16px;
        /* Tight to title */
        font-size: 13px;
        font-weight: 700;
    }

    /* ========== BUTTONS (WCAG AA COMPLIANT) ========== */

    /* Primary CTA: Full width, unmissable (Jobs: One Clear Action) */
    .ps-cta-button,
    .hero-cta .ps-cta-button {
        width: 100%;
        padding: 18px 24px;
        font-size: 17px;
        font-weight: 800;
        min-height: 56px;
        /* Larger for primary action */
    }

    /* Secondary Button: Full width */
    .btn-secondary,
    .btn,
    .hero-cta .btn {
        width: 100%;
        padding: 16px 24px;
        /* Was 18px 40px */
        font-size: 16px;
        /* Was 18px */
        min-height: 48px;
        /* WCAG AA minimum touch target */
    }

    /* Button icons: Smaller on mobile */
    .ps-cta-button i,
    .ps-cta-button svg,
    .btn-secondary i,
    .btn-secondary svg,
    .btn i,
    .btn svg {
        width: 20px;
        /* Was 24px */
        height: 20px;
    }

    /* Button container: Stack vertically */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    /* ========== HERO SECTION (MOBILE LAYOUT) ========== */

    .hero-content {
        grid-column: span 12;
        max-width: 100%;
    }

    .hero-visual {
        grid-column: span 12;
        padding-bottom: 25px;
    }

    /* ========== IPHONE MOCKUP (MOBILE ADAPTATION) ========== */

    .whatsapp-mockup {
        max-width: 100%;
        margin-top: 32px;
        border-radius: 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
            0 2px 8px rgba(0, 0, 0, 0.08);
    }

    /* Hide iPhone frame decorations on mobile */
    .iphone-frame {
        background: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        transform: none;
        animation: none;
    }

    .iphone-statusbar,
    .iphone-island,
    .iphone-home-indicator {
        display: none;
    }

    .iphone-screen {
        background: transparent;
        border-radius: 0;
    }

    /* WhatsApp Components */
    .wa-header {
        padding: 12px 16px;
    }

    .wa-logo-icon {
        width: 28px;
        height: 28px;
    }

    .wa-restaurant-name {
        font-size: 14px;
    }

    .wa-subtitle {
        font-size: 10px;
    }

    .wa-messages {
        padding: 16px;
        height: 380px;
        gap: 16px;
    }

    .wa-badge {
        bottom: -15px;
    }

    /* ========== MENU ITEMS ========== */

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-item-price {
        font-size: 28px;
    }

    .wa-message {
        padding: 12px;
        min-height: 140px;
        /* Slightly smaller for mobile */
    }

    .wa-message-header span {
        font-size: 13px;
    }

    .wa-order-item {
        font-size: 13px;
        grid-template-columns: 35px 1fr auto;
        padding: 6px 0;
    }

    .wa-message .wa-order-total {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .wa-total-value {
        font-size: 14px;
    }

    .wa-badge {
        bottom: 16px;
        padding: 6px 12px;
        font-size: 11px;
    }

    /* CTA Responsive */
    .cta {
        padding: 70px 20px 80px;
    }

    .cta h2 {
        font-size: clamp(32px, 8vw, 40px);
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .cta-subtitle {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .cta-badge {
        font-size: 11px;
        padding: 8px 18px;
        margin-bottom: 24px;
    }

    .cta-value-props {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 36px;
    }

    .cta-value-item {
        padding: 16px;
        flex-direction: row;
        text-align: left;
        gap: 14px;
    }

    .cta-value-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .cta-value-icon i {
        width: 22px;
        height: 22px;
    }

    .cta-value-title {
        font-size: 15px;
        text-align: left;
    }

    .cta-value-desc {
        font-size: 12px;
        text-align: left;
    }

    .btn-white {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        font-size: 17px;
        padding: 18px 36px;
    }

    .cta-footer-note {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
        text-align: center;
    }

    /* ========== FOOTER RESPONSIVE - MOBILE (LEAN, TOUCH-FIRST) ========== */
    .footer {
        padding: 56px 16px 96px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "proof"
            "columns";
        padding: 20px;
        gap: 28px;
    }

    .footer-logo-area {
        grid-area: logo;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-logo-lockup {
        align-items: center;
        gap: 8px;
    }

    .footer-logo-img {
        height: 118px;
        margin: 0 auto;
    }

    .footer-tagline {
        text-align: center;
        font-size: 14px;
        line-height: 1.6;
        max-width: 320px;
        margin: 6px auto 0;
    }

    .footer-meta {
        width: 100%;
        max-width: 320px;
        margin: 12px auto 0;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-meta-item {
        font-size: 14px;
        padding: 10px 14px;
        min-height: 40px;
        gap: 8px;
    }

    .footer-columns {
        grid-area: columns;
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 18px;
        border-top: 1px dashed rgba(228, 87, 78, 0.18);
    }

    .footer-col {
        align-items: flex-start;
        text-align: left;
    }

    .footer-col-title {
        font-size: 16px;
        gap: 8px;
        margin-bottom: 14px;
        justify-content: flex-start;
    }

    .footer-col-list {
        gap: 12px;
    }

    .footer-col-list li {
        font-size: 14px;
        align-items: center;
    }

    .footer-col-list a {
        width: 100%;
        padding: 10px 12px;
    }

    .footer-col-list a:not(.btn)::after {
        display: none;
    }

    .footer-col-list a:hover {
        transform: none;
    }

    .footer-col-list a:not(.btn):hover {
        background: rgba(228, 87, 78, 0.06);
        border-radius: 10px;
    }

    .footer-col-list a:not(.btn):active {
        background: rgba(228, 87, 78, 0.1);
    }

    .footer-contact-link {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .footer-inline-icon i,
    .footer-inline-icon svg {
        width: 14px;
        height: 14px;
    }


    .footer-social-proof-box {
        grid-area: proof;
        width: 100%;
        max-width: 100%;
        padding: 20px;
        margin: 4px 0 0;
        text-align: left;
    }

    .footer-proof-number {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .footer-proof-context {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    .footer-cta-button {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .footer-whatsapp-area {
        margin: 20px 0 16px;
    }

    .footer-whatsapp-link {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding-top: 26px;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* LEAD CAPTURE POPUP - Premium Humanized Form */
/* ═══════════════════════════════════════════════════════════════════════ */

.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-popup.active {
    opacity: 1;
    visibility: visible;
}

.lead-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lead-popup-container {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: calc(100vh - 40px);
    /* Safe margin top/bottom */
    max-height: calc(100dvh - 40px);
    /* Dynamic viewport for mobile */
    overflow: hidden;
    /* NO INTERNAL SCROLLBAR - Content must fit */
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF1E6 100%);
    border: 2px dashed rgba(217, 30, 13, 0.2);
    border-radius: 24px;
    padding: 28px 32px 32px;
    /* Unified padding */
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(217, 30, 13, 0.1);
    padding-bottom: calc(32px + var(--lead-popup-keyboard-offset, 0px));
    scroll-padding-bottom: calc(32px + var(--lead-popup-keyboard-offset, 0px));
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
}

.lead-popup.active .lead-popup-container {
    transform: scale(1) translateY(0);
}

.lead-popup-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.lead-popup-container::-webkit-scrollbar-thumb,
.lead-popup-container::-webkit-scrollbar-track {
    background: transparent;
}

/* Close Button - Subtle Notinha Style (Anti-Churn but DNA Queru) */
.lead-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Notinha style but subtle - reduced prominence */
    background: rgba(254, 243, 199, 0.6);
    border: 1.5px dashed rgba(217, 30, 13, 0.25);
    border-radius: 50%;

    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;

    /* Very subtle shadow */
    box-shadow: 0 1px 4px rgba(217, 30, 13, 0.06);
}

/* Hover - Shows full notinha style on intent */
.lead-popup-close:hover {
    background: #FEF3C7;
    border-color: var(--primary, #D91E0D);
    border-width: 2px;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(217, 30, 13, 0.15);
}

.lead-popup-close:hover i,
.lead-popup-close:hover svg {
    stroke: var(--primary, #D91E0D) !important;
    color: var(--primary, #D91E0D) !important;
    opacity: 1;
}

.lead-popup-close:active {
    transform: scale(0.95);
}

.lead-popup-close i,
.lead-popup-close svg {
    width: 18px;
    height: 18px;
    stroke: rgba(217, 30, 13, 0.4);
    color: rgba(217, 30, 13, 0.4);
    stroke-width: 2;
    transition: all 0.3s ease;
}

/* FOMO Badge */
.lead-popup-fomo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(90deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: 20px;
    margin-top: 48px;
    /* Space for close button */
    margin-bottom: 16px;
    animation: fomoGlow 2s infinite alternate;
    text-align: left;
}

@keyframes fomoGlow {
    from {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.3);
    }

    to {
        box-shadow: 0 0 12px 3px rgba(251, 191, 36, 0.5);
    }
}

.lead-popup-fomo-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #92400E;
    text-align: center;
    line-height: 1.4;
    width: 100%;
}

.lead-popup-fomo-text strong {
    font-weight: 700;
}

.fomo-mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .fomo-mobile-break {
        display: block;
    }
}

/* Avatar Section - Premium Industrial Design */
.lead-popup-avatar-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.lead-popup-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    /* Premium glow ring */
    box-shadow:
        0 0 0 3px rgba(217, 30, 13, 0.15),
        0 8px 24px -4px rgba(217, 30, 13, 0.25),
        0 4px 8px rgba(0, 0, 0, 0.06);
}

.lead-popup-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #FF6B5A);
    z-index: -1;
    opacity: 0.9;
}

.lead-popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.lead-popup-greeting {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lead-popup-greeting-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.lead-popup-greeting-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #10B981;
}

.lead-popup-status-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: statusPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

/* Progress Indicator */
.lead-popup-progress {
    position: relative;
    height: 4px;
    background: rgba(217, 30, 13, 0.1);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.lead-popup-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #10B981, #059669);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lead-popup-progress-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 2px;
}

.lead-popup-dot {
    width: 10px;
    height: 10px;
    background: white;
    border: 2px solid rgba(217, 30, 13, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lead-popup-dot.active {
    border-color: #10B981;
    background: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.lead-popup-dot.completed {
    border-color: #10B981;
    background: #10B981;
}

/* Honeypot (Hidden) */
.lead-popup-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

/* Form Steps */
.lead-popup-form {
    position: relative;
}

.lead-popup-step {
    display: none;
    flex-direction: column;
    gap: 16px;
    animation: slideIn 0.4s ease forwards;
}

.lead-popup-step.active {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lead-popup-step.slide-out {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* Titles */
.lead-popup-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.lead-popup-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 8px;
}

/* Form Fields */
.lead-popup-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lead-popup-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.lead-popup-input,
.lead-popup-select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: white;
    border: 2px solid rgba(217, 30, 13, 0.15);
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
}

.lead-popup-input:focus,
.lead-popup-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(217, 30, 13, 0.1);
}

.lead-popup-input::placeholder {
    color: #9CA3AF;
}

.lead-popup-input.valid,
.lead-popup-select.valid {
    border-color: #10B981;
    background-color: #F0FDF4;
    /* Light green bg for extra clarity */
}

.lead-popup-input.invalid,
.lead-popup-select.invalid {
    border-color: #EF4444;
}

/* Success State Focus Overrides */
.lead-popup-input.valid:focus,
.lead-popup-select.valid:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

/* Error State Focus Overrides */
.lead-popup-input.invalid:focus,
.lead-popup-select.invalid:focus {
    border-color: #EF4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

/* Validation Messages */
.lead-popup-validation {
    font-family: var(--font-body);
    font-size: 12px;
    min-height: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lead-popup-validation.success {
    color: #10B981;
}

.lead-popup-validation.success::before {
    content: '✓';
    font-weight: 700;
}

.lead-popup-validation.error {
    color: #EF4444;
}

.lead-popup-validation.error::before {
    content: '!';
    font-weight: 700;
    width: 16px;
    height: 16px;
    background: #FEE2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Checkbox */
.lead-popup-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #6B7280;
    cursor: pointer;
    margin-top: 4px;
}

.lead-popup-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Navigation Buttons */
.lead-popup-nav {
    display: flex;
    justify-content: stretch;
    /* Buttons stretch to fill */
    align-items: center;
    margin-top: 24px;
    gap: 12px;
    flex-shrink: 0;
    /* Never shrink - always visible */
}

/* Primary button always tries to fill available space */
.lead-popup-btn-next,
.lead-popup-btn-submit {
    flex: 1;
    /* Fill available space */
}

.lead-popup-btn-back {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #6B7280;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lead-popup-btn-submit {
    display: none;
}

.lead-popup-btn-back:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

.lead-popup-btn-back i,
.lead-popup-btn-back svg {
    width: 18px;
    height: 18px;
}

.lead-popup-btn-next,
.lead-popup-btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    margin-left: auto;
    padding: 14px 24px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    color: white;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* Default state: only "Continuar" visible until JS advances step */
.lead-popup-btn-next {
    display: flex;
}

.lead-popup-btn-submit {
    display: none;
}

.lead-popup-btn-next:hover,
.lead-popup-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.lead-popup-btn-next:active,
.lead-popup-btn-submit:active {
    transform: translateY(0);
}

.lead-popup-btn-next i,
.lead-popup-btn-next svg,
.lead-popup-btn-submit i,
.lead-popup-btn-submit svg {
    width: 18px;
    height: 18px;
}

/* Success State */
.lead-popup-success {
    text-align: center;
    padding: 20px 0;
}

.lead-popup-success .lead-popup-title {
    margin-top: 16px;
}

.lead-popup-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-popup-checkmark {
    width: 72px;
    height: 72px;
}

.lead-popup-checkmark-circle {
    stroke: #10B981;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: checkmarkCircle 0.6s ease-in-out forwards;
}

.lead-popup-checkmark-check {
    stroke: #10B981;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmarkCheck 0.3s ease-in-out 0.4s forwards;
}

@keyframes checkmarkCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmarkCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.lead-popup-hint {
    font-family: var(--font-body);
    font-size: 14px;
    color: #9CA3AF;
    margin-top: 8px;
}

.lead-popup-hint-primary {
    margin-top: 12px;
    color: var(--primary);
}

.lead-popup-hint-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.lead-popup-success-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(217, 30, 13, 0.08);
    border: 2px dashed var(--primary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lead-popup-success-cta:hover {
    background: var(--primary);
    color: white;
    border-style: solid;
}

.lead-popup-success-cta i,
.lead-popup-success-cta svg {
    width: 20px;
    height: 20px;
}

/* Error State */
.lead-popup-error {
    text-align: center;
    padding: 20px 0;
}

.lead-popup-error-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217, 30, 13, 0.08);
    color: var(--primary);
}

.lead-popup-error-icon i,
.lead-popup-error-icon svg {
    width: 32px;
    height: 32px;
}

.lead-popup-error-actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lead-popup-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.lead-popup-btn-retry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.lead-popup-btn-retry {
    background: #fff4e6;
    color: var(--primary);
    border: 2px dashed rgba(217, 30, 13, 0.4);
}

.lead-popup-btn-retry:hover {
    border-style: solid;
    background: rgba(217, 30, 13, 0.08);
}

.lead-popup-btn-whatsapp i,
.lead-popup-btn-whatsapp svg,
.lead-popup-btn-retry i,
.lead-popup-btn-retry svg {
    width: 18px;
    height: 18px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .lead-popup-container {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        border-radius: 0;
        padding: 24px 20px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom) + var(--lead-popup-keyboard-offset, 0px));
        scroll-padding-bottom: calc(24px + env(safe-area-inset-bottom) + var(--lead-popup-keyboard-offset, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .lead-popup-container::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .lead-popup-fomo {
        flex-wrap: nowrap;
        text-align: left;
    }

    .lead-popup-fomo-text {
        min-width: 0;
    }

    .lead-popup-title {
        font-size: 22px;
    }

    .lead-popup-nav {
        flex-direction: column-reverse;
        gap: 12px;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .lead-popup-btn-back {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .lead-popup-btn-next,
    .lead-popup-btn-submit {
        max-width: 100%;
        width: 100%;
        min-height: 52px;
    }



    .lead-popup-input,
    .lead-popup-select {
        min-height: 50px;
        padding: 16px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .lead-popup,
    .lead-popup-container,
    .lead-popup-step {
        animation: none !important;
        transition: opacity 0.1s ease !important;
    }
}

/* Autofill styling */
.lead-popup-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: var(--text-dark) !important;
}

/* Loading spinner */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   PARA QUEM É SECTION — "Notinha" Receipt DNA
   Single receipt card · Numbered rows · Perforation line · Dark finale
   ========================================================================== */

.who-is-it-for {
    padding: 100px 32px;
    background: var(--bg-warm);
    position: relative;
}

.who-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-header {
    text-align: center;
    margin-bottom: 64px;
}

.who-header .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ── The Receipt Card ── */
.who-notinha {
    max-width: 840px;
    margin: 0 auto;
    background: #FFFBF5;
    border-radius: 20px;
    border: 1.5px solid rgba(229, 218, 208, 0.95);
    box-shadow:
        0 4px 0 #D9CEC4,
        0 16px 44px rgba(15, 23, 42, 0.07),
        0 44px 86px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

/* ── Receipt Header Strip ── */
.who-notinha-head {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.14), transparent 34%),
        linear-gradient(135deg, #0F172A 0%, #111827 58%, #1A2235 100%);
    padding: 28px 44px 30px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.who-notinha-head-content {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    max-width: 560px;
}

.who-notinha-head-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #FEF3C7;
    border: 1.5px dashed rgba(217, 30, 13, 0.24);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1;
    color: #9A3412;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.who-notinha-head-label i,
.who-notinha-head-label svg {
    width: 14px;
    height: 14px;
    color: #D97706;
    stroke-width: 2.3;
}

.who-notinha-head-note {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: rgba(255, 251, 245, 0.86);
}

/* ── Persona Row ── */
.who-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 36px 44px;
    position: relative;
    /* Start hidden for entrance animation */
    opacity: 0;
    transition: background 0.2s ease;
    animation: none;
}

.who-row.is-visible {
    animation: whoRowEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Staggered delays (nth-child accounts for sep/perf siblings) */
.who-notinha > .who-row:nth-child(2).is-visible  { animation-delay: 0s; }
.who-notinha > .who-row:nth-child(4).is-visible  { animation-delay: 0.1s; }
.who-notinha > .who-row:nth-child(6).is-visible  { animation-delay: 0.2s; }
.who-notinha > .who-row:nth-child(8).is-visible  { animation-delay: 0.3s; }

@keyframes whoRowEntrance {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.who-row:hover {
    background: rgba(0, 0, 0, 0.018);
}

.who-row-lead {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

/* ── Watermark Number ── */
.who-row-num {
    font-family: var(--font-display);
    font-size: 84px;
    font-weight: 900;
    line-height: 1;
    width: auto;
    text-align: center;
    letter-spacing: -0.05em;
    user-select: none;
    pointer-events: none;
    display: flex;
    align-items: center;
}

[data-persona="delivery"] .who-row-num  { color: rgba(217, 30, 13, 0.07); }
[data-persona="bairro"]   .who-row-num  { color: rgba(5, 150, 105, 0.07); }
[data-persona="comecando"] .who-row-num { color: rgba(245, 158, 11, 0.09); }
[data-persona="refem"]    .who-row-num  { color: rgba(239, 68, 68, 0.18); }

/* ── Row Icon ── */
.who-row-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.who-row-icon i,
.who-row-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
}

[data-persona="delivery"]  .who-row-icon { background: rgba(217, 30, 13, 0.08); color: #D91E0D; }
[data-persona="bairro"]    .who-row-icon { background: rgba(5, 150, 105, 0.1);  color: #059669; }
[data-persona="comecando"] .who-row-icon { background: rgba(245, 158, 11, 0.1); color: #D97706; }
[data-persona="refem"]     .who-row-icon { background: rgba(239, 68, 68, 0.12); color: #EF4444; }

.who-row[data-persona="delivery"]:hover  .who-row-icon { background: #D91E0D; color: #FFF; transform: scale(1.1) rotate(-4deg); box-shadow: 0 6px 20px rgba(217,30,13,0.3); }
.who-row[data-persona="bairro"]:hover    .who-row-icon { background: #059669; color: #FFF; transform: scale(1.1) rotate(-4deg); box-shadow: 0 6px 20px rgba(5,150,105,0.3); }
.who-row[data-persona="comecando"]:hover .who-row-icon { background: #D97706; color: #FFF; transform: scale(1.1) rotate(-4deg); box-shadow: 0 6px 20px rgba(245,158,11,0.3); }

/* ── Row Body ── */
.who-row-body {
    flex: 1;
    min-width: 0;
}

.who-row-title {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
    color: #111827;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}

.who-row-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.68;
    color: #667085;
    margin: 0;
    max-width: 520px;
}

/* ── Row CTA ("Me identifico →") ── */
.who-row-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 10px 14px 10px 18px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    color: #047857;
    text-decoration: none;
    border: 1.5px dashed rgba(5, 150, 105, 0.36);
    background: rgba(16, 185, 129, 0.06);
    white-space: nowrap;
    align-self: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.who-row-cta-text {
    line-height: 1;
}

.who-row-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.14);
    color: #10B981;
    animation: arrowPulse 2s infinite;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.who-row-cta-arrow i,
.who-row-cta-arrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.6;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.who-row-cta:hover {
    background: #10B981;
    color: #FFF;
    border-style: solid;
    border-color: #10B981;
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.22);
}

.who-row-cta:hover .who-row-cta-arrow {
    background: rgba(255, 255, 255, 0.22);
    color: #FFF;
    animation: none;
}

.who-row-cta:hover .who-row-cta-arrow i,
.who-row-cta:hover .who-row-cta-arrow svg {
    transform: translateX(3px);
}

/* ── Dashed Row Separator ── */
.who-notinha-sep {
    height: 1px;
    margin: 0 44px;
    background: repeating-linear-gradient(
        90deg,
        rgba(217, 30, 13, 0.14) 0px, rgba(217, 30, 13, 0.14) 6px,
        transparent 6px, transparent 12px
    );
}

/* ── Perforation Tear Line (before finale) ── */
.who-notinha-perf {
    height: 0;
    position: relative;
}

.who-notinha-perf::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    top: 0;
    border-top: 2px dashed rgba(217, 30, 13, 0.28);
}

/* ── Dark Finale Row ── */
.who-row--finale {
    background:
        radial-gradient(circle at top right, rgba(239, 68, 68, 0.12), transparent 26%),
        linear-gradient(135deg, #081220 0%, #0F172A 52%, #1E1B4B 100%);
}

.who-row--finale:hover {
    background:
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.18), transparent 28%),
        linear-gradient(135deg, #0B1728 0%, #132033 52%, #231F59 100%);
}

.who-row--finale .who-row-title {
    color: #FFF7ED;
}

.who-row--finale .who-row-desc {
    color: rgba(255, 247, 237, 0.78);
}

.who-row--finale .who-row-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #FCA5A5;
}

.who-row--finale:hover .who-row-icon {
    background: #EF4444;
    color: #FFF;
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.who-row--finale .who-row-cta {
    color: #D1FAE5;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(52, 211, 153, 0.44);
}

.who-row--finale .who-row-cta:hover {
    background: #10B981;
    color: #FFF;
    border-color: #10B981;
}

/* ── Receipt Footer CTA ── */
.who-notinha-foot {
    background: #FEF3C7;
    border-top: 2px dashed rgba(217, 30, 13, 0.18);
    padding: 32px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.who-notinha-foot-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin: 0;
    line-height: 1.55;
    max-width: 420px;
}

.who-notinha-foot-pointer {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #047857;
}

.who-notinha-foot-pointer i,
.who-notinha-foot-pointer svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.4;
}

.who-cta-button {
    font-size: 16px;
    padding: 16px 36px;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.25);
}

.who-cta-button:hover {
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.4);
}

/* ── Responsive: Tablet ── */
@media (max-width: 860px) {
    .who-notinha-head {
        padding: 24px 28px 26px;
    }

    .who-row {
        padding: 28px 28px;
        gap: 22px;
    }

    .who-notinha-sep {
        margin: 0 28px;
    }

    .who-notinha-foot {
        padding: 28px 28px;
    }

    .who-row-num {
        font-size: 68px;
    }

    .who-row-title {
        font-size: 19px;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 640px) {
    .who-is-it-for {
        padding: 64px 16px;
    }

    .who-header {
        margin-bottom: 40px;
    }

    .who-notinha {
        border-radius: 16px;
    }

    .who-notinha-head {
        padding: 22px 20px 24px;
    }

    .who-notinha-head-label {
        font-size: 10px;
        letter-spacing: 0.1em;
        text-align: center;
        line-height: 1.2;
    }

    .who-notinha-head-note {
        font-size: 14px;
    }

    .who-row {
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
        padding: 24px 20px;
    }

    .who-row-lead {
        justify-self: start;
    }

    .who-row-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .who-row-icon i,
    .who-row-icon svg {
        width: 20px;
        height: 20px;
    }

    .who-row-num {
        display: none;
    }

    .who-row-body {
        flex: 1;
        min-width: 0;
    }

    .who-row-title {
        font-size: 17px;
    }

    .who-row-desc {
        font-size: 14px;
    }

    .who-row-cta {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: space-between;
        margin-top: 6px;
        padding: 12px 14px 12px 18px;
    }

    .who-notinha-sep {
        margin: 0 20px;
    }

    .who-notinha-foot {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 14px;
    }

    .who-notinha-foot-text {
        font-size: 14px;
        max-width: none;
    }

    .who-notinha-foot-pointer {
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
    }

    .who-cta-button {
        width: 100%;
        font-size: 15px;
        padding: 14px 20px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .who-row {
        opacity: 1 !important;
        animation: none !important;
    }
}
