/* ────────────────────────────────────────────────────────────
   CONDOMINIZE — design tokens & base (v2)
   Paleta dominante: marinho + dourado · referência: brand image
   ──────────────────────────────────────────────────────────── */

:root {
  /* Brand palette */
  --navy-1000: #050F23;
  --navy-900: #0A1E3D;
  --navy-800: #112746;
  --navy-700: #1B3661;
  --navy-600: #2B4F86;

  --gold-700: #B58535;
  --gold-600: #D4A24C;
  --gold-500: #E6C281;
  --gold-200: #F0DDAF;
  --gold-100: #F7EBC7;

  --cream-50: #FBF9F3;
  --cream-100: #F4EFE0;
  --cream-200: #EAE2CB;
  --cream-300: #D9CDA8;

  --warm-700: #6E5B3A;
  --warm-500: #9A8662;

  --ink-900: #14161A;
  --ink-700: #2E3338;
  --ink-500: #5B636B;
  --ink-400: #8A9099;
  --ink-300: #B7BCC2;
  --ink-200: #D8DCE0;
  --ink-100: #EDEFF1;

  /* Semantic */
  --bg: var(--cream-50);
  --bg-soft: var(--cream-100);
  --bg-warm: var(--cream-200);
  --surface: #FFFFFF;
  --primary: var(--navy-900);
  --primary-deep: var(--navy-1000);
  --accent: var(--gold-600);
  --accent-deep: var(--gold-700);
  --accent-soft: var(--gold-100);
  --text: var(--ink-900);
  --text-soft: var(--ink-500);
  --text-muted: var(--ink-400);
  --border: rgba(20, 22, 26, 0.09);
  --border-strong: rgba(20, 22, 26, 0.18);
  --border-gold: rgba(212, 162, 76, 0.35);

  /* Type */
  --font-display: "Fraunces", "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* Tweakable palette variants */
body[data-palette="dourado-classico"] {
  /* default — navy + gold */
}
body[data-palette="esmeralda"] {
  --primary: #0F3D2E;
  --primary-deep: #082517;
  --accent: #C9963F;
  --accent-deep: #A87928;
  --accent-soft: #F0DEB4;
}
body[data-palette="bordeaux"] {
  --primary: #4A1722;
  --primary-deep: #2E0D14;
  --accent: #D4A24C;
  --accent-deep: #B07A28;
  --accent-soft: #F0DEB4;
}
body[data-palette="grafite-cobre"] {
  --primary: #1C1F26;
  --primary-deep: #0E1014;
  --accent: #C97D5C;
  --accent-deep: #A6553A;
  --accent-soft: #F2DDD2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ───────── typography ───────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 350;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.03;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.h-display em {
  font-style: italic;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  color: var(--accent);
}
.h-display strong {
  font-weight: 600;
}
.h-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.h-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
}
.h-eyebrow.on-dark { color: var(--gold-500); }
.h-eyebrow.on-dark::before { background: var(--gold-500); }

/* ───────── layout ───────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 130px 0; }
.section-tight { padding: 80px 0; }
.section-dark {
  background: var(--navy-900);
  color: var(--cream-50);
}
.section-dark .h-eyebrow { color: var(--gold-500); }
.section-dark .h-eyebrow::before { background: var(--gold-500); }
.section-dark p { color: rgba(251, 249, 243, 0.75); }

/* ───────── buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  transition: transform .18s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy-1000);
}
.btn-primary:hover { background: var(--gold-500); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(212, 162, 76, 0.55); }
.btn-dark {
  background: var(--navy-900);
  color: var(--cream-50);
}
.btn-dark:hover { background: var(--navy-1000); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--navy-900); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream-50);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.06); border-color: var(--gold-500); }
.btn-link {
  padding: 0;
  background: transparent;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.btn-link.on-dark { color: var(--gold-500); }

/* ───────── header ───────── */
.hdr {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.hdr-logo {
  display: flex; align-items: center; gap: 0;
}
.hdr-logo img {
  height: 64px;
  width: auto;
  transition: transform .15s ease;
}
.hdr-logo:hover img { transform: scale(1.03); }

/* Hamburger button — only visible on mobile */
.hdr-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.hdr-burger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.8px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .15s ease, top .25s ease;
}
.hdr-burger span:nth-child(1) { top: 14px; }
.hdr-burger span:nth-child(2) { top: 21px; }
.hdr-burger span:nth-child(3) { top: 28px; }
.hdr-burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer — full-screen overlay menu.
   IMPORTANT: !important on the layout properties so nothing — including a
   stale cached stylesheet from earlier versions — can override the overlay
   behaviour. Without these the drawer can render inline and push content. */
.hdr-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;       /* dynamic viewport — accounts for mobile chrome */
  z-index: 100 !important;
  background: rgba(10, 30, 61, 0.92);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  display: none;
  flex-direction: column;
  padding: 96px 24px 32px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  margin: 0 !important;
}
.hdr-drawer.open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.hdr-drawer-close {
  position: fixed !important;
  top: 14px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 102 !important;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.hdr-drawer-close:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); }
.hdr-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
.hdr-drawer-inner button {
  text-align: left;
  padding: 22px 16px;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-display);
  color: rgba(251, 249, 243, 0.85);
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(212, 162, 76, 0.18);
  background: transparent;
  cursor: pointer;
  transition: color .15s ease, padding-left .2s ease;
  letter-spacing: -0.01em;
}
.hdr-drawer-inner button:hover,
.hdr-drawer-inner button:active {
  color: var(--gold-500);
  padding-left: 24px;
}
.hdr-drawer-inner button.active {
  color: var(--gold-500);
  font-style: italic;
}
.hdr-drawer-inner button.active::after {
  content: ' →';
  color: var(--gold-500);
}
.hdr-drawer-inner > a.btn {
  font-size: 15px;
  padding: 18px 24px;
  margin-top: 32px;
  justify-content: center;
}
.hdr-nav {
  display: flex; gap: 4px; align-items: center;
}
.hdr-nav button {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: background .15s ease, color .15s ease;
}
.hdr-nav button:hover { color: var(--navy-900); }
.hdr-nav button.active { color: var(--navy-900); background: var(--accent-soft); }

/* ───────── hero ───────── */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 90% 10%, rgba(212, 162, 76, 0.18), transparent 50%),
    radial-gradient(at 10% 90%, rgba(212, 162, 76, 0.08), transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero[data-layout="centered"] .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 56px;
}
.hero[data-layout="centered"] .hero-cta { justify-content: center; }
.hero[data-layout="centered"] .hero-eyebrow { justify-content: center; display: inline-flex; }
.hero[data-layout="centered"] .hero-art { display: none; }
.hero[data-layout="stacked"] .hero-grid {
  grid-template-columns: 1fr;
  gap: 72px;
}

.hero h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  margin: 30px 0 32px;
  color: var(--cream-50);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-500);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(251, 249, 243, 0.75);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px dashed rgba(212, 162, 76, 0.35);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(251, 249, 243, 0.7);
}
.hero-meta-item svg { color: var(--gold-500); flex-shrink: 0; }

/* Hero art — photo placeholder with gold border (PDF style) */
.hero-art {
  position: relative;
  aspect-ratio: 0.78 / 1;
  border-radius: 28px;
  border: 1px solid rgba(212, 162, 76, 0.4);
  padding: 12px;
  background: linear-gradient(135deg, rgba(212, 162, 76, 0.15), rgba(212, 162, 76, 0.02));
}
.hero-art-inner {
  width: 100%; height: 100%;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

/* ─── photo carousel (used in hero + photo strip cells) ─── */
.photo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: var(--navy-800);
}
.photo-carousel .pc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.05);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
}
.photo-carousel .pc-slide::before {
  /* shimmer enquanto a imagem carrega — some assim que .ready entra */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(212, 162, 76, 0.04) 30%,
    rgba(212, 162, 76, 0.18) 50%,
    rgba(212, 162, 76, 0.04) 70%
  );
  background-size: 200% 100%;
  animation: pc-shimmer 1.6s linear infinite;
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s ease;
}
.photo-carousel .pc-slide.ready::before { opacity: 0; }
@keyframes pc-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.photo-carousel .pc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .6s ease;
}
.photo-carousel .pc-slide.ready img { opacity: 1; }
.photo-carousel .pc-slide.active {
  opacity: 1;
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  0% { transform: scale(1.06) translate(2%, 1%); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
.photo-carousel .pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.05) 0%,
    transparent 35%,
    rgba(0,0,0,0.18) 70%,
    rgba(10,30,61,0.55) 100%);
  pointer-events: none;
}
.photo-carousel .pc-label {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  z-index: 3;
  text-transform: uppercase;
  transition: opacity .4s ease;
}
.photo-carousel .pc-dots {
  position: absolute;
  bottom: 24px; right: 22px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.photo-carousel .pc-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0;
  transition: width .25s ease, background .25s ease;
}
.photo-carousel .pc-dots button.on {
  background: var(--gold-500);
  border-color: var(--gold-500);
  width: 22px;
  border-radius: 4px;
}
.photo-carousel .pc-arrows {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 3;
}
.photo-carousel .pc-arrows button {
  pointer-events: auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s ease, background .15s ease;
}
.photo-carousel:hover .pc-arrows button { opacity: 1; }
.photo-carousel .pc-arrows button:hover { background: rgba(0,0,0,0.6); }
.photo-carousel.compact .pc-label {
  bottom: 14px; left: 14px;
  font-size: 9px;
  padding: 6px 10px;
}
.photo-carousel.compact .pc-dots {
  bottom: 14px; right: 14px;
}
.photo-carousel.compact .pc-arrows { display: none; }

/* corner decoration like PDF */
.hero-art .corner {
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid var(--gold-500);
  pointer-events: none;
}
.hero-art .corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; border-top-left-radius: 28px; }
.hero-art .corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; border-bottom-right-radius: 28px; }

/* badge floating on hero art */
.hero-badge {
  position: absolute;
  bottom: 36px;
  left: -24px;
  background: var(--cream-50);
  color: var(--ink-900);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 24px 50px -15px rgba(0,0,0,0.4);
  max-width: 280px;
  z-index: 3;
}
.hero-badge .b-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge .b-t { font-weight: 700; font-size: 13.5px; line-height: 1.25; }
.hero-badge .b-s { font-size: 11.5px; color: var(--text-soft); margin-top: 2px; }

/* ───────── benefits strip (Sem conflitos / sem surpresas) ───────── */
.benefits {
  background: var(--cream-100);
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}
.benefits-head {
  text-align: center;
  margin-bottom: 64px;
}
.benefits-head h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-top: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-gold);
  border-left: 1px solid var(--border-gold);
}
.benefit-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  background: var(--cream-50);
}
.benefit-item .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.benefit-item h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 350;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--navy-900);
}
.benefit-item h3 em { font-style: italic; color: var(--accent-deep); }
.benefit-item p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ───────── section title ───────── */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 72px;
}
.sec-head .lhs { max-width: 680px; }
.sec-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 24px 0 0;
}
.sec-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec-head.center .lhs { text-align: center; }
.sec-head.center .h-eyebrow { display: inline-flex; }
.sec-head .lhs p {
  font-size: 17px;
  color: var(--text-soft);
  margin-top: 22px;
  max-width: 540px;
}

/* ───────── service cards (PDF-inspired) ───────── */
.svc-section {
  background: var(--navy-900);
  color: var(--cream-50);
  position: relative;
}
.svc-section h2 { color: var(--cream-50); }
.svc-section .sec-head .lhs p { color: rgba(251, 249, 243, 0.7); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.svc-card {
  position: relative;
  padding: 36px;
  border-radius: 22px;
  border: 1px dashed var(--gold-500);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.svc-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  transform: translateY(-3px);
  border-color: var(--gold-200);
}
.svc-card .icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(212, 162, 76, 0.4);
  background: rgba(212, 162, 76, 0.08);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-card h3 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--cream-50);
}
.svc-card p {
  font-size: 14.5px;
  color: rgba(251, 249, 243, 0.7);
  line-height: 1.6;
}
.svc-card .num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-500);
  letter-spacing: 0.15em;
}

/* ───────── plans ───────── */
.plans-section {
  background: var(--cream-50);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(10, 30, 61, 0.2); }
.plan.featured {
  background: var(--navy-900);
  color: var(--cream-50);
  border-color: var(--navy-900);
  transform: translateY(-16px);
  box-shadow: 0 32px 60px -20px rgba(10, 30, 61, 0.4);
}
.plan.featured:hover { transform: translateY(-20px); }
.plan .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy-1000);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}
.plan .name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.plan.featured .name { color: var(--gold-500); }
.plan h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 350;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.plan .price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 350;
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 6px;
}
.plan .price small {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0;
}
.plan.featured .price small { color: rgba(251,249,243,0.65); }
.plan .desc {
  font-size: 14.5px;
  color: var(--text-soft);
  margin-bottom: 28px;
  min-height: 48px;
  line-height: 1.5;
}
.plan.featured .desc { color: rgba(251,249,243,0.7); }
.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 32px;
}
.plan ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
}
.plan ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.plan .btn { width: 100%; justify-content: center; }
.plan.featured .btn-primary { background: var(--accent); color: var(--navy-1000); }
.plan.featured .btn-primary:hover { background: var(--gold-500); }

/* ───────── app mockup section (purple gradient as PDF) ───────── */
.app-section {
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 44px;
}
.app-feat {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--border-gold);
}
.app-feat:last-child { border-bottom: none; }
.app-feat .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream-50);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}
.app-feat h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}
.app-feat p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.phone-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 162, 76, 0.25) 0%, transparent 55%);
}
.phone {
  position: relative;
  width: 320px;
  height: 660px;
  background: #0A0B12;
  border-radius: 48px;
  padding: 14px;
  box-shadow:
    0 50px 80px -20px rgba(10, 30, 61, 0.4),
    0 0 0 1.5px rgba(255,255,255,0.08) inset;
}
.phone-screen {
  background: linear-gradient(180deg, #5B4FBA 0%, #6F5DD0 40%, #FBFAF8 40%, var(--cream-50) 100%);
  border-radius: 36px;
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #0A0B12;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.phone-status .right { display: flex; gap: 5px; align-items: center; }

.app-header {
  padding: 16px 20px 18px;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
}
.app-header .who { display: flex; gap: 10px; align-items: center; }
.app-header .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  backdrop-filter: blur(10px);
}
.app-header .who-text small {
  font-size: 10px; color: rgba(255,255,255,0.7);
  display: block; letter-spacing: 0.05em;
}
.app-header .who-text b {
  font-size: 13.5px; font-weight: 700;
}
.app-bell {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
}
.app-bell::after {
  content: ''; position: absolute; top: 7px; right: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500); border: 2px solid #6F5DD0;
}

.app-body {
  flex: 1; overflow: hidden;
  padding: 6px 16px 0;
}
.app-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 16px 4px 10px;
}
.app-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.app-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}
.app-stat .lbl { font-size: 9.5px; color: var(--text-soft); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.app-stat .v { font-size: 18px; font-weight: 700; color: var(--navy-900); }

.app-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-top: 6px;
}
.app-chart-ttl {
  font-size: 12px; font-weight: 700; margin-bottom: 8px;
  color: var(--navy-900);
}

.app-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 12px;
}
.app-act {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.app-act .ico {
  width: 28px; height: 28px;
  background: var(--accent-soft); color: var(--accent-deep);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.app-act .lbl { font-size: 9px; font-weight: 600; color: var(--navy-900); }

.app-tab {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 10px 14px 14px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.app-tab-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
}
.app-tab-item.active { color: var(--navy-900); }
.app-tab-item.center {
  background: var(--accent);
  color: var(--navy-1000);
  width: 46px; height: 46px;
  border-radius: 50%;
  align-self: center;
  align-items: center; justify-content: center;
  margin-top: -14px;
  box-shadow: 0 8px 20px -6px rgba(212, 162, 76, 0.6);
}
.app-tab-item.center .label-tab { display: none; }

/* ───────── photo strip (lifestyle photos placeholders) ───────── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin: 80px 0;
}
.photo-strip.four {
  grid-template-columns: repeat(4, 1fr);
}
.photo-cell {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.photo-cell.tall { aspect-ratio: 3/4; grid-row: span 2; }
.photo-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    rgba(20,22,26,0.04) 0 16px,
    transparent 16px 36px);
}
.photo-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-900);
  background: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.photo-cell.dark { background: var(--navy-800); border-color: rgba(212,162,76,0.5); }
.photo-cell.dark .photo-tag { color: var(--gold-500); background: rgba(0,0,0,0.4); border: 1px solid rgba(212,162,76,0.3); }
.photo-cell.gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); }
.photo-cell.cream { background: var(--cream-200); }

/* ───────── values / differentials ───────── */
.values-section {
  background: var(--navy-900);
  color: var(--cream-50);
}
.values-section h2, .values-section h3 { color: var(--cream-50); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(212, 162, 76, 0.25);
  border-left: 1px solid rgba(212, 162, 76, 0.25);
}
.value-item {
  padding: 48px;
  border-right: 1px solid rgba(212, 162, 76, 0.25);
  border-bottom: 1px solid rgba(212, 162, 76, 0.25);
  position: relative;
}
.value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-500);
  letter-spacing: 0.18em;
}
.value-item h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 350;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
}
.value-item p { color: rgba(251, 249, 243, 0.7); font-size: 15px; line-height: 1.6; max-width: 420px; }

/* ───────── calculator ───────── */
.calc-card {
  background: var(--navy-900);
  color: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 162, 76, 0.3);
}
.calc-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.4), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.calc-card h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 350;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.calc-card h2 em {
  font-style: italic;
  color: var(--gold-500);
}
.calc-card .sub {
  color: rgba(251,249,243,0.7);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 480px;
}
.calc-form { position: relative; z-index: 1; }
.calc-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.calc-slider-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.calc-slider-val {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  min-width: 130px;
  letter-spacing: -0.02em;
}
.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--gold-500);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(212, 162, 76, 0.25);
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--gold-500);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.calc-result {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative; z-index: 1;
}
.calc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.calc-row:last-of-type { border: none; padding-bottom: 0; }
.calc-row .k { font-size: 13px; color: rgba(251,249,243,0.7); }
.calc-row .v {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.calc-savings {
  margin-top: 26px;
  padding: 22px 26px;
  background: var(--gold-600);
  color: var(--navy-1000);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calc-savings .k {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.calc-savings .v {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--navy-1000);
}

/* ───────── testimonials ───────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 300px;
  position: relative;
}
.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold-500);
  font-style: italic;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  flex: 1;
}
.testi-person {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px dashed var(--border-gold);
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border: 1px solid var(--border-gold);
}
.testi-person .n { font-weight: 700; font-size: 14px; }
.testi-person .r { font-size: 12px; color: var(--text-soft); margin-top: 2px; }

/* ──────────────────────────────────────────────────────────
   VIRTUAL OFFICE — photo-quality faux scene with Condominize sign
   ────────────────────────────────────────────────────────── */
.virtual-office {
  position: relative;
  aspect-ratio: 0.88 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 70px -30px rgba(10, 30, 61, 0.45);
}
.virtual-office .vo-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.virtual-office .vo-color {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 30, 61, 0.35) 0%,
      rgba(10, 30, 61, 0.45) 50%,
      rgba(10, 30, 61, 0.7) 100%);
  mix-blend-mode: multiply;
}
.virtual-office .vo-warm {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 70% 25%, rgba(212, 162, 76, 0.28) 0%, transparent 55%),
    radial-gradient(at 10% 90%, rgba(212, 162, 76, 0.18) 0%, transparent 45%);
  mix-blend-mode: screen;
}
.virtual-office .vo-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 0.5px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.virtual-office.soft .vo-vignette {
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.35) 100%);
}
.virtual-office .vo-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* Logo wall panel — frosted glass plaque with brushed gold border */
.vo-plaque {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 360px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(251, 249, 243, 0.88) 100%);
  border: 1px solid rgba(212, 162, 76, 0.5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14% 12%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 -1px 0 rgba(0, 0, 0, 0.06) inset,
    0 20px 40px -10px rgba(10, 30, 61, 0.4),
    0 0 0 6px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.vo-plaque::before {
  /* inner gold trim */
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 162, 76, 0.35);
  border-radius: 8px;
  pointer-events: none;
}
.vo-plaque::after {
  /* subtle reflection sheen */
  content: '';
  position: absolute;
  top: 0; left: -50%;
  width: 200%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}
.vo-plaque img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(10, 30, 61, 0.18));
}

/* Floor reflection underneath the plaque */
.vo-shadow {
  position: absolute;
  bottom: 22%; left: 50%;
  transform: translateX(-50%);
  width: 56%;
  max-width: 280px;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

/* Location tag in corner */
.vo-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-500);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 162, 76, 0.35);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 3;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vo-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 8px 1px var(--gold-500);
  animation: vo-pulse 2.5s ease-in-out infinite;
}
@keyframes vo-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Subtle gold corners like the hero */
.virtual-office .vo-corner {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid var(--gold-500);
  pointer-events: none;
  opacity: 0.6;
  z-index: 2;
}
.virtual-office .vo-corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; border-top-left-radius: 8px; }
.virtual-office .vo-corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; border-top-right-radius: 8px; }
.virtual-office .vo-corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; border-bottom-left-radius: 8px; }
.virtual-office .vo-corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; border-bottom-right-radius: 8px; }
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.about-hero h1 { font-size: clamp(44px, 5vw, 68px); margin-bottom: 28px; }
.about-hero p { font-size: 17px; color: var(--text-soft); line-height: 1.65; margin-bottom: 18px; }

.about-img {
  aspect-ratio: 0.85 / 1;
  border-radius: var(--radius-lg);
  background: var(--cream-200);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.about-img-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-700);
  padding: 8px 14px;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.about-img-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(20,22,26,0.04) 0 14px, transparent 14px 28px);
}

/* ───────── coverage ───────── */
.coverage {
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.coverage h3 { font-family: var(--font-display); font-size: 38px; font-weight: 350; letter-spacing: -0.025em; margin-bottom: 16px; }
.coverage p { font-size: 16px; color: var(--text-soft); margin-bottom: 28px; }
.cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.city {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 16px 18px;
}
.city .n { font-weight: 700; font-size: 14px; color: var(--navy-900); }
.city .pop { font-size: 11px; color: var(--text-soft); margin-top: 3px; font-family: var(--font-mono); }

.map-svg {
  background: var(--cream-50);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-gold);
}

/* ───────── blog ───────── */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -20px rgba(10, 30, 61, 0.25); }
.blog-card.feat { grid-row: span 2; }
.blog-thumb {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.blog-card.feat .blog-thumb { aspect-ratio: 4 / 3; }
.blog-thumb-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 16px, transparent 16px 32px);
}
.blog-thumb .tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 999px;
}
.blog-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-body .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.08em;
}
.blog-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.blog-card.feat h3 { font-size: 32px; }
.blog-body p {
  font-size: 14.5px;
  color: var(--text-soft);
  flex: 1;
  line-height: 1.55;
}

/* ───────── contact page ───────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  background: var(--bg);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.12);
}
.field input.field-error, .field select.field-error, .field textarea.field-error {
  border-color: #C44A3F;
  background: rgba(196, 74, 63, 0.04);
}
.field input.field-error:focus, .field select.field-error:focus, .field textarea.field-error:focus {
  box-shadow: 0 0 0 4px rgba(196, 74, 63, 0.12);
  border-color: #C44A3F;
}
.field-msg {
  display: block;
  font-size: 12.5px;
  color: #C44A3F;
  margin-top: 6px;
  font-weight: 500;
  font-family: var(--font-sans);
}
.field textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-success {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  border-radius: 12px;
  font-size: 14.5px;
  margin-bottom: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-success svg { color: var(--accent-deep); flex-shrink: 0; margin-top: 2px; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-block {
  padding: 30px 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-block .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-block .v {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.contact-block a.v { color: var(--navy-900); display: block; }
.contact-block a.v:hover { color: var(--accent-deep); }

.whats-cta {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  padding: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}
.whats-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(37,211,102,0.5); }
.whats-cta .ico {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.whats-cta b { font-size: 19px; display: block; margin-bottom: 4px; }
.whats-cta small { font-size: 13px; opacity: 0.9; }

/* ───────── whatsapp float ───────── */
.wfloat {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(37,211,102,0.5);
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .15s ease;
}
.wfloat:hover { transform: scale(1.04); }
.wfloat .pulse {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.wfloat .pulse::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ───────── footer ───────── */
.footer {
  background: var(--navy-1000);
  color: rgba(255,255,255,0.7);
  padding: 90px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(212, 162, 76, 0.2);
}
.footer-top h4 {
  color: var(--gold-500);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-top ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-top ul li { font-size: 14px; }
.footer-top ul a { transition: color .15s ease; cursor: pointer; }
.footer-top ul a:hover { color: var(--gold-500); }
.footer-brand img { height: 64px; filter: brightness(0) invert(1); margin-bottom: 8px; }
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-500);
  margin-top: 18px;
  max-width: 360px;
  line-height: 1.35;
  font-weight: 400;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ───────── final CTA ───────── */
.final-cta {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.25), transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(70px);
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px dashed rgba(212, 162, 76, 0.25);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.final-cta h2 {
  position: relative;
  font-size: clamp(48px, 6vw, 86px);
  margin-bottom: 26px;
}
.final-cta h2 em { font-style: italic; color: var(--gold-500); }
.final-cta p {
  position: relative;
  font-size: 19px;
  color: rgba(251,249,243,0.75);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.5;
}
.final-cta .hero-cta { position: relative; justify-content: center; }

/* ───────── service block (services page) ───────── */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-gold);
}
.svc-block:last-child { border-bottom: none; }
.svc-block-side {
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px dashed var(--border-gold);
}

/* ───────── newsletter ───────── */
.newsletter {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

/* ──────────────────────────────────────────────────────────
   PAIN POINTS — checklist com "X" em vermelho-âmbar
   ────────────────────────────────────────────────────────── */
.pain-section {
  background: var(--cream-50);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.pain-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.08), transparent 65%);
  filter: blur(20px);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.pain-grid .lhs h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-top: 22px;
}
.pain-grid .lhs p {
  font-size: 17px;
  color: var(--text-soft);
  margin-top: 22px;
  line-height: 1.55;
  max-width: 460px;
}
.pain-grid .lhs blockquote {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--navy-900);
  color: var(--cream-50);
  border-radius: 18px;
  border-left: 4px solid var(--accent);
  position: relative;
}
.pain-grid .lhs blockquote .conclusion {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.pain-grid .lhs blockquote .conclusion em { color: var(--gold-500); font-style: italic; }
.pain-grid .lhs blockquote .conclusion-sub {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(251, 249, 243, 0.7);
  line-height: 1.5;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.pain-item:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}
.pain-item .x {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #C44A3F;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
}
.pain-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

/* ──────────────────────────────────────────────────────────
   PILLARS — 5 pilares com numeração grande
   ────────────────────────────────────────────────────────── */
.pillars {
  display: flex;
  flex-direction: column;
}
.pillar {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(212, 162, 76, 0.2);
  align-items: start;
  transition: background .2s ease;
}
.pillar:last-child { border-bottom: none; }
.pillar:hover .pillar-num { color: var(--gold-500); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(212, 162, 76, 0.35);
  transition: color .3s ease;
  font-style: italic;
}
.pillar-head h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 350;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.pillar-head h3 em { color: var(--gold-500); font-style: italic; }
.pillar-head .pillar-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  padding: 6px 12px;
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: 999px;
}
.pillar-body p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(251, 249, 243, 0.78);
  max-width: 480px;
}

/* ──────────────────────────────────────────────────────────
   FOUNDERS — Vinícius + Erica
   ────────────────────────────────────────────────────────── */
.founders-section {
  background: var(--cream-100);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.founders-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.12), transparent 60%);
  filter: blur(30px);
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.founder-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(10, 30, 61, 0.2);
}
.founder-card.no-photo {
  background: linear-gradient(165deg, var(--surface) 0%, var(--cream-50) 100%);
  position: relative;
}
.founder-card.no-photo::before {
  /* decorative gold accent at top */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold-500) 50%, transparent 100%);
}
.founder-card.no-photo.erica::before {
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 50%, var(--accent) 100%);
}
.founder-card.no-photo .founder-body {
  padding: 48px 44px 44px;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding: 6px 12px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  margin-bottom: 24px;
  background: var(--accent-soft);
}
.founder-photo {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}
.founder-photo::before {
  /* placeholder stripes */
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, transparent 14px 32px);
}
.founder-photo .photo-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-500);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 162, 76, 0.3);
}
.founder-card.erica .founder-photo {
  background: linear-gradient(135deg, #4A2D5F, #1E1330);
}
.founder-body {
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--navy-900);
}
.founder-role {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--accent-deep);
  margin-top: 6px;
  margin-bottom: 28px;
}
.founder-creds {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding-top: 24px;
  border-top: 1px dashed var(--border-gold);
}
.founder-creds li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
}
.founder-creds li .cred-ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.founder-creds li b {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.founder-creds li span {
  color: var(--text-soft);
  font-size: 13.5px;
}

.founders-note {
  margin-top: 56px;
  padding: 32px 40px;
  border-left: 3px solid var(--accent);
  background: rgba(212, 162, 76, 0.08);
  border-radius: 0 16px 16px 0;
}
.founders-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy-900);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.founders-note strong {
  font-style: normal;
  color: var(--accent-deep);
  font-weight: 600;
}

/* ──────────────────────────────────────────────────────────
   BENEFITS LIST — 8 benefícios, lista densa elegante
   ────────────────────────────────────────────────────────── */
.benefits-list-section {
  padding: 130px 0;
  background: var(--surface);
}
.benefits-list-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}
.benefits-list-grid h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-top: 22px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
}
.benefit-line {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.benefit-line:last-child { border-bottom: none; }
.benefit-line .check {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-line h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-900);
}
.benefit-line p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ──────────────────────────────────────────────────────────
   GUARANTEE — selo 90 dias
   ────────────────────────────────────────────────────────── */
.guarantee-section {
  padding: 100px 0;
  background: var(--cream-100);
}
.guarantee-card {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 30px 60px -30px rgba(212, 162, 76, 0.5);
  position: relative;
  overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.15), transparent 60%);
  filter: blur(40px);
}
.guarantee-seal {
  width: 180px; height: 180px;
  position: relative;
  z-index: 1;
}
.guarantee-seal svg { width: 100%; height: 100%; }
.guarantee-content { position: relative; z-index: 1; }
.guarantee-content .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.guarantee-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--navy-900);
}
.guarantee-content h2 em {
  font-style: italic;
  color: var(--accent-deep);
}
.guarantee-content p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 580px;
}
.guarantee-content .small {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ──────────────────────────────────────────────────────────
   URGENCY — primeiras vagas
   ────────────────────────────────────────────────────────── */
.urgency-section {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.urgency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 0% 100%, rgba(212, 162, 76, 0.18), transparent 50%),
    radial-gradient(at 100% 0%, rgba(212, 162, 76, 0.12), transparent 50%);
}
.urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.urgency-grid h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  margin-top: 22px;
  color: var(--cream-50);
}
.urgency-grid h2 em { color: var(--gold-500); }
.urgency-grid p {
  margin-top: 22px;
  font-size: 17px;
  color: rgba(251, 249, 243, 0.78);
  line-height: 1.6;
  max-width: 540px;
}
.urgency-grid .btn { margin-top: 36px; }

.urgency-cities {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.urgency-cities .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  margin-bottom: 22px;
}
.urgency-city-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(212, 162, 76, 0.2);
}
.urgency-city-line:last-child { border-bottom: none; }
.urgency-city-line .n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.urgency-city-line .v {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(212, 162, 76, 0.25);
  background: rgba(212, 162, 76, 0.15);
  color: var(--gold-500);
}
/* status: últimas vagas — alerta vermelho-âmbar */
.urgency-city-line.full .v {
  background: rgba(196, 74, 63, 0.18);
  color: #F0A398;
  border-color: rgba(196, 74, 63, 0.4);
}
/* (slots reservados para outros status caso queira adicionar via classe extra) */
.urgency-city-line .v.status-full {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.12);
  text-decoration: line-through;
}
.urgency-city-line .v.status-soon {
  background: rgba(120, 180, 230, 0.12);
  color: #9CC4E6;
  border-color: rgba(120, 180, 230, 0.25);
}

/* ──────────────────────────────────────────────────────────
   OBJECTIONS — quebra de objeções como cards
   ────────────────────────────────────────────────────────── */
.objections-section {
  padding: 130px 0;
  background: var(--surface);
}
.objections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.objection-card {
  padding: 36px;
  background: var(--cream-50);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.objection-q {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border-gold);
}
.objection-q .badge-q {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.objection-q .text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--navy-900);
}
.objection-a {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  flex: 1;
}
.objection-a strong { color: var(--navy-900); font-weight: 600; }

/* ──────────────────────────────────────────────────────────
   PS BLOCK — fechamento pessoal
   ────────────────────────────────────────────────────────── */
.ps-section {
  padding: 130px 0 100px;
  background: var(--navy-1000);
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.ps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 50% 100%, rgba(212, 162, 76, 0.2), transparent 60%);
}
.ps-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.ps-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  font-weight: 350;
  letter-spacing: -0.02em;
  color: var(--gold-500);
  line-height: 0.9;
  margin-bottom: 18px;
}
.ps-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 26px;
  color: var(--cream-50);
}
.ps-card p {
  font-size: 17px;
  color: rgba(251, 249, 243, 0.78);
  line-height: 1.65;
  margin-bottom: 18px;
}
.ps-card p:last-of-type { margin-bottom: 36px; }
.ps-card strong { color: var(--gold-500); font-weight: 600; }
.ps-sig {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed rgba(212, 162, 76, 0.3);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-500);
}

/* ──────────────────────────────────────────────────────────
   HERO SERVICES STRIP — 4 service cards right after hero
   ────────────────────────────────────────────────────────── */
.hero-services-strip {
  background: var(--cream-50);
  padding: 60px 0;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.hss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 22px;
  box-shadow: 0 32px 64px -28px rgba(10, 30, 61, 0.25);
  overflow: hidden;
}
.hss-card {
  position: relative;
  padding: 36px 30px 32px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font: inherit;
  color: inherit;
}
.hss-card:last-child { border-right: none; }
.hss-card:hover { background: var(--cream-50); }
.hss-card:hover .hss-more { color: var(--navy-900); gap: 10px; }
.hss-card:hover .hss-ico {
  background: var(--accent);
  color: #fff;
  transform: rotate(-3deg) scale(1.05);
}
.hss-n {
  position: absolute;
  top: 24px; right: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: 0.15em;
  font-weight: 500;
}
.hss-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  border: 1px solid var(--border-gold);
}
.hss-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hss-body h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.hss-body p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
  flex: 1;
}
.hss-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  transition: color .15s ease, gap .15s ease;
}

@media (max-width: 1080px) {
  .hss-grid { grid-template-columns: 1fr 1fr; }
  .hss-card:nth-child(2) { border-right: none; }
  .hss-card:nth-child(1), .hss-card:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .hero-services-strip { padding: 32px 0; margin-top: -20px; }
  .hss-grid { grid-template-columns: 1fr; }
  .hss-card { border-right: none; border-bottom: 1px solid var(--border); }
  .hss-card:last-child { border-bottom: none; }
}
@media (max-width: 1080px) {
  .hero-grid, .app-grid, .calc-card, .about-hero, .contact-grid, .coverage, .svc-block, .newsletter, .values-grid { grid-template-columns: 1fr !important; gap: 56px; }
  .svc-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.feat { grid-row: auto; grid-column: span 2; }
  .calc-card { padding: 48px; }
  .section { padding: 80px 0; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-2px); }
  .hero-badge { position: static; margin-top: 24px; max-width: none; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-cell.tall { grid-row: auto; aspect-ratio: 4/3; }
  .pain-grid, .benefits-list-grid, .urgency-grid { grid-template-columns: 1fr; gap: 56px; }
  .pain-section, .founders-section, .benefits-list-section, .objections-section, .ps-section { padding: 80px 0; }
  .founders-grid { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 60px 1fr; gap: 24px; }
  .pillar-body { grid-column: 1 / -1; }
  .pillar-num { font-size: 64px; }
  .guarantee-card { grid-template-columns: 1fr; gap: 32px; padding: 48px 36px; text-align: center; }
  .guarantee-seal { margin: 0 auto; width: 140px; height: 140px; }
  .objections-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .about-bigstat:nth-child(2) { border-right: none !important; }
  .about-bigstat:nth-child(1),
  .about-bigstat:nth-child(2) { border-bottom: 1px dashed var(--border-gold); }
}
@media (max-width: 640px) {
  /* prevent horizontal overflow on mobile */
  html, body { overflow-x: hidden; max-width: 100vw; }
  .container { padding: 0 18px; }

  /* defensive: anything that explicitly grids 2/3/4 columns inline goes 1 col */
  [style*="gridTemplateColumns"],
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* form fields must never exceed container */
  input, select, textarea, .field input, .field select, .field textarea {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* tables (plans table on /servicos) — horizontal scroll */
  .plans-section .container > div:has(table),
  .section table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 580px; }

  /* header: hide desktop nav, show hamburger + drawer */
  .hdr-inner { height: 72px; }
  .hdr-logo img { height: 44px; }
  .hdr-nav { display: none; }
  .hdr-burger { display: block; }
  .hdr-drawer { display: block; }
  .hdr-drawer-inner { top: 72px; }

  .section, .pain-section, .founders-section, .benefits-list-section, .objections-section, .ps-section, .urgency-section, .guarantee-section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: clamp(36px, 9vw, 50px); }
  .hero-sub { font-size: 16px; }
  .hero-grid { gap: 40px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 14px; margin-top: 36px; padding-top: 26px; }
  .hero-art { aspect-ratio: 0.85 / 1; }
  .hero-badge { position: static; margin-top: 20px; max-width: none; left: 0; bottom: 0; }
  .hero-services-strip { margin-top: 0; padding: 28px 0; }

  /* sec-head: never go side-by-side on mobile */
  .sec-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 44px; }
  .sec-head h2 { font-size: clamp(28px, 7.5vw, 40px); }
  .sec-head .lhs p { font-size: 15px; }

  /* layouts that broke side-by-side */
  .svc-grid, .benefits-grid, .footer-top, .blog-grid, .field-row, .testi-grid,
  .plans-grid, .objections-grid, .founders-grid, .about-stats-grid,
  .values-grid, .resp-grid, .photo-strip, .photo-strip.four,
  .hero-grid, .app-grid, .calc-card, .about-hero, .contact-grid,
  .coverage, .svc-block, .newsletter, .urgency-grid, .pain-grid,
  .benefits-list-grid, .hss-grid, .manifesto-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .pain-grid, .benefits-list-grid, .urgency-grid,
  .hero-grid, .app-grid, .about-hero, .contact-grid,
  .coverage, .svc-block, .manifesto-grid { gap: 40px; }

  .blog-card.feat { grid-column: auto; grid-row: auto; }

  /* photo strip mobile: 2 columns, smaller, with proper aspect */
  .photo-strip.four { grid-template-columns: 1fr 1fr !important; gap: 10px; margin: 48px 0; }
  .photo-cell { aspect-ratio: 1 / 1; border-radius: 14px; }
  .photo-cell.tall { aspect-ratio: 1 / 1; grid-row: auto; }
  .photo-carousel.compact .pc-label {
    bottom: 8px; left: 8px; right: 8px;
    font-size: 8.5px;
    padding: 5px 8px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 16px);
  }
  .photo-carousel.compact .pc-dots { display: none; }

  /* benefits + values: stack with smaller numbers */
  .benefits-grid { grid-template-columns: 1fr !important; border-left: none; border-top: none; }
  .benefit-item { padding: 28px 24px; border-right: none; }
  .benefit-item h3 { font-size: 28px; }
  .values-grid { grid-template-columns: 1fr !important; border: none; }
  .value-item { padding: 28px 24px !important; border-right: none !important; border-bottom: 1px solid rgba(212, 162, 76, 0.25) !important; }
  .value-item:last-child { border-bottom: none !important; }
  .value-item h3 { font-size: 24px; margin: 12px 0 10px; }

  /* pillars: 1 column, smaller number */
  .pillar { grid-template-columns: 1fr !important; gap: 12px; padding: 32px 0; }
  .pillar-num { font-size: 48px; }
  .pillar-body { grid-column: 1; }
  .pillar-head h3 { font-size: 26px; }
  .pillar-body p { font-size: 15px; }

  /* founders */
  .founder-card.no-photo .founder-body { padding: 36px 28px; }
  .founder-name { font-size: 28px; }
  .founder-role { font-size: 17px; }
  .founders-note { padding: 22px 24px; margin-top: 36px; }
  .founders-note p { font-size: 16px; }

  /* benefits list */
  .benefit-line { gap: 16px; padding: 18px 0; }
  .benefit-line h4 { font-size: 16px; }
  .benefit-line p { font-size: 13.5px; }

  /* plans */
  .plan { padding: 28px 24px; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-2px); }
  .plan h3 { font-size: 28px; }

  /* guarantee */
  .guarantee-card { grid-template-columns: 1fr !important; gap: 28px; padding: 40px 28px; text-align: center; }
  .guarantee-seal { width: 130px; height: 130px; margin: 0 auto; }
  .guarantee-content h2 { font-size: clamp(26px, 7.5vw, 36px); }
  .guarantee-content p { font-size: 15px; }

  /* objections */
  .objection-card { padding: 28px 24px; }
  .objection-q .text { font-size: 16px; }

  /* testimonials */
  .testi { padding: 28px 24px; }
  .testi-quote { font-size: 18px; }

  /* urgency */
  .urgency-cities { padding: 24px 22px; }
  .urgency-city-line { padding: 12px 0; flex-wrap: wrap; gap: 4px; }
  .urgency-city-line .n { font-size: 17px; }

  /* manifesto in /sobre */
  .manifesto-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .about-bigstat { padding: 28px 22px !important; }
  .about-bigstat div:first-child { font-size: 42px !important; }

  /* final CTA + PS */
  .final-cta { padding: 72px 0; }
  .final-cta h2 { font-size: clamp(32px, 8vw, 46px); }
  .final-cta p { font-size: 16px; }
  .final-cta::after { inset: 12px; }
  .ps-card { padding: 0 4px; }
  .ps-mark { font-size: 56px; }
  .ps-card h2 { font-size: clamp(22px, 6vw, 28px); }

  /* contact */
  .contact-form { padding: 28px 22px; }
  .contact-block { padding: 22px 24px; }
  .whats-cta { padding: 24px; gap: 16px; }
  .whats-cta b { font-size: 16px; }

  /* hero CTA cards strip */
  .hss-card { padding: 24px 22px; }
  .hss-card:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .hss-body h3 { font-size: 17px; }
  .hss-body p { font-size: 13.5px; }

  /* footer */
  .footer { padding: 60px 0 32px; }
  .footer-top { gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* floating WhatsApp */
  .wfloat {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px 10px 10px;
  }
  .wfloat span:not(.pulse) { display: none; }
  .wfloat .pulse { width: 40px; height: 40px; }

  /* svc-block side */
  .svc-block { padding: 48px 0; }
  .svc-block-side { padding: 28px 24px; }
}
}
