/* ============================================================
   Rendizy — Site institucional
   Dark mode primário · gradiente de marca como acento
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* surfaces */
  --bg:          #08080c;
  --bg-2:        #0b0b11;
  --surface:     #121119;
  --surface-2:   #17161f;
  --surface-3:   #1d1b27;
  --border:      rgba(255,255,255,0.08);
  --border-2:    rgba(255,255,255,0.14);

  /* text */
  --text:        #f5f4f8;
  --muted:       #9c9aa9;
  --dim:         #6a6878;

  /* brand */
  --red:         #ff4955;
  --magenta:     #ca38c7;
  --purple:      #642fd9;
  --grad:        linear-gradient(100deg, #ff4955 0%, #ca38c7 52%, #642fd9 100%);
  --grad-soft:   linear-gradient(100deg, rgba(255,73,85,.16), rgba(202,56,199,.16), rgba(100,47,217,.16));

  /* semantic */
  --pos:         #34d399;
  --pos-dim:     rgba(52,211,153,.14);
  --neg:         #ff5762;
  --neg-dim:     rgba(255,87,98,.14);
  --warn:        #fbbf3c;

  /* type */
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;

  /* shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --maxw: 1200px;

  --shadow:    0 1px 0 rgba(255,255,255,.04) inset, 0 18px 40px -24px rgba(0,0,0,.8);
  --glow:      0 0 0 1px rgba(202,56,199,.35), 0 20px 60px -20px rgba(202,56,199,.5);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 13px; font-weight: 500;
  letter-spacing: .02em; color: var(--muted);
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 100px;
  background: var(--surface);
}
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px 1px var(--magenta); }

.section-label {
  font-family: var(--display); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--magenta);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 500; font-size: 15px;
  padding: 12px 20px; border-radius: 100px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .25s ease, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(202,56,199,.55); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px -12px rgba(202,56,199,.7); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,.22); }
.btn-wa { background: var(--surface); color: var(--text); border-color: var(--border-2); }
.btn-wa:hover { border-color: var(--pos); color: var(--text); background: var(--surface-2); }
.btn-wa svg { color: var(--pos); }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8,8,12,.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.header .wrap { display: flex; align-items: center; gap: 28px; height: 72px; }

.brand { display: flex; align-items: center; gap: 8px; }
/* logotipo oficial (ícone + wordmark em SVG único) */
.brand-logo { height: 30px; width: auto; display: block; }
.header .brand-logo { height: 34px; }
.footer .brand-logo { height: 30px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  font-size: 14.5px; color: var(--muted); padding: 8px 12px; border-radius: 9px;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: var(--surface); }
.header .actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.header .actions .login { font-size: 14.5px; color: var(--muted); padding: 8px 6px; }
.header .actions .login:hover { color: var(--text); }

.menu-btn { display: none; background: var(--surface); border: 1px solid var(--border-2); border-radius: 10px; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--text); }
.menu-btn svg { width: 20px; height: 20px; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 99; background: rgba(8,8,12,.96); backdrop-filter: blur(8px); display: none; flex-direction: column; padding: 96px 28px 28px; gap: 6px; }
.drawer.open { display: flex; }
.drawer a { font-family: var(--display); font-size: 22px; padding: 14px 4px; border-bottom: 1px solid var(--border); color: var(--text); }
.drawer .btn { margin-top: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-aura {
  position: absolute; pointer-events: none; filter: blur(70px); opacity: .55; z-index: 0;
}
.aura-1 { top: -120px; right: -80px; width: 620px; height: 520px;
  background: radial-gradient(closest-side, rgba(202,56,199,.55), transparent 70%); }
.aura-2 { top: 120px; left: -160px; width: 560px; height: 520px;
  background: radial-gradient(closest-side, rgba(100,47,217,.45), transparent 70%); }
.aura-3 { bottom: -200px; right: 20%; width: 500px; height: 420px;
  background: radial-gradient(closest-side, rgba(255,73,85,.32), transparent 70%); }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
}

.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }

.hero h1 { font-size: clamp(40px, 5.4vw, 68px); font-weight: 700; margin: 22px 0 0; }
.hero .sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); margin: 22px 0 0; max-width: 560px; line-height: 1.55; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero .trust { display: flex; align-items: center; gap: 18px; margin-top: 26px; flex-wrap: wrap; color: var(--dim); font-size: 13.5px; }
.hero .trust .item { display: inline-flex; align-items: center; gap: 7px; }
.hero .trust svg { width: 15px; height: 15px; color: var(--pos); }

/* ---------- living calendar mock ---------- */
.cal-card {
  position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 18px; overflow: hidden;
}
.cal-card::before { content:""; position:absolute; inset:0; border-radius: var(--r-lg); padding:1px;
  background: linear-gradient(140deg, rgba(202,56,199,.5), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head .title { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600; font-size: 15px; }
.cal-head .title .ico { width: 26px; height: 26px; border-radius: 7px; background: var(--grad-soft); display: grid; place-items: center; }
.cal-head .title .ico svg { width: 15px; height: 15px; color: var(--magenta); }
.sync-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--pos); background: var(--pos-dim); padding: 5px 10px; border-radius: 100px; font-weight: 600; font-family: var(--display); }
.sync-chip .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--pos); position: relative; }
.sync-chip .pulse::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:1px solid var(--pos); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0%{ transform:scale(.6); opacity:.9;} 100%{ transform:scale(1.9); opacity:0;} }

.cal-grid { display: grid; grid-template-columns: 96px repeat(7, 1fr); gap: 0; }
.cal-grid .corner { }
.cal-grid .dh { text-align: center; font-size: 11px; color: var(--dim); font-family: var(--display); padding-bottom: 8px; }
.cal-grid .dh b { display:block; color: var(--muted); font-size: 13px; font-weight:600; }
.chan { display: flex; align-items: center; gap: 8px; height: 38px; font-size: 12.5px; color: var(--muted); }
.chan .badge { width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 10px; color: #fff; flex-shrink: 0; }
.b-air { background: #ff5a5f; } .b-bk { background: #1a64d6; } .b-vrbo { background: #1c8aa6; } .b-exp { background: #f5b000; color:#222; } .b-dir { background: var(--grad); }
.crow { display: flex; align-items: stretch; }
.cal-row { position: relative; flex: 1; height: 38px; border-top: 1px solid var(--border); }
.cal-cells { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(7,1fr); }
.cal-cells span { border-left: 1px solid rgba(255,255,255,.04); }
.resv { position: absolute; top: 7px; height: 24px; border-radius: 7px; display: flex; align-items: center; padding: 0 9px; font-size: 11px; font-family: var(--display); font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; box-shadow: 0 4px 12px -4px rgba(0,0,0,.5); }
.resv.air { background: linear-gradient(90deg,#ff5a5f,#e0474c); }
.resv.bk { background: linear-gradient(90deg,#2575e6,#1a5bc4); }
.resv.vrbo { background: linear-gradient(90deg,#1f9bbd,#157e9b); }
.resv.dir { background: var(--grad); }
.resv.block { background: repeating-linear-gradient(45deg, #2a2833, #2a2833 6px, #211f29 6px, #211f29 12px); color: var(--muted); border: 1px dashed rgba(255,255,255,.18); }

.cal-toast { position: absolute; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 10px; background: var(--surface-3); border: 1px solid var(--border-2); border-radius: 12px; padding: 10px 13px; box-shadow: 0 16px 40px -16px rgba(0,0,0,.8); max-width: 240px; }
.cal-toast .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--neg-dim); display: grid; place-items: center; flex-shrink: 0; }
.cal-toast .ic svg { width: 16px; height: 16px; color: var(--neg); }
.cal-toast b { font-family: var(--display); font-size: 12.5px; display: block; }
.cal-toast span { font-size: 11.5px; color: var(--muted); }

/* logo strip under hero */
.logos { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
.logos .wrap { display: flex; align-items: center; gap: 14px 34px; flex-wrap: wrap; justify-content: center; }
.logos .lbl { font-size: 12.5px; color: var(--dim); font-family: var(--display); letter-spacing: .04em; }
.logos .name { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--muted); opacity: .8; transition: opacity .2s, color .2s; }
.logos .name:hover { opacity: 1; color: var(--text); }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
section { position: relative; }
.block { padding: 96px 0; }
.head-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.head-center h2 { font-size: clamp(30px, 3.6vw, 46px); margin: 16px 0 0; }
.head-center p { color: var(--muted); font-size: 18px; margin-top: 16px; line-height: 1.55; }

/* ---------- Pra Quem ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.persona {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; transition: transform .2s, border-color .2s, background .2s;
  overflow: hidden;
}
.persona:hover { transform: translateY(-4px); border-color: var(--border-2); }
.persona.feat { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border-color: rgba(202,56,199,.32); }
.persona.feat::after { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--grad); }
.persona .tag { position: absolute; top: 18px; right: 18px; font-size: 11px; font-family: var(--display); font-weight: 600; color: var(--magenta); background: var(--grad-soft); padding: 4px 9px; border-radius: 100px; }
.persona .pico { width: 46px; height: 46px; border-radius: 12px; background: var(--surface-3); border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: 18px; }
.persona .pico svg { width: 23px; height: 23px; color: var(--magenta); }
.persona h3 { font-size: 20px; }
.persona .role { font-size: 12.5px; color: var(--dim); font-family: var(--display); margin-top: 3px; }
.persona .pain { color: var(--muted); font-size: 14.5px; margin-top: 14px; line-height: 1.55; }
.persona ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.persona li { display: flex; gap: 9px; font-size: 14px; color: var(--text); }
.persona li svg { width: 16px; height: 16px; color: var(--pos); flex-shrink: 0; margin-top: 3px; }

/* ---------- Quem somos (story) ---------- */
.story { position: relative; overflow: hidden; }
.story .wrap { position: relative; z-index: 1; }
.story-aura { position: absolute; pointer-events: none; filter: blur(90px); opacity: .4; z-index: 0; }
.story-aura.a1 { top: -100px; left: -120px; width: 520px; height: 460px; background: radial-gradient(closest-side, rgba(100,47,217,.5), transparent 70%); }
.story-aura.a2 { bottom: -160px; right: -100px; width: 520px; height: 460px; background: radial-gradient(closest-side, rgba(202,56,199,.4), transparent 70%); }

.story-intro { max-width: 780px; }
.story-intro h2 { font-size: clamp(30px, 3.8vw, 48px); margin: 16px 0 0; }
.story-lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--text); line-height: 1.5; margin-top: 24px; font-weight: 500; }
.story-lead .grad-text { font-weight: 600; }
.story-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 48px; margin-top: 26px; max-width: 900px; }
.story-body p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.story-body p strong { color: var(--text); font-weight: 600; }

.story-quote { position: relative; margin: 48px 0; padding: 28px 32px; border-left: 3px solid transparent;
  border-image: var(--grad) 1; background: linear-gradient(100deg, rgba(202,56,199,.07), transparent 70%); border-radius: 0 var(--r) var(--r) 0; }
.story-quote p { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2vw, 26px); line-height: 1.35; letter-spacing: -.01em; }

.story-united { margin-top: 56px; }
.story-united .ut { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.story-united .ut h3 { font-size: clamp(22px, 2.4vw, 30px); }
.story-united .ut span { color: var(--muted); font-size: 15px; }
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 18px; transition: transform .2s, border-color .2s; }
.cap:hover { transform: translateY(-3px); border-color: var(--border-2); }
.cap .ci { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); display: grid; place-items: center; margin-bottom: 13px; }
.cap .ci svg { width: 20px; height: 20px; color: var(--magenta); }
.cap h4 { font-family: var(--display); font-weight: 600; font-size: 15px; line-height: 1.2; }
.cap p { color: var(--muted); font-size: 13px; margin-top: 6px; line-height: 1.5; }

.story-close { margin-top: 48px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding: 28px 32px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid rgba(202,56,199,.28); border-radius: var(--r-lg); position: relative; overflow: hidden; }
.story-close .glow { position: absolute; inset: 0; opacity: .5; background: radial-gradient(70% 140% at 0% 0%, rgba(202,56,199,.25), transparent 60%); pointer-events: none; }
.story-close .sc-txt { position: relative; z-index: 1; flex: 1; min-width: 280px; }
.story-close h3 { font-size: clamp(20px, 2.2vw, 28px); }
.story-close h3 .grad-text { font-weight: 700; }
.story-close p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.story-close .btn { position: relative; z-index: 1; }

/* ---------- Pilares (bento) ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.pillar {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px; overflow: hidden;
  transition: transform .2s, border-color .2s; display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-3px); border-color: var(--border-2); }
.pillar .num { position: absolute; top: 20px; right: 22px; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--dim); }
.pillar .pico { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; margin-bottom: 16px; }
.pillar .pico svg { width: 22px; height: 22px; color: #fff; }
.pillar h3 { font-size: 20px; }
.pillar p { color: var(--muted); font-size: 14.5px; margin-top: 10px; line-height: 1.55; }
.pillar .feats { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.pillar .feats li { display: flex; gap: 8px; font-size: 13.5px; color: var(--text); }
.pillar .feats li svg { width: 15px; height: 15px; color: var(--magenta); flex-shrink: 0; margin-top: 3px; }
.pillar .more { margin-top: auto; padding-top: 18px; font-family: var(--display); font-size: 13.5px; font-weight: 500; color: var(--magenta); display: inline-flex; align-items: center; gap: 6px; }
.pillar .more svg { width: 14px; height: 14px; transition: transform .2s; }
.pillar:hover .more svg { transform: translateX(3px); }

.span-3 { grid-column: span 3; } .span-2 { grid-column: span 2; }

/* mini visuals inside featured pillars */
.mini-fin { margin-top: 18px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.mini-fin .row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
.mini-fin .row:last-child { border-bottom: none; }
.mini-fin .row .l { color: var(--muted); display: flex; align-items: center; gap: 8px; }
.mini-fin .row .l .d { width: 7px; height: 7px; border-radius: 50%; }
.mini-fin .pos { color: var(--pos); font-family: var(--display); font-weight: 600; }
.mini-fin .neg { color: var(--neg); font-family: var(--display); font-weight: 600; }

.mini-bots { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.bot-line { display: flex; align-items: center; gap: 10px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; padding: 9px 11px; font-size: 12.5px; }
.bot-line .ch { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }
.bot-line .ch.wa { background: var(--pos-dim); color: var(--pos); }
.bot-line .ch.mail { background: rgba(202,56,199,.14); color: var(--magenta); }
.bot-line .txt { color: var(--muted); flex: 1; }
.bot-line .txt b { color: var(--text); font-weight: 600; }
.bot-line .ok { color: var(--pos); font-size: 11px; font-family: var(--display); font-weight: 600; }

/* ---------- Comparativo ---------- */
.compare-wrap { max-width: 920px; margin: 0 auto; }
.killer {
  display: flex; gap: 16px; align-items: flex-start; background: var(--grad-soft);
  border: 1px solid rgba(202,56,199,.3); border-radius: var(--r); padding: 22px 24px; margin-bottom: 28px;
}
.killer .k-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; }
.killer .k-ic svg { width: 22px; height: 22px; color: #fff; }
.killer h3 { font-size: 19px; }
.killer p { color: var(--muted); font-size: 14.5px; margin-top: 6px; line-height: 1.5; }

.ctable { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.ctable th, .ctable td { padding: 16px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.ctable thead th { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: .03em; color: var(--muted); background: var(--bg-2); }
.ctable thead th.c-rz { color: var(--text); position: relative; }
.ctable thead th.c-rz::after { content:""; position:absolute; left:0; right:0; bottom:-1px; height:2px; background: var(--grad); }
.ctable .feat-col { color: var(--text); font-weight: 500; width: 50%; }
.ctable .c-stays, .ctable .c-rz { text-align: center; width: 25%; }
.ctable .c-rz { background: rgba(202,56,199,.05); }
.ctable tbody tr:last-child td { border-bottom: none; }
.ctable tbody tr:hover td { background: rgba(255,255,255,.015); }
.ctable tbody tr:hover td.c-rz { background: rgba(202,56,199,.08); }
.mark-y { color: var(--pos); display: inline-flex; }
.mark-n { color: var(--dim); display: inline-flex; }
.mark-y svg, .mark-n svg { width: 19px; height: 19px; }
.mini-note { font-size: 12px; color: var(--dim); display: block; margin-top: 2px; }

/* ---------- Governança ---------- */
.gov { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; transition: border-color .2s, transform .2s; }
.gcard:hover { border-color: var(--border-2); transform: translateY(-3px); }
.gcard .gic { width: 42px; height: 42px; border-radius: 11px; background: var(--surface-3); border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: 16px; }
.gcard .gic svg { width: 21px; height: 21px; color: var(--magenta); }
.gcard h3 { font-size: 17px; }
.gcard .big { font-family: var(--display); font-weight: 700; font-size: 30px; margin-bottom: 4px; }
.gcard .big .grad-text { font-weight: 700; }
.gcard p { color: var(--muted); font-size: 14px; margin-top: 10px; line-height: 1.55; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 44px; background: var(--surface); }
.stat { padding: 26px 24px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat .v { font-family: var(--display); font-weight: 700; font-size: clamp(26px,3vw,34px); }
.stat .l { color: var(--muted); font-size: 13.5px; margin-top: 4px; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; overflow: hidden; }
.cta-panel {
  position: relative; border: 1px solid rgba(202,56,199,.3); border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  padding: 64px 48px; text-align: center; overflow: hidden;
}
.cta-panel .glow { position: absolute; inset: 0; z-index: 0; opacity: .5;
  background: radial-gradient(60% 120% at 50% 0%, rgba(202,56,199,.35), transparent 60%); }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { font-size: clamp(30px, 4vw, 48px); }
.cta-panel p { color: var(--muted); font-size: 18px; margin: 18px auto 0; max-width: 540px; }
.cta-panel .cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.cta-panel .fine { margin-top: 20px; color: var(--dim); font-size: 13px; }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--border); }
.footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand-col p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 280px; line-height: 1.55; }
.footer .brand-col .socials { display: flex; gap: 10px; margin-top: 18px; }
.footer .socials a { width: 36px; height: 36px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: color .2s, border-color .2s; }
.footer .socials a:hover { color: var(--text); border-color: var(--border-2); }
.footer .socials a svg { width: 17px; height: 17px; }
.footer h4 { font-family: var(--display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--muted); font-size: 14px; transition: color .15s; }
.footer ul a:hover { color: var(--text); }
.footer .bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--dim); font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ---------- reveal ----------
   Resting state is ALWAYS visible. The only hidden state is the STATIC
   rule `html.js .reveal:not(.in)`; the moment app.js adds `.in`, that
   selector stops matching and the element falls back to the static
   visible base — instantly, with no time-based CSS involved. We do NOT
   put any transition/animation in the visibility path on purpose: some
   embedded webviews freeze the CSS clock at frame 0, which would strand
   animated/transitioned content at opacity:0 forever. */
.reveal { opacity: 1; transform: none; }
html.js .reveal:not(.in) { opacity: 0; transform: translateY(22px); }
@media (prefers-reduced-motion: reduce) { .sync-chip .pulse::after { animation: none; } }

/* ============================================================
   SPOTLIGHT (feature sections com mock)
   ============================================================ */
.spotlight { padding: 92px 0; }
.spot-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.spot-grid.flip .spot-copy { order: 2; }
.spot-copy h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 16px 0 0; }
.spot-copy .lead { color: var(--muted); font-size: 18px; margin-top: 18px; line-height: 1.6; max-width: 520px; }
.spot-list { list-style: none; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.spot-list li { display: flex; gap: 12px; align-items: flex-start; }
.spot-list .ck { width: 24px; height: 24px; border-radius: 7px; background: var(--grad-soft); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.spot-list .ck svg { width: 14px; height: 14px; color: var(--magenta); }
.spot-list b { font-family: var(--display); font-weight: 600; font-size: 15.5px; display: block; }
.spot-list span { color: var(--muted); font-size: 14.5px; }
.spot-copy .cta-row { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

.mock-frame {
  position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: var(--r-lg); box-shadow: var(--shadow);
  overflow: hidden;
}
.mock-frame::before { content:""; position:absolute; inset:0; border-radius: var(--r-lg); padding:1px;
  background: linear-gradient(140deg, rgba(202,56,199,.45), transparent 42%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none; z-index:3; }

/* ---------- chat unificado mock ---------- */
.chat-mock { display: grid; grid-template-columns: 248px 1fr; height: 440px; }
.chat-list { border-right: 1px solid var(--border); background: var(--bg-2); display: flex; flex-direction: column; }
.chat-list .clh { padding: 16px 16px 12px; border-bottom: 1px solid var(--border); font-family: var(--display); font-weight: 600; font-size: 14px; display:flex; align-items:center; justify-content: space-between; }
.chat-list .clh .cnt { font-size: 11px; color: var(--magenta); background: var(--grad-soft); padding: 3px 8px; border-radius: 100px; }
.chat-item { display: flex; gap: 11px; padding: 13px 15px; border-bottom: 1px solid var(--border); cursor: default; position: relative; transition: background .15s; }
.chat-item.active { background: var(--surface-2); }
.chat-item.active::before { content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--grad); }
.chat-item .av { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 14px; color: #fff; position: relative; }
.chat-item .av .src { position: absolute; right: -3px; bottom: -3px; width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--bg-2); display: grid; place-items: center; font-size: 8px; font-weight: 700; color: #fff; }
.src.s-air { background: #ff5a5f; } .src.s-bk { background: #1a64d6; } .src.s-wa { background: #25d366; } .src.s-dec { background: #f25c05; }
.chat-item .meta { flex: 1; min-width: 0; }
.chat-item .meta .nm { font-size: 13.5px; font-weight: 600; display: flex; justify-content: space-between; gap: 6px; }
.chat-item .meta .nm .t { font-size: 11px; color: var(--dim); font-weight: 400; flex-shrink: 0; }
.chat-item .meta .pv { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.chat-item .unread { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); flex-shrink: 0; align-self: center; }

.chat-thread { display: flex; flex-direction: column; }
.chat-th-head { padding: 13px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 11px; }
.chat-th-head .av { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 13px; color: #fff; }
.chat-th-head .who { font-family: var(--display); font-weight: 600; font-size: 14px; }
.chat-th-head .via { font-size: 11.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; margin-top: 1px; }
.chat-th-head .via .pill { background: var(--pos-dim); color: var(--pos); padding: 1px 7px; border-radius: 100px; font-weight: 600; font-family: var(--display); }
.chat-body { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 11px; background: var(--bg); overflow: hidden; }
.bubble { max-width: 76%; padding: 9px 13px; border-radius: 14px; font-size: 13.5px; line-height: 1.45; }
.bubble.in { align-self: flex-start; background: var(--surface-3); border-bottom-left-radius: 4px; }
.bubble.out { align-self: flex-end; background: var(--grad); color: #fff; border-bottom-right-radius: 4px; }
.bubble .bt { display: block; font-size: 10px; opacity: .6; margin-top: 4px; }
.chat-input { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.chat-input .fake { flex: 1; height: 38px; border-radius: 100px; background: var(--surface-3); border: 1px solid var(--border); display: flex; align-items: center; padding: 0 15px; color: var(--dim); font-size: 13px; }
.chat-input .send { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; }
.chat-input .send svg { width: 16px; height: 16px; color: #fff; }

/* ---------- motor de reservas mock ---------- */
.book-mock { padding: 0; }
.book-photo { height: 168px; background:
  linear-gradient(180deg, rgba(8,8,12,0) 40%, rgba(8,8,12,.55)),
  linear-gradient(120deg, #642fd9, #ca38c7 55%, #ff4955);
  position: relative; display: flex; align-items: flex-end; padding: 16px 18px; }
.book-photo .tag { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); color: #fff; font-size: 11px; font-family: var(--display); font-weight: 600; padding: 5px 11px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px; }
.book-photo .tt { color: #fff; }
.book-photo .tt h4 { font-size: 19px; }
.book-photo .tt .loc { font-size: 12.5px; opacity: .85; display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.book-body { padding: 18px; }
.book-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.book-field { background: var(--bg-2); border: 1px solid var(--border); border-radius: 11px; padding: 10px 13px; }
.book-field .fl { font-size: 10.5px; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; font-family: var(--display); font-weight: 600; }
.book-field .fv { font-size: 14px; font-weight: 600; margin-top: 3px; }
.book-price { display: flex; align-items: baseline; justify-content: space-between; margin: 16px 0 4px; }
.book-price .pl { color: var(--muted); font-size: 13.5px; }
.book-price .pv { font-family: var(--display); font-weight: 700; font-size: 22px; }
.book-price .pv small { font-size: 13px; color: var(--muted); font-weight: 500; }
.book-save { font-size: 12.5px; color: var(--pos); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.book-cta { width: 100%; background: var(--grad); color: #fff; border: none; border-radius: 12px; padding: 14px; font-family: var(--display); font-weight: 600; font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.book-cta svg { width: 17px; height: 17px; }
.pay-row { display: flex; align-items: center; gap: 8px; margin-top: 14px; justify-content: center; flex-wrap: wrap; }
.pay { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-family: var(--display); font-weight: 600; color: var(--muted); background: var(--bg-2); border: 1px solid var(--border); padding: 6px 11px; border-radius: 9px; }
.pay svg { width: 15px; height: 15px; }
.pay.soon { opacity: .6; }
.pay.soon .badge-soon { font-size: 9px; background: var(--surface-3); color: var(--dim); padding: 1px 6px; border-radius: 100px; }
.pay .pix { color: #32bcad; } .pay .card { color: var(--magenta); } .pay .pp { color: #2790c3; }

/* ---------- economia / preço ---------- */
.econ-wrap { max-width: 860px; margin: 0 auto; }
.econ-bars { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.econ-bar .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.econ-bar .nm { font-family: var(--display); font-weight: 600; font-size: 15px; }
.econ-bar .amt { font-family: var(--display); font-weight: 700; font-size: 17px; }
.econ-bar .track { height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); overflow: hidden; position: relative; }
.econ-bar .fill { height: 100%; border-radius: 11px; display: flex; align-items: center; padding: 0 16px; font-family: var(--display); font-weight: 600; font-size: 13px; color: #fff; }
.econ-bar.them .fill { width: 100%; background: var(--surface-3); color: var(--muted); }
.econ-bar.us .fill { width: 50%; background: var(--grad); }
.econ-note { text-align: center; margin-top: 28px; color: var(--dim); font-size: 13px; }
.econ-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--grad-soft); border: 1px solid rgba(202,56,199,.3); border-radius: 100px; padding: 9px 18px; font-family: var(--display); font-weight: 600; font-size: 15px; }
.econ-badge .pct { font-size: 20px; } .econ-badge .pct .grad-text { font-weight: 700; }

/* badge cor Decolar/Expedia no calendário */
.b-dec { background: #f25c05; } .badge.b-exp { background: #f5b000; color:#1a1a1a; }
.resv.dec { background: linear-gradient(90deg,#f97316,#ea580c); }

/* ============================================================
   LIGHT THEME
   ============================================================ */
[data-theme="light"] {
  --bg:        #fbfafd;
  --bg-2:      #f3f2f7;
  --surface:   #ffffff;
  --surface-2: #faf9fc;
  --surface-3: #f1f0f6;
  --border:    rgba(18,14,30,.09);
  --border-2:  rgba(18,14,30,.15);
  --text:      #17141f;
  --muted:     #5c5969;
  --dim:       #8a8796;
  --grad-soft: linear-gradient(100deg, rgba(255,73,85,.10), rgba(202,56,199,.10), rgba(100,47,217,.10));
  --pos:       #15915f;
  --pos-dim:   rgba(21,145,95,.12);
  --neg:       #d63846;
  --neg-dim:   rgba(214,56,70,.10);
  --shadow:    0 1px 2px rgba(18,14,30,.04), 0 18px 40px -28px rgba(18,14,30,.22);
}
[data-theme="light"] body { background: var(--bg); }
[data-theme="light"] .header.scrolled { background: rgba(251,250,253,.78); }
[data-theme="light"] .drawer { background: rgba(251,250,253,.97); }
[data-theme="light"] .hero-aura { opacity: .32; }
[data-theme="light"] .hero-grid-bg {
  background-image:
    linear-gradient(rgba(18,14,30,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,14,30,.04) 1px, transparent 1px);
  opacity: 1;
}
[data-theme="light"] .cal-card { background: linear-gradient(180deg, #ffffff, #faf9fc); }
[data-theme="light"] .resv.block { background: repeating-linear-gradient(45deg,#eceaf2,#eceaf2 6px,#e2e0ea 6px,#e2e0ea 12px); color: var(--muted); border-color: rgba(18,14,30,.16); }
[data-theme="light"] .cal-cells span { border-left-color: rgba(18,14,30,.05); }
[data-theme="light"] .b-exp { color: #222; }
[data-theme="light"] .ctable thead th { background: var(--bg-2); }
[data-theme="light"] .ctable tbody tr:hover td { background: rgba(18,14,30,.015); }
[data-theme="light"] .cta-panel { background: linear-gradient(160deg,#ffffff,#faf9fc); }
[data-theme="light"] .cta-panel .glow { opacity: .9; }
[data-theme="light"] .story-aura { opacity: .22; }
[data-theme="light"] .story-close { background: linear-gradient(160deg,#ffffff,#faf9fc); }
[data-theme="light"] .story-quote { background: linear-gradient(100deg, rgba(202,56,199,.05), transparent 70%); }

/* theme toggle button */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--border-2);
  display: grid; place-items: center; color: var(--muted);
  transition: color .15s, border-color .15s, background .15s;
}
.theme-toggle:hover { color: var(--text); border-color: rgba(255,255,255,.22); }
[data-theme="light"] .theme-toggle:hover { border-color: rgba(18,14,30,.25); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .i-moon { display: none; }
.theme-toggle .i-sun { display: block; }
[data-theme="light"] .theme-toggle .i-moon { display: block; }
[data-theme="light"] .theme-toggle .i-sun { display: none; }

/* ── drawer theme button (mobile only — hidden on desktop) ── */
.drawer-theme {
  display: none; /* shown only at ≤640px via media query */
  width: 100%; height: auto;
  align-items: center; gap: 12px;
  padding: 14px 4px; border-bottom: 1px solid var(--border);
  border-radius: 0; margin-top: 6px;
  font-family: var(--display); font-size: 22px; color: var(--text);
  background: transparent; border-top: none; border-left: none; border-right: none;
  text-align: left; cursor: pointer;
}
.drawer-theme svg { width: 22px; height: 22px; flex-shrink: 0; }
.drawer-theme span { flex: 1; }
.drawer-theme:hover { color: var(--text); border-color: var(--border); background: transparent; }

/* ── lang selector ── */
.lang-switch {
  position: relative;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 42px; padding: 0 12px;
  border-radius: 11px; background: var(--surface);
  border: 1px solid var(--border-2); color: var(--muted);
  font-family: var(--display); font-weight: 600; font-size: 13px;
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap; cursor: pointer;
}
.lang-btn:hover { color: var(--text); border-color: rgba(255,255,255,.22); }
[data-theme="light"] .lang-btn:hover { border-color: rgba(18,14,30,.25); }
.lang-btn > svg:first-child { width: 16px; height: 16px; flex-shrink: 0; }
.lang-btn .chev { width: 14px; height: 14px; transition: transform .2s; }
.lang-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
#langCurrent { letter-spacing: .04em; }

.lang-menu {
  display: none;
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: var(--r-sm); overflow: hidden;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.6);
  z-index: 200; min-width: 130px;
}
.lang-menu.open { display: block; }

.lang-opt {
  display: block; width: 100%; padding: 11px 16px;
  text-align: left; background: transparent;
  border: none; color: var(--muted);
  font-family: var(--display); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: background .15s, color .15s;
}
.lang-opt:hover { background: var(--surface-3); color: var(--text); }
.lang-opt.active {
  color: var(--magenta);
  background: var(--grad-soft);
}
[data-theme="light"] .lang-menu { box-shadow: 0 16px 40px -12px rgba(18,14,30,.18); }

/* ============================================================
   RESPONSIVE
   Breakpoints: 1080 (tablet largo) · 980 (tablet) · 720 (phablet)
   · 640 (mobile) · 520 (mobile estreito) · 400 (mobile pequeno)
   ============================================================ */

/* tablet largo — alivia o aperto dos grids de 3/4 colunas */
@media (max-width: 1080px) {
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
  .hero .wrap { gap: 40px; }
  .spot-grid { gap: 44px; }
}

@media (max-width: 980px) {
  .spot-grid { grid-template-columns: 1fr; gap: 36px; }
  .spot-grid.flip .spot-copy { order: 0; }
  .chat-mock { height: 420px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 130px 0 70px; }
  .cal-card { max-width: 560px; margin-inline: auto; }
  .mock-frame { max-width: 560px; margin-inline: auto; width: 100%; }
  .persona-grid { grid-template-columns: 1fr; }
  .story-intro, .story-body, .story-lead { max-width: none; }
  .story-body { grid-template-columns: 1fr; gap: 18px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .span-3, .span-2 { grid-column: span 2; }
  .gov-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .footer .top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer .brand-col { grid-column: 1 / -1; }
  .footer .brand-col p { max-width: 460px; }
  /* nav some -> hamburger aparece JUNTO (evita tablet sem navegação) */
  .nav { display: none; }
  .menu-btn { display: flex; }
}

/* phablet — encurta o respiro vertical e ajusta o header */
@media (max-width: 720px) {
  .block { padding: 64px 0; }
  .spotlight { padding: 64px 0; }
  .hero { padding: 116px 0 56px; }
  .head-center { margin-bottom: 40px; }
  .head-center p, .spot-copy .lead, .cta-panel p { font-size: 16.5px; }
  .story-united { margin-top: 40px; }
  .story-quote { margin: 36px 0; padding: 22px 22px; }
  .story-quote p { font-size: 19px; }
  .story-close { margin-top: 36px; padding: 24px 22px; gap: 18px; }
  .header .wrap { gap: 16px; }
  .header .brand-logo { height: 30px; }
  .footer .top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .chat-mock { grid-template-columns: 92px 1fr; }
  .chat-item .meta, .chat-list .clh .cnt { display: none; }
  .chat-item { justify-content: center; padding: 13px 0; }
  .book-row { grid-template-columns: 1fr; }
  .header .actions .login, .header .actions .btn { display: none; }
  .header .actions { gap: 8px; }

  /* tema some do header, aparece no drawer */
  .header #themeToggle { display: none; }
  .drawer-theme { display: flex; }
  .bento { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .span-3, .span-2 { grid-column: span 1; }
  .gov-grid, .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .footer .top { grid-template-columns: 1fr 1fr; }
  .ctable th, .ctable td { padding: 13px 12px; font-size: 13px; }
  .cta-panel { padding: 44px 24px; }

  /* calendário vivo do hero — aperta a grade pra caber no celular */
  .cal-card { padding: 14px; }
  .cal-grid { grid-template-columns: 60px repeat(7, 1fr); }
  .cal-grid .dh { font-size: 10px; }
  .cal-grid .dh b { font-size: 12px; }
  .chan { width: 60px; flex-shrink: 0; gap: 6px; font-size: 10.5px; }
  .chan .badge { width: 17px; height: 17px; font-size: 9px; }
  .resv { font-size: 9.5px; padding: 0 6px; }
  .cal-toast { right: 12px; bottom: 12px; max-width: 200px; padding: 9px 11px; }

  /* hero — mocks ocupam a largura toda */
  .cal-card, .mock-frame { max-width: none; }
}

/* mobile estreito — CTAs viram blocos de toque cheios */
@media (max-width: 520px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .story-close { flex-direction: column; align-items: stretch; text-align: left; }
  .story-close .sc-txt { min-width: 0; }
  .story-close .btn { width: 100%; }
  .hero .trust { gap: 10px 16px; }
  .logos .wrap { gap: 12px 22px; }
}

/* mobile pequeno (~360px) — reduz títulos e respiro */
@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 104px 0 48px; }
  .hero h1 { font-size: 31px; }
  .hero .sub { font-size: 16px; }
  .kicker { font-size: 12px; padding: 5px 10px; }
  .block { padding: 52px 0; }
  .head-center h2, .cta-panel h2 { font-size: 26px; }
  .story-intro h2 { font-size: 27px; }
  .spot-copy h2 { font-size: 25px; }
  .header .brand-logo { height: 27px; }
  .cta-panel { padding: 36px 18px; }
  .chat-mock { grid-template-columns: 76px 1fr; height: 400px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
}
