/* ╔═══════════════════════════════════════════════════════════════════╗
   ║  1. TOKENS — variáveis de design (cores, fontes, easings)         ║
   ╚═══════════════════════════════════════════════════════════════════╝ */
:root {
    --terracota: #9B4442;
    --terracota-dark: #7C3331;
    --terracota-mid: #C35F5A;
    --terracota-light: #B96A68;
    --nude: #EFD9D7;
    --nude-light: #F2EBE6;
    --nude-ultra: #FBF6F5;
    --white: #FFFFFF;
    --black: #141414;
    --gold: #C4A265;
    --gold-light: #D4B97A;
    --text: #2A2A2A;
    --text-light: #444;
    --text-muted: #5C5C5C;
    --border: #E8E8E8;
    --bg-soft: #F6F6F6;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Outfit', system-ui, sans-serif;
    --ease: cubic-bezier(.25,.46,.45,.94);
    --ease-out: cubic-bezier(.22,1,.36,1);
}

/* ╔═══════════════════════════════════════════════════════════════════╗
   ║  2. RESET + BASE — html, body, tipografia, elementos globais      ║
   ╚═══════════════════════════════════════════════════════════════════╝ */
svg { display: block; overflow: visible; }
button { font-family: inherit; cursor: pointer; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
html, body {
    max-width: 100%;
}
section, header, footer {
    overflow-x: clip;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }

/* ╔═══════════════════════════════════════════════════════════════════╗
   ║  3. UTILITIES — .container, .reveal, .skip-link, animações        ║
   ╚═══════════════════════════════════════════════════════════════════╝ */

/* Utility classes — substituem inline styles repetidos */
.u-mx-auto { margin: 0 auto; }
.u-mw-full { max-width: 100%; }
.u-text-white { color: var(--white); }
.u-mt-md { margin-top: 16px; }
.market-fallback { display: none; font-size: 1.1rem; line-height: 1; }

/* Focus visible reforçado para elementos interativos secundários */
.bee-product-card:focus-visible,
.unit-card:focus-visible,
.knowledge-card:focus-visible,
.footer-col a:focus-visible,
.nav-links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 8px;
}

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--terracota); color: var(--white);
    padding: 12px 24px; border-radius: 0 0 8px 8px;
    z-index: 10000; font-size: 0.85rem; text-decoration: none;
    transition: top 0.3s;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 2px solid var(--terracota);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ACESSIBILIDADE: respeita preferência de movimento reduzido (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .whatsapp-float { animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    html { scroll-behavior: auto !important; }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(40px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes float { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-8px) } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Delays escalonados manuais (compat: usar quando precisar de controle fino) */
.rd1 { transition-delay: .1s }
.rd2 { transition-delay: .2s }
.rd3 { transition-delay: .3s }
/* Delays automáticos por posição em grid/flex de irmãos com .reveal */
.reveal:nth-child(2) { transition-delay: .08s }
.reveal:nth-child(3) { transition-delay: .16s }
.reveal:nth-child(4) { transition-delay: .24s }
.reveal:nth-child(5) { transition-delay: .32s }

/* ╔═══════════════════════════════════════════════════════════════════╗
   ║  4. LAYOUT — nav, footer, mobile menu, sticky CTA                 ║
   ╚═══════════════════════════════════════════════════════════════════╝ */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: all 0.5s var(--ease);
    background: transparent;
}
nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 40px rgba(0,0,0,0.05);
    padding: 12px 0;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: auto; }
.nav-logo img { width: 220px; height: auto; display: block; transition: width 0.3s; }
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
    font-size: 0.76rem; font-weight: 400; color: rgba(255,255,255,0.8);
    text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
    transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; width: 0;
    height: 1.5px; background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
nav.scrolled .nav-links a { color: var(--text); }
nav.scrolled .nav-logo img { width: 180px; }
.nav-social { display: flex; gap: 12px; align-items: center; }
.nav-social a {
    color: rgba(255,255,255,0.70);
    transition: all 0.3s;
    display: flex; align-items: center;
    overflow: visible;
}
.nav-social a:hover { color: var(--gold); transform: scale(1.1); }
nav.scrolled .nav-social a { color: var(--text-muted); }
nav.scrolled .nav-social a:hover { color: var(--terracota); }
.nav-social svg,
.footer-social-links svg { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.nav-cta-btn {
    background: var(--terracota);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    border: none;
    outline: none;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(155,68,66,0.2);
}
.nav-cta-btn:hover { background: var(--terracota-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(155,68,66,0.28); }
.nav-cta-btn:active { transform: scale(0.98); }
.nav-cta-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2.5px; background: var(--white); margin: 5px 0; border-radius: 3px; transition: all 0.3s; }
nav.scrolled .mobile-toggle span { background: var(--black); }

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: var(--terracota);
    color: var(--white);
    text-align: center;
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    transition: background 0.3s;
    gap: 8px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
}
.sticky-cta:hover { background: var(--terracota-dark); }
.sticky-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero {
    min-height: 100vh;
    padding: 156px 0 96px;
    background: linear-gradient(170deg, var(--black) 0%, #221514 35%, var(--terracota-dark) 100%);
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 760px 760px at 76% 14%, rgba(155,68,66,0.22), transparent),
        radial-gradient(ellipse 540px 540px at 12% 84%, rgba(196,162,101,0.10), transparent),
        linear-gradient(180deg, rgba(255,255,255,0.015), transparent 28%);
    pointer-events: none;
}
.hero-watermark {
    position: absolute;
    right: -34px;
    bottom: -26px;
    opacity: 0.075;
    width: 620px;
    height: 620px;
    pointer-events: none;
    z-index: 1;
    filter: blur(0.2px);
    transform: translateZ(0);
}
.hero-watermark img { width: 100%; height: 100%; object-fit: contain; }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 12px;
    animation: fadeUp 1.2s var(--ease-out) both;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(196,162,101,0.15);
    border: 1px solid rgba(196,162,101,0.34);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 36px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.65rem, 5.7vw, 4.85rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.78;
    max-width: 620px;
    margin-bottom: 44px;
    font-weight: 300;
    text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.hero-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.92);
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 400;
    backdrop-filter: blur(10px);
}
.hero-proof-pill strong { color: var(--white); font-weight: 600; }
.hero-microcopy {
    margin-top: 16px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.01em;
    font-weight: 300;
}

.offer-strip {
    padding: 26px 0;
    background: linear-gradient(135deg, var(--nude-ultra), var(--nude-light));
    border-top: 1px solid rgba(155,68,66,0.08);
    border-bottom: 1px solid rgba(155,68,66,0.08);
}
.offer-strip-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}
.offer-strip-card {
    background: var(--white);
    border: 1px solid rgba(155,68,66,0.08);
    border-radius: 20px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 10px 28px rgba(0,0,0,0.035);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.offer-strip-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(155,68,66,0.08);
    color: var(--terracota);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.offer-strip-card h3 {
    font-family: var(--serif);
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--black);
}
.offer-strip-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    font-weight: 300;
}
.service-offer {
    margin-top: 28px;
    border: 1px solid rgba(196,162,101,0.2);
    background: linear-gradient(135deg, rgba(196,162,101,0.08), rgba(255,255,255,0.02));
    border-radius: 22px;
    padding: 24px;
}
.service-offer-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 12px;
}
.service-offer-title {
    font-family: var(--serif);
    font-size: 1.45rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 500;
}
.service-offer p {
    color: rgba(255,255,255,0.62);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}
.service-offer-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-offer-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
    font-size: 0.76rem;
}
.units-helper {
    margin-top: 18px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.58);
}
.units-cta-wrap {
    text-align: center;
    margin-top: 36px;
}

/* ╔═══════════════════════════════════════════════════════════════════╗
   ║  5. COMPONENTS — botões, cards, modais, formulários, pills        ║
   ╚═══════════════════════════════════════════════════════════════════╝ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: none;
}
.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.btn-primary {
    background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
    color: var(--white);
    box-shadow: 0 10px 28px rgba(155,68,66,0.24);
}
.btn-primary:hover { background: var(--terracota-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(155,68,66,0.3); }
.btn-outline {
    background: rgba(255,255,255,0.02);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-outline-soft-light {
    border-color: rgba(255,255,255,0.35);
}
.btn-outline-soft-light:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
}

.btn-outline-terracota-plain {
    background: transparent;
    color: var(--terracota);
    border: 1px solid rgba(155,68,66,0.42);
}
.btn-outline-terracota-plain:hover {
    background: rgba(155,68,66,0.05);
    border-color: var(--terracota);
    color: var(--terracota);
    transform: translateY(-2px);
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); font-weight: 600; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(196,162,101,0.3); }
.btn-white { background: var(--white); color: var(--terracota); font-weight: 600; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }

.offer-strip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155,68,66,0.16);
    box-shadow: 0 18px 38px rgba(0,0,0,0.06);
}

.knowledge-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155,68,66,0.04), transparent 56%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    pointer-events: none;
}

.knowledge-card:hover::before {
    opacity: 1;
}

.knowledge-card:hover .knowledge-card-num {
    transform: translateY(-2px);
}

.knowledge-card-num {
    transition: transform 0.35s var(--ease);
}

.section-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.section-intro .section-desc {
    margin-left: auto;
    margin-right: auto;
}

section[id], header[id] {
    scroll-margin-top: 90px;
}

section { padding: 100px 0; }
.section-label {
    font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--terracota); margin-bottom: 18px; font-weight: 600;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}
.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 540px;
    font-weight: 300;
}

.pain { background: var(--nude-ultra); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pain-items { display: flex; flex-direction: column; gap: 24px; }
.pain-item { display: flex; gap: 18px; align-items: flex-start; }
.pain-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
    background: rgba(155,68,66,0.06); display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.pain-item h3 {
    font-family: var(--serif);
    font-size: 1.12rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--black);
}
.pain-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.method-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px; }
.method-step {
    text-align: center;
    padding: 52px 28px;
    border-radius: 24px;
    background: var(--bg-soft);
    transition: all 0.4s var(--ease);
}
.method-step:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.05); }
.step-number {
    font-family: var(--sans);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--terracota-light);
    opacity: 0.7;
    margin-bottom: 20px;
}
.method-step h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--black);
}
.method-step p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 300;
}

.services { background: var(--black); color: var(--white); }
.services .section-label { color: var(--gold); }
.services .section-desc { color: rgba(255,255,255,0.42); }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 64px; }
.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 48px 36px;
    transition: all 0.45s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--terracota), var(--gold));
    opacity: 0; transition: opacity 0.4s;
}
.service-card:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.04));
    border-color: rgba(196,162,101,0.18);
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}
.service-card:hover::before { opacity: 1; }
.service-card.highlight {
    background: linear-gradient(135deg, rgba(155,68,66,0.08), rgba(196,162,101,0.04));
    border-color: rgba(196,162,101,0.3);
}
.service-card.highlight .service-tag { background: var(--gold); color: var(--black); }
.service-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(155,68,66,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}
.service-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(196,162,101,0.08);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px; }
.diff-card {
    text-align: center;
    padding: 44px 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
}
.diff-card:hover { border-color: var(--terracota); transform: translateY(-4px); }
.diff-emoji { font-size: 2rem; margin-bottom: 20px; display: block; }
.diff-card h3 {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}
.diff-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.assessment {
    background: linear-gradient(135deg, var(--nude-ultra), var(--nude-light));
    position: relative;
}
.assessment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.assessment-content { max-width: 540px; }
.assessment-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 32px;
}
.assessment-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.assessment-feature span:first-child { font-size: 1.2rem; }
.assessment-feature span:last-child { font-size: 0.85rem; color: var(--text-light); font-weight: 300; }
.assessment-cta { margin-top: 32px; display: flex; justify-content: flex-start; }
.assessment-cta .btn { min-height: 56px; }

.franchise-section {
    background: var(--nude-ultra);
    padding: 90px 0;
}
.franchise-shell {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--white), #fff8f7);
    border: 1px solid rgba(155,68,66,0.10);
    border-radius: 32px;
    padding: 56px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}
.franchise-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 40px;
    align-items: center;
}
.franchise-content .section-desc {
    max-width: 640px;
    margin-bottom: 28px;
}
.franchise-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}
.franchise-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--nude-ultra);
    border: 1px solid rgba(155,68,66,0.08);
}
.franchise-point-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(155,68,66,0.10);
    color: var(--terracota);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums lining-nums;
    flex-shrink: 0;
}
.franchise-point span:last-child {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-light);
    font-weight: 300;
}
.franchise-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.franchise-aside {
    background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
    color: var(--white);
    border-radius: 28px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
}
.franchise-aside::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 42%);
    pointer-events: none;
}
.franchise-aside > * { position: relative; z-index: 1; }
.franchise-aside-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 18px;
    font-weight: 500;
}
.franchise-aside-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.franchise-aside h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 14px;
}
.franchise-aside p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    margin-bottom: 24px;
}
.franchise-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.franchise-mini-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
}
.franchise-mini-list span::before {
    content: '•';
    color: var(--gold-light);
    font-size: 1rem;
    line-height: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-highlight {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--terracota);
    margin: 24px 0;
    line-height: 1.4;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
}
.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.stat-number {
    font-family: var(--sans);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--terracota);
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 400;
}
.about-stats .stat {
    position: relative;
    padding: 0 24px;
    min-width: 0;
    flex: 1 1 0;
}
.about-stats .stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.gallery { background: var(--nude-ultra); }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; }
.comparison-slider {
    max-width: 800px;
    margin: 0 auto 60px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.comparison-container {
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    touch-action: pan-y;
}
.comparison-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comparison-img-after {
    width: auto;
    height: 100%;
    max-width: none;
    right: 0;
    left: auto;
}
.comparison-slider-input {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    margin: 0;
    -webkit-appearance: none;
    background: transparent;
    cursor: ew-resize;
}
.comparison-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: ew-resize;
}
.comparison-slider-input::-moz-range-thumb {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: ew-resize;
}
.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 16px rgba(0,0,0,0.28), 0 0 0 2px var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 15;
}
.comparison-handle::before {
    content: '⇆';
    line-height: 1;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--terracota);
}
.comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    pointer-events: none;
    z-index: 14;
}
.slider-label {
    position: absolute;
    bottom: 20px;
    z-index: 15;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
}
.label-before { left: 20px; }
.label-after { right: 20px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.before-after-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    min-width: 0;
    width: 100%;
}
.before-after-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.before-after-images {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: ew-resize;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}
.before-after-images .before-img,
.before-after-images .after-img {
    position: absolute;
    inset: 0;
}
.before-after-images .before-img img,
.before-after-images .after-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none !important;
    transition: none !important;
}
.before-after-images .after-img {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}
.mini-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    margin: 0;
    -webkit-appearance: none;
    background: transparent;
    cursor: ew-resize;
}
.mini-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: ew-resize;
}
.mini-range::-moz-range-thumb {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: ew-resize;
}
.mini-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 16px rgba(0,0,0,0.35), 0 0 0 3px var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 15;
}
.mini-handle::before {
    content: '⇆';
    font-size: 1rem;
    font-weight: 700;
    color: var(--terracota);
    line-height: 1;
}
.mini-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    pointer-events: none;
    z-index: 14;
}
.before-after-card:hover .before-img img,
.before-after-card:hover .after-img img {
    transform: none !important;
}

.before-after-card:hover .before-img img,
.before-after-card:hover .after-img img { transform: scale(1.05); }
.before-after-info {
    padding: 22px 20px 24px;
    text-align: center;
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.before-after-info h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.25;
    text-wrap: balance;
}
.before-after-info p {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0.01em;
    text-wrap: pretty;
}

.bee {
    background: var(--nude-ultra);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.bee-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.bee-intro .section-title em { font-style: italic; color: var(--terracota); }
.bee-partner {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(155,68,66,0.06);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.7rem;
    color: var(--terracota);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}
.bee-philosophy { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 52px; }
.bee-pill {
    text-align: center;
    padding: 20px 14px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(155,68,66,0.05);
    transition: all 0.3s;
}
.bee-pill:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.04); transform: translateY(-2px); }
.bee-pill-icon { font-size: 1.3rem; margin-bottom: 8px; display: block; }
.bee-pill h4 { font-size: 0.76rem; font-weight: 500; color: var(--text); }

/* Filtros do catálogo */
.bee-filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    margin: 0 0 28px;
}
.bee-filter-btn {
    padding: 10px 20px; border-radius: 100px; border: 1px solid var(--border);
    background: var(--white); font-family: var(--sans);
    font-size: 0.74rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.06em; cursor: pointer; color: var(--text);
    transition: all 0.3s var(--ease);
}
.bee-filter-btn:hover { border-color: var(--terracota); color: var(--terracota); }
.bee-filter-btn.active { background: var(--terracota); color: var(--white); border-color: var(--terracota); }

/* Grid e cards detalhados */
.bee-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 20px; }
.bee-product-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease);
    cursor: pointer;
    display: flex; flex-direction: column;
}
.bee-product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.07); border-color: var(--terracota); }
.bee-product-img {
    width: 100%; aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    position: relative;
}
.bee-product-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}
.bee-product-card:hover .bee-product-img img { transform: scale(1.06); }
.bee-product-tag-float {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 11px; border-radius: 100px;
    background: var(--terracota); color: var(--white);
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.bee-product-info { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.bee-product-info .product-type {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}
.bee-product-info h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.15;
}
.bee-product-info p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 14px;
}
.bee-product-meta-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.bee-product-pill { padding: 4px 10px; border-radius: 100px; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.bee-product-pill--tag { background: rgba(155,68,66,0.08); color: var(--terracota); }
.bee-product-pill--ph { background: var(--bg-soft); color: var(--text-muted); }
.bee-product-actions { margin-top: auto; }
.bee-product-actions .btn-mini {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%;
    background: var(--nude-ultra); color: var(--terracota);
    border: 1px solid rgba(155,68,66,0.12);
    padding: 10px 14px; border-radius: 100px;
    font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer; transition: all 0.3s var(--ease);
}
.bee-product-actions .btn-mini:hover {
    background: var(--terracota); color: var(--white);
    border-color: var(--terracota);
    transform: translateY(-1px);
}
.bee-cta-wrap { text-align: center; margin-top: 44px; }
.bee-catalog-helper {
    font-size: 0.85rem; color: var(--text-muted);
    text-align: center; max-width: 580px; margin: 0 auto 24px;
    font-weight: 300;
}

/* Skeleton loader */
.bee-skeleton { pointer-events: none; }
.bee-skeleton .bee-product-img { background: var(--bg-soft); }
.bee-skeleton .skeleton-line {
    height: 12px; background: var(--border); border-radius: 6px;
    margin-bottom: 8px; animation: pulse 1.5s infinite;
}
.bee-skeleton .skeleton-line.short { width: 60%; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Modal de Ficha de Produto */
.product-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(20,20,20,0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    z-index: 9998; align-items: center; justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}
.product-modal-overlay.open { display: flex; }
.product-modal {
    background: var(--white); border-radius: 28px; padding: 0;
    max-width: 920px; width: 100%;
    max-height: calc(100dvh - 32px); overflow-y: auto;
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    animation: fadeUp 0.3s ease-out;
    box-shadow: 0 28px 80px rgba(0,0,0,0.22); position: relative;
}
.pm-close {
    position: absolute; top: 14px; right: 16px; z-index: 5;
    background: var(--bg-soft); border: none; cursor: pointer;
    color: var(--text-muted); width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 1.3rem; transition: all 0.3s;
}
.pm-close:hover { background: var(--terracota); color: var(--white); }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; }
.pm-image {
    background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
    padding: 40px; min-height: 380px; border-radius: 28px 0 0 0;
}
.pm-image img { width: 100%; max-width: 320px; height: auto; object-fit: contain; }
.pm-content { padding: 36px 32px 32px; }
.pm-eyebrow { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracota); font-weight: 600; margin-bottom: 8px; }
.pm-content h2 { font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--black); margin-bottom: 14px; line-height: 1.05; }
.pm-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.pm-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.pm-spec { padding: 12px 14px; background: var(--nude-ultra); border-radius: 12px; border: 1px solid rgba(155,68,66,0.06); }
.pm-spec span:first-child { display: block; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.pm-spec strong { font-size: 0.82rem; color: var(--black); font-weight: 500; line-height: 1.4; }
.pm-section { margin-top: 20px; }
.pm-section h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.pm-section p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; font-weight: 300; }
.pm-markets { display: flex; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.pm-market-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 14px;
    background: var(--nude-ultra); border: 1px solid transparent;
    text-decoration: none; color: var(--text); transition: all 0.3s var(--ease); flex: 1; min-width: 140px;
}
.pm-market-link:hover { border-color: var(--terracota); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(155,68,66,0.1); }
.pm-market-link img { width: 24px; height: 24px; object-fit: contain; }
.pm-market-link strong { font-size: 0.82rem; }
.pm-market-link small { font-size: 0.68rem; color: var(--text-muted); }

.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 64px; }
.proof-card {
    padding: 40px 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fbfbfb, #f5f5f5);
    position: relative;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}
.proof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.07);
    border-color: rgba(155,68,66,0.08);
}
.proof-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 18px; letter-spacing: 3px; }
.proof-text {
    font-family: var(--serif);
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 24px;
    color: var(--black);
}
.proof-author { font-size: 0.82rem; color: var(--black); font-weight: 500; }
.proof-location { font-size: 0.75rem; color: var(--text-muted); font-weight: 300; margin-top: 2px; }
.proof-quote {
    position: absolute;
    top: 20px; right: 28px;
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--nude);
    line-height: 1;
    pointer-events: none;
}

.social-connect { background: var(--nude-ultra); padding: 80px 0; text-align: center; }
.social-icons { display: flex; gap: 18px; justify-content: center; margin-top: 32px; }
.social-icon-link {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: var(--text);
    transition: all 0.35s var(--ease);
    overflow: visible;
}
.social-icon-link:hover { background: var(--terracota); color: var(--white); border-color: var(--terracota); transform: translateY(-4px); }
.social-icon-link svg { width: 24px; height: 24px; display: block; flex-shrink: 0; }
.social-handle { font-size: 0.82rem; color: var(--text-light); margin-top: 14px; font-weight: 300; }

.units { background: var(--black); color: var(--white); }
.units .section-label { color: var(--gold); }
.units .section-desc { color: rgba(255,255,255,0.38); }
.units-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 64px;
}
.unit-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 22px;
    text-align: center;
    transition: all 0.35s var(--ease);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    overflow: hidden;
}
.unit-card:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
    border-color: rgba(196,162,101,0.32);
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.16);
}
.unit-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}
.unit-pin {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}
.unit-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--white);
}
.unit-card .unit-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.unit-link-text {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(196,162,101,0.15);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 8px;
}
.unit-card:hover .unit-link-text {
    background: var(--white);
    color: var(--terracota);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-final {
    background: linear-gradient(170deg, var(--terracota) 0%, var(--terracota-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
}
.cta-final .section-label { color: var(--gold-light); }
.cta-final .section-title {
    color: var(--white);
    max-width: 660px;
    margin: 0 auto 20px;
}
.cta-final .section-desc {
    color: rgba(255,255,255,0.62);
    max-width: 460px;
    margin: 0 auto 44px;
}
.cta-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: stretch; }
.cta-final-btns .btn { min-height: 56px; }
.faq-cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }


.franchise-shell,
.franchise-grid,
.franchise-content,
.franchise-aside,
.about-grid,
.about-content,
.about-image {
    min-width: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content,
.before-after-info,
.before-after-info h4,
.before-after-info p {
    min-width: 0;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    object-fit: cover;
    display: block;
}

footer { background: var(--black); color: rgba(255,255,255,0.58); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-logo { height: auto; margin-bottom: 16px; opacity: 0.9; }
.footer-logo img { width: 220px; height: auto; display: block; }
.footer-desc { font-size: 0.82rem; line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-social-links { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-links a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    overflow: visible;
}
.footer-social-links a:hover { background: var(--terracota); color: var(--white); }

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 500;
}
.footer-col a {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.73rem;
    font-weight: 300;
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    border: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
    display: block;
}

/* ╔═══════════════════════════════════════════════════════════════════╗
   ║  6. MODAIS — WhatsApp e Agendamento (Estética padronizada)        ║
   ╚═══════════════════════════════════════════════════════════════════╝ */

/* Overlays */
.wa-modal-overlay,
.booking-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(20,20,20,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    align-items: center; justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}
.wa-modal-overlay.open,
.booking-overlay.open { display: flex; }

/* Containers dos modais */
.wa-modal,
.booking-modal {
    background: var(--white);
    border-radius: 28px;
    padding: 36px 28px 28px;
    width: 100%;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    animation: fadeUp 0.3s ease-out; will-change: transform, opacity;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    position: relative;
}
.wa-modal { max-width: 480px; }
.booking-modal { max-width: 720px; }

/* Headers */
.wa-modal-header,
.booking-header { text-align: center; margin-bottom: 24px; }
.wa-modal-title,
.booking-modal-title {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
}
.wa-modal-header p,
.booking-header p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Botões de fechar */
.wa-modal-close,
.booking-close {
    position: absolute; top: 14px; right: 16px;
    background: var(--bg-soft);
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
}
.wa-modal-close:hover,
.booking-close:hover { color: var(--white); background: var(--terracota); }

/* Botão de Geolocalização */
.wa-geo-btn,
.booking-geo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: center;
    transition: all 0.3s var(--ease);
    margin-bottom: 20px;
}
.wa-geo-btn svg,
.booking-geo-btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: block;
}
.wa-geo-btn span,
.booking-geo-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}
.wa-geo-btn:hover,
.booking-geo-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,162,101,0.3); }
.wa-geo-btn:disabled,
.booking-geo-btn:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }
.wa-geo-btn .spinner,
.booking-geo-btn .spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(0,0,0,0.2); border-top-color: var(--black); border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Labels */
.wa-nearest-label,
.booking-nearest-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.wa-other-label,
.booking-other-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Lista de unidades - WhatsApp */
.wa-unit-list { display: flex; flex-direction: column; gap: 6px; }
.wa-unit-items { display: flex; flex-direction: column; gap: 8px; }
.wa-unit-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 14px;
    background: var(--nude-ultra);
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text);
    transition: all 0.35s var(--ease);
    cursor: pointer;
}
.wa-unit-item svg {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    opacity: 0.3;
    transition: all 0.3s;
    flex-shrink: 0;
}
.wa-unit-item:hover {
    background: var(--terracota);
    color: var(--white);
    border-color: var(--terracota);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(155,68,66,0.2);
}
.wa-unit-item:hover svg { opacity: 1; stroke: var(--white); }

.wa-unit-copy, .booking-nearest-content { min-width: 0; flex: 1; }
.wa-unit-name {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--black);
}
.wa-unit-item:hover .wa-unit-name { color: var(--white); }

/* Padronização de texto nos modais - TODOS os campos com mesmo tamanho */
.wa-unit-meta,
.booking-card-addr {
    font-size: 0.86rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
}
.wa-unit-meta--muted,
.booking-card-postal {
    font-size: 0.86rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 4px;
}
.wa-unit-meta--landmark,
.booking-card-ref {
    display: block;
    font-size: 0.86rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 4px;
}
.wa-unit-item:hover .wa-unit-meta,
.wa-unit-item:hover .wa-unit-meta--muted,
.wa-unit-item:hover .wa-unit-meta--landmark,
.wa-unit-item:hover .wa-unit-distance { color: rgba(255,255,255,0.88); }

.wa-unit-distance {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 8px;
    display: none;
}

/* Card de destaque (mais próximo) - WhatsApp */
.wa-nearest-wrap { margin-bottom: 20px; animation: fadeUp 0.5s var(--ease-out); }
.wa-nearest-card {
    background: linear-gradient(135deg, var(--terracota), var(--terracota-mid));
    border: none;
    align-items: center;
    padding: 22px 20px;
    color: var(--white);
    box-shadow: 0 8px 28px rgba(155,68,66,0.25);
}
.wa-nearest-card:hover {
    background: linear-gradient(135deg, var(--terracota-dark), var(--terracota));
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(155,68,66,0.35);
}
.wa-nearest-card .wa-unit-name {
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}
.wa-nearest-card .wa-unit-meta,
.wa-nearest-card .wa-unit-meta--muted,
.wa-nearest-card .wa-unit-meta--landmark {
    color: rgba(255,255,255,0.92);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.5;
}
.wa-nearest-card .wa-unit-distance {
    display: block;
    color: rgba(255,255,255,0.82);
    font-size: 0.74rem;
    margin-top: 8px;
}
.wa-nearest-micro {
    display: block;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.5;
}
.wa-nearest-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    min-width: 118px;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}
.wa-nearest-card:hover .wa-nearest-cta {
    background: var(--white);
    color: var(--terracota);
}

/* Grid de agendamento (Salão99) */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.booking-card {
    display: block;
    padding: 18px 16px;
    border-radius: 14px;
    background: var(--nude-ultra);
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text);
    transition: all 0.35s var(--ease);
    cursor: pointer;
}
.booking-card:hover {
    background: var(--terracota);
    color: var(--white);
    border-color: var(--terracota);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(155,68,66,0.2);
}
.booking-card-name {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--black);
}
.booking-card:hover .booking-card-name { color: var(--white); }
.booking-card:hover .booking-card-addr,
.booking-card:hover .booking-card-postal,
.booking-card:hover .booking-card-ref { color: rgba(255,255,255,0.92); }

/* Card de destaque (mais próximo) - Agendamento */
.booking-nearest-wrap { margin-bottom: 20px; animation: fadeUp 0.5s var(--ease-out); }
.booking-card.booking-nearest-card {
    background: linear-gradient(135deg, var(--terracota), var(--terracota-mid));
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px;
    color: var(--white);
    box-shadow: 0 8px 28px rgba(155,68,66,0.25);
}
.booking-nearest-content { min-width: 0; }
.booking-nearest-card .booking-card-name {
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.booking-nearest-card .booking-card-addr,
.booking-nearest-card .booking-card-postal,
.booking-card-ref--light {
    color: rgba(255,255,255,0.92);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.5;
}
.booking-nearest-card:hover {
    background: linear-gradient(135deg, var(--terracota-dark), var(--terracota));
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(155,68,66,0.35);
}
.booking-nearest-dist {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.82);
    font-weight: 500;
    margin-top: 8px;
}
.booking-nearest-micro {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.5;
}
.booking-nearest-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.3s;
}
.booking-nearest-card:hover .booking-nearest-cta {
    background: var(--white);
    color: var(--terracota);
}

.booking-card-dist {
    display: none;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 8px;
    line-height: 1.4;
}

.booking-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.booking-footer p { font-size: 0.78rem; color: var(--text-muted); font-weight: 300; }
.booking-footer a { color: var(--terracota); text-decoration: none; font-weight: 500; }
.booking-footer a:hover { text-decoration: underline; }

/* Mobile Overlay & Menu */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(20,20,20,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px; height: 100vh;
    background: var(--white);
    z-index: 9999;
    display: flex; flex-direction: column;
    padding: 80px 28px 40px;
    gap: 0;
    transition: right 0.35s var(--ease-out);
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--terracota); }
.mobile-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--bg-soft);
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.mobile-close:hover { background: var(--terracota); color: var(--white); }

body.ui-locked {
    overflow: hidden !important;
    touch-action: none;
}

.transition {
    background: linear-gradient(135deg, var(--nude-ultra), var(--nude-light));
    position: relative;
}
.transition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.transition-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.transition-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(155,68,66,0.06);
    transition: all 0.3s var(--ease);
}
.transition-point:hover { border-color: var(--terracota-light); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.transition-icon { font-size: 1.1rem; flex-shrink: 0; }
.transition-point span:last-child { font-size: 0.88rem; color: var(--text-light); font-weight: 400; }
.transition-quote {
    margin-top: 32px;
    padding: 24px 28px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,0.6);
    border-radius: 0 14px 14px 0;
}
.transition-quote p {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--terracota);
    line-height: 1.55;
    font-style: italic;
}
.transition-quote strong { font-style: normal; font-weight: 600; }
.transition-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; align-items: stretch; }
.transition-cta .btn { min-height: 56px; }
.transition-cta .btn,
.assessment-cta .btn,
.cta-final-btns .btn,
.faq-cta-actions .btn { display: inline-flex; align-items: center; justify-content: center; text-align: center; }

.faq { background: var(--bg-soft); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--terracota-light); }
.faq-item[open] { border-color: var(--terracota); box-shadow: 0 4px 20px rgba(155,68,66,0.06); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    list-style: none;
    transition: color 0.3s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-family: var(--sans);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--terracota);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-item[open] .faq-question { color: var(--terracota); }
.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

.section-intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.nav-social a[aria-label="TikTok"] svg,
.footer-social-links a[aria-label="TikTok"] svg,
.social-icon-link[aria-label="TikTok"] svg {
    width: 20px;
    height: 20px;
    display: block;
    overflow: visible;
    flex-shrink: 0;
}

@supports (height: 100dvh) {
    .wa-modal, .booking-modal { max-height: calc(100dvh - 32px); }
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.for-who-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
}
.for-who-check {
    color: var(--terracota);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.for-who-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

/* Bee Modal Hub */
.bee-modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(20,20,20,0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    align-items: center; justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}
.bee-modal-overlay.open { display: flex; }
@keyframes beeModalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bee-modal {
    background: var(--white);
    border-radius: 28px;
    padding: 36px 28px 28px;
    max-width: 480px;
    width: 100%;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    animation: beeModalIn 0.32s cubic-bezier(.22,1,.36,1) both;
    box-shadow: 0 28px 80px rgba(0,0,0,0.22);
    position: relative;
}
.bee-modal-close {
    position: absolute; top: 14px; right: 16px;
    background: var(--bg-soft);
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
}
.bee-modal-close:hover { color: var(--white); background: var(--terracota); }
.bee-modal-header { text-align: center; margin-bottom: 8px; padding-top: 8px; }
.bee-modal-header h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--black);
}
.bee-modal-header p {
    font-size: 0.84rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto 24px;
}
.bee-market-list { display: flex; flex-direction: column; gap: 10px; }
.bee-market-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--nude-ultra);
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text);
    transition: all 0.35s var(--ease);
}
.bee-market-item:hover {
    background: var(--white);
    border-color: var(--terracota);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(155,68,66,0.12);
}
.bee-market-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bee-market-text { flex: 1; min-width: 0; }
.bee-market-text strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.bee-market-text span { font-size: 0.76rem; color: var(--text-muted); font-weight: 300; }
.bee-market-arrow { color: var(--text-muted); font-size: 0.9rem; flex-shrink: 0; transition: transform 0.3s var(--ease), color 0.3s; }
.bee-market-item:hover .bee-market-arrow { transform: translateX(4px); color: var(--terracota); }
.bee-market-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}
.bee-modal-footer { text-align: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.bee-modal-footer a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; font-weight: 300; transition: color 0.3s; }
.bee-modal-footer a:hover { color: var(--terracota); }

/* Central de Conhecimento */
.knowledge-center {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.knowledge-center .section-intro { margin-bottom: 48px; }
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}
.knowledge-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--nude-ultra);
    border: 1px solid rgba(155,68,66,0.07);
    border-radius: 20px;
    padding: 32px 28px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.38s var(--ease);
}
.knowledge-card:hover {
    background: var(--white);
    border-color: rgba(155,68,66,0.18);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.knowledge-card-num {
    position: relative;
    z-index: 1;
    font-family: var(--sans);
    font-size: 2.15rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--terracota);
    opacity: 0.92;
    margin-bottom: 18px;
}
.knowledge-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
}
.knowledge-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 300;
    flex: 1;
}
.knowledge-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--terracota);
    letter-spacing: 0.03em;
    transition: gap 0.3s var(--ease);
}
.knowledge-card:hover .knowledge-card-link { gap: 10px; }
.knowledge-cta-wrap { text-align: center; }
.btn-outline-terracota {
    background: transparent;
    color: var(--terracota);
    border: 1.5px solid var(--terracota);
}
.btn-outline-terracota:hover {
    background: var(--terracota);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(155,68,66,0.2);
}
.mobile-menu-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* ╔═══════════════════════════════════════════════════════════════════╗
   ║  7. RESPONSIVE — media queries (mobile, tablet, desktop wide)     ║
   ╚═══════════════════════════════════════════════════════════════════╝ */

@media (min-width: 769px) {
    .hero-badge { margin-top: 4px; }
    .hero-sub { max-width: 660px; }
}

@media (max-width: 1360px) {
    .nav-right { gap: 24px; }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 0.72rem; }
}

@media (max-width: 1180px) {
    .nav-links, .nav-social, .nav-cta-btn { display: none !important; }
    .mobile-toggle { display: block; }
}

@media (max-width: 1024px) {
    .pain-grid,
    .about-grid,
    .assessment-grid,
    .transition-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .method-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .bee-philosophy { grid-template-columns: repeat(2, 1fr); }
    .bee-product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .pm-grid { grid-template-columns: 1fr; }
    .pm-image { min-height: 260px; border-radius: 28px 28px 0 0; padding: 30px; }
    .pm-content { padding: 28px 24px 28px; }
    .proof-grid { grid-template-columns: 1fr; }
    .units-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .comparison-slider { max-width: 100%; }
    .knowledge-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body { padding-bottom: 62px; }
    body::after {
        content: '';
        position: fixed;
        left: 0; right: 0; bottom: 0;
        height: 62px;
        background: var(--black);
        z-index: 996;
        pointer-events: none;
    }
    section { padding: 72px 0; }
    .container { padding: 0 20px; }
    .nav-logo img { width: 200px; }

    .hero {
        min-height: 85vh;
        min-height: 85dvh;
        padding: 132px 0 84px;
    }

    .hero-watermark {
        width: min(92vw, 430px);
        height: auto;
        right: -24%;
        bottom: -6%;
        opacity: 0.06;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        line-height: 1.12;
    }

    .hero-sub {
        font-size: 0.92rem;
        max-width: 100%;
        margin-bottom: 36px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-badge { font-size: 0.62rem; padding: 7px 14px; margin-bottom: 24px; }
    .hero-proof { gap: 8px; }
    .hero-proof-pill {
        width: 100%;
        justify-content: center;
        font-size: 0.72rem;
        padding: 11px 14px;
    }

    .offer-strip-grid { grid-template-columns: 1fr; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }

    .knowledge-center { padding: 60px 0; }
    .knowledge-grid { grid-template-columns: 1fr; gap: 16px; }
    .knowledge-card { padding: 24px 20px; }

    .method-step { padding: 32px 20px; }
    .method-steps { grid-template-columns: 1fr !important; }

    .franchise-shell {
        padding: 24px 18px;
        border-radius: 28px;
        overflow: hidden;
    }

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

    .franchise-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .franchise-point {
        padding: 14px 14px;
        align-items: center;
        border-radius: 16px;
    }

    .franchise-point-icon {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
        line-height: 1;
    }

    .franchise-actions {
        flex-direction: column;
    }

    .franchise-actions .btn {
        width: 100%;
    }

    .franchise-aside {
        margin-top: 4px;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .franchise-aside h3 {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .franchise-aside p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .franchise-mini-list span {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .about-highlight { font-size: 1.1rem; padding-left: 16px; }
    .about-image {
        max-width: 84%;
        margin: 12px auto 0;
        order: 2;
    }
    .about-image img {
        border-radius: 22px;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }
    .about-content { order: 1; }
    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        width: 100%;
        margin-top: 28px;
    }
    .about-stats .stat { padding: 0 14px; }
    .about-stats .stat + .stat::before { height: 52px; }
    .stat-number { font-size: 2.25rem; }
    .stat-label {
        font-size: 0.66rem;
        line-height: 1.35;
        letter-spacing: 0.06em;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .comparison-slider { display: none; }

    .sticky-cta {
        display: inline-flex;
    }

    .transition-cta,
    .assessment-cta,
    .cta-final-btns,
    .faq-cta-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .transition-cta .btn,
    .transition-secondary-cta,
    .assessment-cta .btn,
    .cta-final-btns .btn,
    .faq-cta-actions .btn {
        width: 100%;
        min-height: 56px;
        justify-content: center;
        margin-inline: auto;
    }

    .transition-cta {
        margin-top: 28px;
    }
    .assessment-cta {
        margin-top: 28px;
    }
    .cta-final-btns {
        margin-top: 26px;
    }
    .faq-cta-actions {
        margin-top: 4px;
    }

    .wa-modal,
    .booking-modal {
        padding: 32px 20px 22px;
        border-radius: 24px;
    }
    .wa-modal-header,
    .booking-header {
        margin-bottom: 18px;
    }
    .wa-modal-title,
    .booking-modal-title {
        font-size: 1.28rem;
        line-height: 1.15;
        padding-inline: 28px;
    }
    .wa-modal-header p,
    .booking-header p {
        max-width: 28ch;
        margin: 0 auto;
        line-height: 1.45;
    }
    .wa-geo-btn,
    .booking-geo-btn {
        min-height: 54px;
        padding: 13px 14px;
        margin-bottom: 16px;
    }
    .wa-unit-list {
        gap: 10px;
    }
    .wa-unit-items,
    .booking-grid {
        gap: 10px;
    }
    .wa-unit-item,
    .booking-card {
        padding: 18px 16px;
        border-radius: 18px;
    }
    .wa-nearest-card,
    .booking-card.booking-nearest-card {
        align-items: flex-start;
        gap: 14px;
    }

    .mini-handle {
        width: 40px;
        height: 40px;
    }
    .mini-range::-webkit-slider-thumb {
        width: 40px;
        height: 40px;
    }
    .mini-range::-moz-range-thumb {
        width: 40px;
        height: 40px;
    }
    .comparison-handle {
        width: 40px;
        height: 40px;
    }
    .comparison-handle::before {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    section { padding: 56px 0; }
    .container { padding: 0 16px; }

    .hero { padding: 112px 0 64px; }
    .hero h1 { font-size: 1.6rem; margin-bottom: 18px; }
    .hero-sub { font-size: 0.85rem; margin-bottom: 28px; }
    .hero-badge { font-size: 0.58rem; padding: 6px 12px; margin-bottom: 20px; }

    .section-label { font-size: 0.62rem; margin-bottom: 10px; }
    .section-title { font-size: 1.35rem; margin-bottom: 12px; }
    .section-desc { font-size: 0.85rem; }

    .btn { padding: 13px 24px; font-size: 0.8rem; }

    .diff-grid { grid-template-columns: 1fr; gap: 10px; }
    .for-who-grid { grid-template-columns: 1fr; }
    .diff-card { padding: 24px 16px; }

    .bee-philosophy { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bee-product-grid { grid-template-columns: 1fr; gap: 14px; }
    .bee-filter-bar { gap: 6px; }
    .bee-filter-btn { padding: 8px 14px; font-size: 0.7rem; }
    .pm-content h2 { font-size: 1.55rem; }
    .pm-specs { grid-template-columns: 1fr; }
    .pm-markets { flex-direction: column; }

    .units-grid { grid-template-columns: 1fr; gap: 8px; }
    .unit-card { padding: 20px 14px; border-radius: 14px; }

    .franchise-shell { padding: 20px 14px; }
    .franchise-content .section-title,
    .franchise-aside h3 { font-size: 1.28rem; }
    .franchise-point span:last-child { font-size: 0.84rem; }

    .about-image { max-width: 88%; }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-stats .stat { padding: 0; text-align: center; }
    .about-stats .stat + .stat::before { display: none; }
    .stat-number { font-size: 2.4rem; }
    .stat-label { font-size: 0.72rem; }

    .pain-item h3 { font-size: 0.95rem; }
    .pain-item p { font-size: 0.8rem; }
    .pain-icon { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; }

    .method-step { padding: 24px 16px; border-radius: 14px; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .booking-grid { grid-template-columns: 1fr; }

    .transition-cta {
        margin-top: 28px;
    }
    .assessment-cta {
        margin-top: 28px;
    }
    .cta-final-btns {
        margin-top: 26px;
    }
    .faq-cta-actions {
        margin-top: 4px;
    }

    .wa-modal,
    .booking-modal {
        padding: 28px 16px 18px;
        border-radius: 22px;
    }
    .wa-modal-title,
    .booking-modal-title {
        font-size: 1.2rem;
        padding-inline: 22px;
    }
    .wa-modal-header p,
    .booking-header p {
        font-size: 0.82rem;
    }
    .wa-geo-btn,
    .booking-geo-btn {
        font-size: 0.82rem;
    }
}


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


/* =========================================================
   UI FINAL — Menu mobile / CTA do menu hambúrguer
   Consolidação final para home + unidades
========================================================= */

.mobile-menu .btn,
.mobile-menu .btn-primary,
.mobile-menu a.btn,
.mobile-menu a.btn-primary,
.mobile-menu button.btn,
.mobile-menu button.btn-primary {
    background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
    color: #FFFFFF !important;
    border: none;
    box-shadow: 0 10px 24px rgba(155, 68, 66, 0.22);
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-height: 54px;
    width: 100%;
    transition: all 0.3s var(--ease);
}

.mobile-menu .btn svg,
.mobile-menu .btn-primary svg,
.mobile-menu a.btn svg,
.mobile-menu a.btn-primary svg,
.mobile-menu button.btn svg,
.mobile-menu button.btn-primary svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
    fill: none;
    flex-shrink: 0;
}

.mobile-menu .btn:hover,
.mobile-menu .btn-primary:hover,
.mobile-menu a.btn:hover,
.mobile-menu a.btn-primary:hover,
.mobile-menu button.btn:hover,
.mobile-menu button.btn-primary:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
    color: #FFFFFF !important;
}

.mobile-menu a {
    padding: 16px 0;
    font-size: 0.98rem;
    line-height: 1.3;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.mobile-menu a:last-of-type {
    border-bottom: none;
}

.mobile-close {
    background: #F5F1EF;
    color: var(--text);
    transition: all 0.25s var(--ease);
}

.mobile-close:hover {
    background: var(--terracota);
    color: #FFFFFF;
}
