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

:root {
  --bg:       #FFFFFF;
  --bg2:      #F6F8F7;
  --bg3:      #ECF0EF;
  --surface:  #FFFFFF;
  --dark:     #121815;
  --dark2:    #1B2320;
  --cyan:     #1FA98C;
  --cyan-soft: #66CCB5;
  --cyan-dim: rgba(31,169,140,0.10);
  --cyan-mid: rgba(31,169,140,0.38);
  --red:      #E8503F;
  --red-dim:  rgba(232,80,63,0.12);
  --red-mid:  rgba(232,80,63,0.32);
  --text:     #171F1D;
  --text2:    #62716D;
  --text3:    #9AA6A1;
  --border:   rgba(23,31,29,0.09);
  --border2:  rgba(23,31,29,0.05);
  --d-text:   #F1F4F2;
  --d-text2:  #92A19C;
  --d-border: rgba(255,255,255,0.10);
  --d-border2: rgba(255,255,255,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img, svg { display: block; }
img { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 900px) { .container { padding: 0 24px; } }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* ─────────────── TOP NOTICE ─────────────── */
.notice {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 9px 48px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12.5px; color: var(--text2); text-align: center;
}
.notice svg { width: 14px; height: 14px; flex: none; stroke: var(--red); }
.notice strong { color: var(--text); font-weight: 600; }

/* ─────────────── NAV ─────────────── */
nav {
  position: sticky; top: 0; z-index: 200; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.logo-mark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; flex: none; background: var(--cyan); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 16px; height: 16px; }
.logo-text { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); }
.logo-text span { color: var(--cyan); }
.nav-center { display: flex; gap: 4px; }
.nav-center a { font-size: 13px; font-weight: 500; color: var(--text2); text-decoration: none; padding: 6px 14px; border-radius: 6px; transition: color 0.15s, background 0.15s; }
.nav-center a:hover { color: var(--text); background: var(--bg3); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-login { font-size: 13px; font-weight: 500; color: var(--text2); text-decoration: none; padding: 6px 14px; display: inline-flex; align-items: center; gap: 4px; }
.nav-login:hover { color: var(--cyan); }
.btn { font-size: 13px; font-weight: 600; background: var(--cyan); color: #FFFFFF; padding: 9px 18px; border-radius: 7px; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.15s, transform 0.15s; letter-spacing: -0.1px; display: inline-block; }
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost { font-size: 13px; font-weight: 600; background: transparent; color: var(--text); padding: 9px 18px; border-radius: 7px; text-decoration: none; border: 1px solid var(--border); transition: border-color 0.15s, color 0.15s; display: inline-block; }
.btn-ghost:hover { border-color: var(--cyan-mid); color: var(--cyan); }
.btn-lg { padding: 15px 30px; font-size: 15px; border-radius: 9px; }
@media (max-width: 1050px) { .nav-center { display: none; } }

/* ─────────────── HERO ─────────────── */
.hero { padding: 76px 48px 100px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 64px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-dim); border: 1px solid var(--cyan-mid);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s ease-in-out infinite; }
.hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(38px, 4.6vw, 62px); font-weight: 800; line-height: 1.03; letter-spacing: -0.03em; color: var(--text); margin-bottom: 24px; }
.hero h1 .accent { color: var(--cyan); }
.hero-sub { font-size: 17px; line-height: 1.65; color: var(--text2); font-weight: 400; max-width: 460px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: 12.5px; color: var(--text3); }
.hero-trust span:not(.dot) { color: var(--text2); }
.hero-trust .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text3); }
.hero-photo { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 480px; }
.hero-photo-blob {
  position: absolute; width: 88%; height: 88%; left: 6%; top: 2%;
  background: radial-gradient(circle at 42% 32%, rgba(31,169,140,0.16), rgba(31,169,140,0.03) 68%);
  border-radius: 42% 58% 63% 37% / 48% 42% 58% 52%;
}
.hero-photo-cutout { position: relative; z-index: 1; max-height: 500px; width: auto; filter: drop-shadow(0 26px 34px rgba(23,31,29,0.16)); }
.hero-float-card {
  position: absolute; left: 4%; bottom: 6%; z-index: 2;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 20px 40px -18px rgba(23,31,29,0.25);
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card .dotcheck { width: 34px; height: 34px; border-radius: 50%; background: var(--cyan-dim); display: flex; align-items: center; justify-content: center; flex: none; }
.hero-float-card .dotcheck svg { width: 16px; height: 16px; }
.hero-float-card .t1 { font-size: 12px; font-weight: 700; color: var(--text); }
.hero-float-card .t2 { font-size: 11px; color: var(--text2); }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; min-height: 380px; }
  .hero-photo-cutout { max-height: 380px; }
  .hero-float-card { left: 2%; }
}
@media (max-width: 640px) { .hero-ctas, .hero-trust { flex-direction: column; align-items: flex-start; } }

/* ─────────────── SHARED SECTION PATTERNS ─────────────── */
.section { padding: 108px 48px; position: relative; overflow: hidden; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--dark); }
@media (max-width: 900px) { .section { padding: 72px 24px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-dim); border: 1px solid var(--cyan-mid);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s ease-in-out infinite; }
.eyebrow.is-red { color: var(--red); background: var(--red-dim); border-color: var(--red-mid); }
.eyebrow.is-red::before { background: var(--red); }
.section-dark .eyebrow { background: rgba(0,169,155,0.16); border-color: rgba(0,169,155,0.42); }
.section-dark .eyebrow.is-red { background: rgba(232,80,63,0.14); border-color: rgba(232,80,63,0.4); }

.sec-head { max-width: 620px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--text); margin-bottom: 14px; }
.sec-head h2 .accent { color: var(--cyan); }
.sec-head h2 .accent-red { color: var(--red); }
.sec-head p { font-size: 15.5px; line-height: 1.65; color: var(--text2); }
.section-dark .sec-head h2, .section-dark .card-block h3, .section-dark .feature-row .ft { color: var(--d-text); }
.section-dark .sec-head p, .section-dark .card-block p, .section-dark .feature-row .fd { color: var(--d-text2); }

.icon-box { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.icon-box svg { width: 21px; height: 21px; }
.icon-box.is-red { background: rgba(232,80,63,0.08); border-color: var(--red-mid); }
.section-dark .icon-box { background: rgba(255,255,255,0.05); border-color: var(--d-border); }
.section-dark .icon-box.is-red { background: rgba(232,80,63,0.10); border-color: var(--red-mid); }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards.cols-6-compact { grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card-block { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 24px 22px; }
.card-block.is-red { background: rgba(232,80,63,0.05); border-color: var(--red-mid); }
.section-dark .card-block { background: rgba(255,255,255,0.035); border-color: var(--d-border2); }
.card-block h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.card-block p { font-size: 13px; line-height: 1.55; color: var(--text2); }
.card-block.compact p { display: none; }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } .cards.cols-6-compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards, .cards.cols-3, .cards.cols-6-compact { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 80px; align-items: center; }
.split.reverse { grid-template-columns: 1.08fr 0.92fr; }
.split.reverse .split-visual { order: -1; }
@media (max-width: 980px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-visual { order: 0; }
}

/* ─────────────── PROBLEMA (orange) ─────────────── */
.section-problema { background: linear-gradient(155deg, #6B2740, #3D1424); }
.split-problema { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 40px; align-items: stretch; }
.problema-text { padding-bottom: 8px; }
.problema-photo { align-self: stretch; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px -28px rgba(30,10,0,0.4); min-height: 420px; }
.problema-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 980px) { .split-problema { grid-template-columns: 1fr; } .problema-photo { order: 2; min-height: 260px; } }

.section-problema .eyebrow.is-red { color: #fff; background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.section-problema .eyebrow.is-red::before { background: #fff; }
.section-problema .sec-head h2 { color: #fff; }
.section-problema .sec-head h2 .accent-red { color: #66CCB5; }
.section-problema .sec-head p { color: rgba(255,255,255,0.85); }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.section-problema .card-block.is-red { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.22); }
.section-problema .card-block h3 { color: #fff; }
.section-problema .card-block p { color: rgba(255,255,255,0.82); }
.section-problema .icon-box.is-red { background: rgba(255,255,255,0.92); border-color: transparent; }
@media (max-width: 620px) { .cards.cols-2 { grid-template-columns: 1fr; } }

.feature-row { display: flex; gap: 16px; margin-bottom: 24px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row .icon-box { margin-bottom: 0; }
.feature-row .ft { font-size: 14.5px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.feature-row .fd { font-size: 13px; line-height: 1.55; color: var(--text2); max-width: 400px; }

.small-note { margin-top: 32px; font-size: 12px; color: var(--text3); }
.small-note strong { color: var(--text2); font-weight: 600; }
.section-dark .small-note { color: #5C7080; }
.section-dark .small-note strong { color: var(--d-text2); }

.split-photo { border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px -35px rgba(16,22,28,0.3); }
.split-photo img { width: 100%; height: auto; display: block; }

/* verification / status card */
.stage { display: flex; justify-content: center; }
.mock-card { width: 100%; max-width: 360px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 30px 26px 26px; box-shadow: 0 40px 80px -35px rgba(16,22,28,0.28); }
.section-dark .mock-card { background: var(--dark2); border-color: var(--d-border); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5); }
.mock-card-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mock-card-label .k { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); }
.section-dark .mock-card-label .k { color: var(--d-text2); }
.tag-live { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan); }
.tag-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); animation: pulse 2s ease-in-out infinite; }

.avatar-frame { position: relative; width: 154px; height: 154px; margin: 0 auto 20px; }
.avatar-circle { width: 100%; height: 100%; border-radius: 50%; background: var(--bg3); overflow: hidden; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.section-dark .avatar-circle { background: rgba(255,255,255,0.06); }
.avatar-circle svg { width: 76%; opacity: 0.5; }
.scan-line { position: absolute; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 14px 2px rgba(0,169,155,0.5); animation: scan 2.6s ease-in-out infinite; }
@keyframes scan { 0% { top: 8%; opacity: 0; } 10% { opacity: 1; } 50% { top: 88%; opacity: 1; } 60% { opacity: 0; } 100% { top: 8%; opacity: 0; } }
.corner { position: absolute; width: 20px; height: 20px; border: 2px solid var(--cyan); }
.corner.tl { top: -4px; left: -4px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.corner.tr { top: -4px; right: -4px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.corner.bl { bottom: -4px; left: -4px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.corner.br { bottom: -4px; right: -4px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }

.confirm-badge { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--cyan); background: var(--cyan-dim); border: 1px solid var(--cyan-mid); border-radius: 100px; padding: 9px 16px; margin: 0 auto 22px; width: fit-content; }
.confirm-badge svg { width: 15px; height: 15px; }

.mock-rows { border-top: 1px solid var(--border2); padding-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.section-dark .mock-rows { border-top-color: var(--d-border2); }
.mock-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; gap: 12px; }
.mock-row .k { color: var(--text2); flex: none; }
.mock-row .v { color: var(--text); font-weight: 500; text-align: right; }
.section-dark .mock-row .k { color: var(--d-text2); }
.section-dark .mock-row .v { color: var(--d-text); }
.mock-foot { margin-top: 16px; font-size: 11px; line-height: 1.5; color: var(--text3); }
.section-dark .mock-foot { color: #5C7080; }

.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #fff; background: var(--cyan); padding: 5px 12px; border-radius: 100px; }
.log-list { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.log-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text2); }
.section-dark .log-item { color: var(--d-text2); }
.log-item .ld { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-mid); flex: none; }
.log-item:first-child .ld { background: var(--cyan); }
.log-item:first-child { color: var(--text); }
.section-dark .log-item:first-child { color: var(--d-text); }

/* dashboard mock */
.browser { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 50px 100px -45px rgba(16,22,28,0.3); }
.browser-bar { height: 36px; background: var(--bg3); display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid var(--border); }
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--text3); }
.browser-body { display: flex; min-height: 300px; }
.dash-side { width: 128px; background: var(--bg2); border-right: 1px solid var(--border); padding: 18px 14px; flex: none; }
.dash-side .di { font-size: 11.5px; color: var(--text3); padding: 7px 8px; border-radius: 6px; margin-bottom: 2px; }
.dash-side .di.active { color: var(--cyan); background: var(--cyan-dim); font-weight: 600; }
.dash-main { flex: 1; padding: 20px; }
.dash-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.dash-kpi { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 13px 15px; }
.dash-kpi .lb { font-size: 10.5px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.dash-kpi .val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); }
.dash-kpi .val span { color: var(--cyan); font-size: 14px; }
.dash-rows { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 13px 15px; }
.dash-row { display: flex; justify-content: space-between; font-size: 12px; padding: 7px 0; border-bottom: 1px solid var(--border2); color: var(--text2); }
.dash-row:last-child { border-bottom: none; }
.dash-row .name { color: var(--text); }

/* ─────────────── FAQ ─────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item[open] { border-color: var(--cyan-mid); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 15px; font-weight: 600; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; flex: none; width: 10px; height: 10px; border-right: 2px solid var(--text2); border-bottom: 2px solid var(--text2); transform: rotate(45deg); transition: transform 0.2s, border-color 0.2s; }
.faq-item[open] summary::after { transform: rotate(-135deg); border-color: var(--cyan); }
.faq-item summary:hover { color: var(--cyan); }
.faq-answer { padding: 0 22px 22px; font-size: 14px; line-height: 1.65; color: var(--text2); }

/* ─────────────── ECOSSISTEMA BENTO GRID ─────────────── */
.quote { font-size: 14.5px; font-style: italic; color: var(--text2); border-left: 2px solid var(--cyan-mid); padding-left: 16px; margin-bottom: 36px; max-width: 380px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "base base plat sec" "base base gest comm" "fac fac fac fac";
  gap: 16px;
}
.bento-cell { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; }
.bento-cell h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.bento-cell p { font-size: 12.5px; line-height: 1.55; color: var(--text2); }
.bento-small { grid-area: auto; min-height: 140px; justify-content: flex-start; }
.bento-base { grid-area: base; min-height: 296px; justify-content: flex-start; background: var(--bg2); }
.bento-plat { grid-area: plat; } .bento-sec { grid-area: sec; } .bento-gest { grid-area: gest; } .bento-comm { grid-area: comm; }
.bento-fac { grid-area: fac; }
.bento-fac { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.bento-fac-title { flex: none; }
.bento-fac-icons { display: flex; gap: 28px; flex-wrap: wrap; }
.bento-fac-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bento-fac-icon .icon-box { margin-bottom: 0; }
.bento-fac-icon span { font-size: 11.5px; color: var(--text2); font-weight: 500; }

.bento-diagram { position: relative; width: 100%; height: 198px; margin-top: 20px; flex: 1; }
.bento-diagram .dline { stroke: var(--cyan-mid); stroke-width: 1.6; stroke-dasharray: 4 4; }
.bento-diagram .dot-flow { animation: dashflow 2.4s linear infinite; }
@keyframes dashflow { to { stroke-dashoffset: -16; } }
.bento-diagram .satellite-bg { fill: #fff; stroke: var(--cyan-mid); stroke-width: 1.5; }
.bento-diagram .center-bg { fill: var(--cyan); }
.bento-diagram .pulse-ring { fill: none; stroke: var(--cyan); stroke-width: 1.5; opacity: 0.5; animation: pulsering 2.4s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulsering { 0% { opacity: 0.6; transform: scale(0.9); } 100% { opacity: 0; transform: scale(1.5); } }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "base base" "plat sec" "gest comm" "fac fac"; }
}
@media (max-width: 620px) {
  .bento-grid { grid-template-columns: 1fr; grid-template-areas: "base" "plat" "sec" "gest" "comm" "fac"; }
  .bento-fac { flex-direction: column; align-items: flex-start; }
}

/* ─────────────── DASHBOARD V2 (rich mockup) ─────────────── */
.dash-v2 { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 60px 120px -50px rgba(16,22,28,0.35); }
.dash-v2-body { display: flex; min-height: 480px; }
.dash-v2-side { width: 168px; flex: none; background: #0F332C; padding: 20px 14px; display: flex; flex-direction: column; }
.dv2-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; padding: 0 6px; }
.dv2-brand img { width: 24px; height: 24px; }
.dv2-brand span { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 700; color: #fff; }
.dv2-admin { font-size: 10px; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); padding: 0 6px; margin-bottom: 22px; }
.dv2-nav { display: flex; flex-direction: column; gap: 2px; }
.dv2-item { font-size: 12px; color: rgba(255,255,255,0.62); padding: 8px 10px; border-radius: 7px; }
.dv2-item.active { background: rgba(255,255,255,0.12); color: #fff; font-weight: 600; }
.dash-v2-main { flex: 1; padding: 22px 24px; background: var(--bg2); min-width: 0; }
.dv2-greet { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.dv2-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.dv2-tab { font-size: 11.5px; font-weight: 600; padding: 7px 13px; border-radius: 8px; background: var(--bg3); color: var(--text2); border: 1px solid var(--border); }
.dv2-tab.active { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.dv2-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px 10px; }
.dv2-card-title { font-size: 11.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.dv2-card-area { margin-bottom: 14px; }
.dv2-row { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 14px; }
.dv2-donut-wrap { display: flex; align-items: center; gap: 14px; }
.dv2-legend { display: flex; flex-direction: column; gap: 6px; }
.dv2-legend-item { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--text2); }
.dv2-legend-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
@media (max-width: 980px) { .dash-v2-side { display: none; } }
@media (max-width: 560px) { .dv2-row { grid-template-columns: 1fr; } }
.quote span { display: block; margin-top: 8px; font-size: 12.5px; font-style: normal; color: var(--text3); }

/* results + CTA */
.results-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 60px; }
.result-cell { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 22px 20px; display: flex; align-items: center; gap: 14px; }
.result-cell .icon-box { margin-bottom: 0; }
.result-cell h4 { font-size: 13.5px; font-weight: 700; color: var(--text); }
@media (max-width: 900px) { .results-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .results-strip { grid-template-columns: 1fr; } }

.cta-banner {
  position: relative; border-radius: 22px; overflow: hidden;
  padding: 76px 48px; text-align: center;
  background: linear-gradient(180deg, rgba(13,20,27,0.68), rgba(13,20,27,0.86)), url('https://images.unsplash.com/photo-1666886573531-48d2e3c2b684?fm=jpg&q=70&w=1600&auto=format&fit=crop');
  background-size: cover; background-position: center 30%;
}
.cta-banner h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; color: #fff; position: relative; z-index: 1; }
.cta-banner p { font-size: 15px; color: #C3D0DC; margin-bottom: 30px; position: relative; z-index: 1; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .ctas { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; }
.cta-banner .btn-ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-banner .btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
@media (max-width: 640px) { .cta-banner { padding: 56px 28px; } .cta-banner .ctas { flex-direction: column; } }

/* ─────────────── FOOTER ─────────────── */
footer { background: var(--dark); padding: 68px 48px 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--d-border2); }
.footer-brand p { font-size: 13.5px; color: var(--d-text2); margin-top: 14px; max-width: 250px; line-height: 1.6; }
.footer-col h5 { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #5C7080; margin-bottom: 15px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--d-text2); text-decoration: none; margin-bottom: 10px; }
.footer-col a:hover { color: var(--cyan); }
.badge-row { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--d-border); border-radius: 9px; padding: 9px 14px; text-decoration: none; }
.store-badge svg { width: 18px; height: 18px; flex: none; }
.store-badge .t1 { font-size: 9px; color: #5C7080; display: block; }
.store-badge .t2 { font-size: 12.5px; color: var(--d-text); font-weight: 600; display: block; }
.footer-hospital { margin-top: 16px; }
.footer-hospital .btn-ghost { border-color: var(--d-border); color: var(--d-text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #5C7080; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: #5C7080; text-decoration: none; }
.footer-legal a:hover { color: var(--d-text2); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ═════════════════════════════════════════════════
   RESPONSIVIDADE MOBILE — REVISÃO COMPLETA
   ═════════════════════════════════════════════════ */

/* ── Menu hamburguer ── */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer;
  padding: 0;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--text); }
.nav-toggle:hover { border-color: var(--cyan-mid); }

/* Painel mobile — sempre escondido no desktop */
@media (min-width: 1051px) {
  .nav-panel { display: none !important; }
}

@media (max-width: 1050px) {
  .nav-toggle { display: inline-flex; }
  nav { padding: 0 20px; height: 60px; }
  .nav-right .nav-login { display: none; }
  .nav-right .btn { padding: 8px 14px; font-size: 12.5px; }

  /* Painel mobile */
  .nav-panel {
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 199;
    overflow-y: auto;
  }
  .nav-panel.is-open { display: flex !important; }
  .nav-panel a {
    display: block; font-size: 17px; font-weight: 500;
    color: var(--text); text-decoration: none;
    padding: 14px 8px; border-bottom: 1px solid var(--border);
  }
  .nav-panel a:last-child { border-bottom: none; }
  .nav-panel .btn, .nav-panel .btn-ghost {
    margin-top: 12px; padding: 14px 24px; font-size: 15px; text-align: center;
  }
  body.nav-open { overflow: hidden; }
}

/* ── Notice bar ── */
@media (max-width: 560px) {
  .notice { padding: 10px 20px; font-size: 11.5px; line-height: 1.4; }
}

/* ── Botões touch: mínimo 44x44 ── */
@media (max-width: 760px) {
  .btn-lg { padding: 14px 26px; font-size: 15px; }
  .btn { padding: 11px 18px; font-size: 13.5px; }
  .btn-ghost { padding: 11px 18px; font-size: 13.5px; }
}

/* ── HERO ── */
@media (max-width: 640px) {
  .hero { padding: 40px 24px 60px; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); line-height: 1.05; }
  .hero-sub { font-size: 15.5px; margin-bottom: 28px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-ctas { gap: 10px; width: 100%; }
  .hero-ctas .btn, .hero-ctas .btn-ghost { width: 100%; text-align: center; }
  .hero-trust { gap: 10px; font-size: 11.5px; flex-wrap: wrap; }
  .hero-trust .dot { display: none; }
  .hero-photo { min-height: 300px; }
  .hero-photo-cutout { max-height: 320px; }
  .hero-float-card { padding: 10px 14px; left: 0; bottom: 0; }
  .hero-float-card .t1 { font-size: 11.5px; }
  .hero-float-card .t2 { font-size: 10.5px; }
}

/* ── Section titles: escalonamento em telas muito pequenas ── */
@media (max-width: 560px) {
  .sec-head h2 { font-size: clamp(24px, 6.5vw, 32px); line-height: 1.15; }
  .sec-head p { font-size: 14.5px; }
  .sec-head { margin-bottom: 40px; }
}

/* ── Cards genéricos ── */
@media (max-width: 620px) {
  .card-block { padding: 22px 20px; }
  .card-block h3 { font-size: 14.5px; }
  .card-block p { font-size: 12.5px; }
}

/* ── Problema (imagem + cards) ── */
@media (max-width: 560px) {
  .problema-photo { min-height: 220px; border-radius: 14px; }
  .cards.cols-2 { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Splits com foto ── */
@media (max-width: 640px) {
  .split-photo { border-radius: 14px; }
  .feature-row { gap: 14px; margin-bottom: 20px; }
  .feature-row .icon-box { width: 38px; height: 38px; }
  .feature-row .icon-box svg { width: 18px; height: 18px; }
  .feature-row .ft { font-size: 14px; }
  .feature-row .fd { font-size: 12.5px; }
}

/* ── Verification card (biometria) ── */
@media (max-width: 560px) {
  .mock-card { padding: 24px 20px; }
  .avatar-frame { width: 130px; height: 130px; }
}

/* ── Bento grid ── */
@media (max-width: 620px) {
  .bento-cell { padding: 20px; }
  .bento-base { min-height: 260px; }
  .bento-diagram { height: 180px; }
  .bento-fac-icons { gap: 18px; justify-content: space-between; width: 100%; }
  .bento-fac-icon { flex: 1 1 40%; }
  .bento-fac-icon span { font-size: 10.5px; text-align: center; }
}

/* ── Dashboard (Gestão) ── */
@media (max-width: 620px) {
  .dash-v2-main { padding: 16px; }
  .dv2-greet { font-size: 15px; }
  .dv2-tabs { flex-wrap: wrap; gap: 6px; }
  .dv2-tab { font-size: 10.5px; padding: 6px 10px; }
  .dv2-card { padding: 12px 14px 8px; }
  .dv2-card-title { font-size: 11px; }
  .dv2-donut-wrap { gap: 10px; }
  .dv2-legend-item { font-size: 9.5px; }
}

/* ── FAQ ── */
@media (max-width: 560px) {
  .faq-item summary { padding: 16px 18px; font-size: 14px; gap: 12px; }
  .faq-answer { padding: 0 18px 18px; font-size: 13.5px; }
}

/* ── Results strip ── */
@media (max-width: 560px) {
  .result-cell { padding: 18px 16px; gap: 12px; }
  .result-cell h4 { font-size: 13px; }
  .results-strip { margin-bottom: 44px; }
}

/* ── CTA banner ── */
@media (max-width: 560px) {
  .cta-banner { padding: 48px 22px; border-radius: 16px; }
  .cta-banner .btn, .cta-banner .btn-ghost { width: 100%; text-align: center; }
}

/* ── Footer ── */
@media (max-width: 560px) {
  footer { padding: 48px 24px 24px; }
  .footer-top { gap: 32px; padding-bottom: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-bottom p { font-size: 11px; }
}

/* ── Páginas internas: hero ── */
@media (max-width: 640px) {
  .page-hero { padding: 60px 24px 32px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 40px); line-height: 1.1; }
  .page-hero .lead { font-size: 15px; }
}

/* ── Institucional ── */
@media (max-width: 560px) {
  .inst-body { padding: 28px 24px 60px; }
  .inst-body p { font-size: 15px; }
  .back-cta { padding: 44px 24px; }
  .back-cta > div { flex-direction: column; }
  .back-cta .btn, .back-cta .btn-ghost { width: 100%; text-align: center; }
}

/* ── Políticas ── */
@media (max-width: 560px) {
  .policy-content h2 { font-size: 20px; margin-top: 32px; }
  .policy-content h3 { font-size: 15px; margin-top: 22px; }
  .policy-content p, .policy-content ul li { font-size: 14.5px; }
}

/* ── Fale conosco: formulário ── */
@media (max-width: 560px) {
  .form-card { padding: 22px 20px; }
  .field label { font-size: 12px; }
  .field input, .field textarea { font-size: 16px; padding: 12px 14px; } /* 16px evita zoom no iOS */
  .contact-info h2 { font-size: 20px; }
  .info-block { gap: 12px; margin-bottom: 20px; }
  .info-block .icon-box { width: 40px; height: 40px; }
  .info-block .val { font-size: 14px; }
}

/* ── Calendly inline: mais alto no mobile ── */
@media (max-width: 760px) {
  .calendly-inline-widget { height: 780px; }
}
@media (max-width: 480px) {
  .calendly-inline-widget { height: 860px; }
  .calendar-card { padding: 8px; border-radius: 14px; }
  .calendar-section { padding: 24px 16px 60px; }
}

/* ── Ajustes de espaçamento macro (compressão em mobile pequeno) ── */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 20px; }
}
