/* ===================================================================
   TAP Serviços — Clean Light System
   Warm cream · White cards · Orange accent · Plus Jakarta Sans
=================================================================== */

:root {
  /* surfaces */
  --bg: #e8e2d4;
  --bg-2: #e2dbcb;
  --card: #ffffff;
  --card-2: #f6f2e9;
  --soft: #efeae0;

  /* ink */
  --ink: #0d0d0c;
  --ink-2: #1a1916;
  --muted: #807a70;
  --muted-2: #b6b0a3;
  --light: #c3bdb0;
  /* the "light" half of mixed-weight headlines */
  --hairline: #e7e1d2;
  --hairline-2: #d9d3c4;

  /* accents */
  --accent: #d32f2f;
  /* TAP red */
  --accent-2: #a82424;
  --accent-soft: #fbe3e3;
  --accent-deep: #1a1916;
  --on-accent: #ffffff;
  /* contrast color used ON accent backgrounds */

  --ok: #2f9460;
  --bad: #d54932;

  /* radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-xxl: 44px;
  --r-full: 999px;

  /* shadows */
  --shadow-xs: 0 1px 2px rgba(20, 18, 14, .05);
  --shadow-sm: 0 6px 16px rgba(20, 18, 14, .07), 0 1px 3px rgba(20, 18, 14, .04);
  --shadow-md: 0 18px 44px rgba(20, 18, 14, .10), 0 4px 10px rgba(20, 18, 14, .05);
  --shadow-lg: 0 40px 90px rgba(20, 18, 14, .14), 0 14px 32px rgba(20, 18, 14, .08);
  --shadow-card: 0 12px 32px rgba(20, 18, 14, .08), 0 2px 6px rgba(20, 18, 14, .04), inset 0 1px 0 rgba(255, 255, 255, .9);
  --shadow-hover: 0 24px 60px rgba(20, 18, 14, .14), 0 6px 16px rgba(20, 18, 14, .08), inset 0 1px 0 rgba(255, 255, 255, .9);

  /* layout */
  --maxw: 1240px;
  --page-pad: 24px;

  /* type */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -.025em;
  line-height: 1.02;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

input,
textarea {
  font: inherit;
  color: inherit;
}

/* Mixed-weight headline spans */
.b {
  font-weight: 800;
  color: var(--accent);
}

.l {
  font-weight: 300;
  color: var(--light);
}

/* ============================================================
   PAGE LAYOUT
============================================================ */
.page {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .page {
    padding-bottom: 0;
  }
}

/* Card surface (now full-bleed bands) */
.card {
  background: var(--soft);
  padding: 28px 40px;
  position: relative;
  overflow: hidden;
}

section+section {
  margin-top: 24px;
}

/* ============================================================
   FLOATING SIDEBAR -- removed
============================================================ */
.sidebar {
  display: none;
}

.sb-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--ink);
  margin-bottom: 6px;
}

.logo-mark {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 0 0 3px var(--ink);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.sb-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sb-link {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  color: var(--muted);
  transition: color .15s, background .15s;
}

.sb-link svg {
  width: 18px;
  height: 18px;
}

.sb-link::after {
  content: attr(data-tip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
}

.sb-link:hover {
  color: var(--ink);
  background: var(--soft);
}

.sb-link:hover::after {
  opacity: 1;
}

.sb-link.is-active {
  color: var(--ink);
  background: var(--accent-soft);
}

.sb-whats {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  background: var(--ok);
  color: white;
  margin-top: 6px;
}

.sb-whats svg {
  width: 18px;
  height: 18px;
}

.sb-whats:hover {
  background: #267850;
}

@media (max-width: 900px) {
  .sidebar {
    display: flex;
    position: fixed;
    z-index: 100;
    left: 50%;
    top: auto;
    bottom: 14px;
    transform: translateX(-50%);
    flex-direction: row;
    width: auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r-full);
    padding: 6px 10px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    align-items: center;
  }

  .sb-logo {
    display: none;
  }

  .sb-nav {
    flex-direction: row;
    gap: 4px;
  }

  .sb-whats {
    margin-top: 0;
    margin-left: 4px;
  }
}

/* ============================================================
   TOP NAV (inside hero card)
============================================================ */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 26px;
  background: rgba(255, 255, 255, .42);
  border-radius: var(--r-full);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 18px 50px rgba(20, 18, 14, .10), inset 0 1px 0 rgba(255, 255, 255, .65);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  color: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand__logo--lg {
  height: 56px;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  box-shadow: inset 0 0 0 4px white, 0 1px 2px rgba(0, 0, 0, .06);
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: white;
  border-radius: 50%;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.01em;
  font-size: 15px;
  color: var(--muted);
  text-transform: lowercase;
}

.topnav__menu {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--ink-2);
}

.topnav__menu a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  transition: color .15s;
}

.topnav__menu a:hover {
  color: var(--accent);
}

.topnav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.topnav__phone {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

.topnav__phone:hover {
  color: var(--accent);
}

.topnav__join {
  padding: 12px 22px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s, background .2s, box-shadow .2s;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 40%, transparent);
}

.topnav__join::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

.topnav__join:hover {
  background: var(--accent-2);
  color: var(--on-accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 55%, transparent);
}

@media (max-width: 900px) {

  .topnav__menu,
  .topnav__phone {
    display: none;
  }

  .topnav {
    padding: 10px 10px 10px 16px;
  }
}

/* ============================================================
   HERO — full-bleed
============================================================ */
.hero {
  position: relative;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg .hero__scene {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .30) 42%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, 0) 22%);
}

.hero .topnav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  margin: 0;
  width: calc(100% - 48px);
  max-width: 1400px;
  transition:
    width .55s cubic-bezier(.7, .2, .2, 1),
    max-width .55s cubic-bezier(.7, .2, .2, 1),
    padding .45s cubic-bezier(.7, .2, .2, 1),
    background .3s,
    border-radius .4s,
    opacity .4s ease,
    transform .5s cubic-bezier(.2, .7, .2, 1),
    visibility 0s linear 0s;
  overflow: hidden;
}

/* Collapsed state (in hero) — menu totalmente oculto.
   Só aparece depois que o usuário passa do hero. */
.hero .topnav.is-collapsed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-16px);
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.2, .7, .2, 1),
    visibility 0s linear .35s;
}

/* Expanded children animate in with delay */
.topnav__menu,
.topnav__actions,
.brand__name {
  transition: opacity .45s .35s ease, transform .5s .3s cubic-bezier(.2, .7, .2, 1);
  transform-origin: center;
}

.hero__overlay {
  position: relative;
  z-index: 2;
  padding: 140px 56px 88px;
  max-width: 760px;
}

.hero__title {
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.035em;
  margin-bottom: 32px;
}

.hero .hero__title .l {
  color: #5a5246;
}

.hero .searchbar {
  max-width: 540px;
}

.hero__quote {
  margin: 40px 0 0;
  max-width: 360px;
  position: relative;
  padding-left: 28px;
}

.hero__quote-mark {
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.hero__quote blockquote {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0px;
}

.hero__live {
  position: absolute;
  top: 130px;
  right: 32px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.hero__live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(47, 148, 96, .55);
  animation: pulse 2s infinite;
}

.hero__infocard {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  background: white;
  border-radius: var(--r-xl);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-md);
  width: 340px;
  max-width: calc(100vw - 64px);
}

.hero__infocard::before {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
  }

  .hero .topnav {
    left: 50%;
    width: calc(100% - 24px);
    top: 10px;
  }

  .hero__overlay {
    padding: 40px 20px 60px;
  }

  .hero__title {
    font-size: clamp(40px, 11vw, 64px);
  }

  .hero__live {
    top: 90px;
    right: 16px;
  }

  .hero__quote {
    max-width: 50%;
  }

  .hero__quote blockquote {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__infocard {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }
}

/* Logo image in versus header */
.vlogo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-right: 4px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
  position: relative;
  padding: 18px 18px 24px;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 16px;
  min-height: 540px;
}

.hero__title {
  font-size: clamp(48px, 7.6vw, 104px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.035em;
  margin-bottom: 32px;
}

.hero__title .l {
  font-weight: 300;
}

/* search/pill bar */
.searchbar {
  max-width: 580px;
}

.pills {
  display: inline-flex;
  gap: 4px;
  background: white;
  padding: 6px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-xs);
  margin-bottom: 14px;
}

.pill {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: background .15s, color .15s;
}

.pill.is-active {
  background: var(--ink);
  color: white;
}

.searchbar__input {
  display: flex;
  align-items: center;
  background: white;
  border-radius: var(--r-full);
  padding: 6px 6px 6px 22px;
  box-shadow: var(--shadow-sm);
  gap: 8px;
}

.searchbar__input input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 14.5px;
  color: var(--ink);
  padding: 14px 0;
}

.searchbar__input input::placeholder {
  color: var(--muted-2);
}

.searchbar__go {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.searchbar__go svg {
  width: 18px;
  height: 18px;
}

.searchbar__go:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.hero__quote {
  margin: 32px 0 0;
  max-width: 320px;
  position: relative;
  padding-left: 28px;
}

.hero__quote-mark {
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  color: var(--accent);
  opacity: .9;
}

.hero__quote blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  font-style: italic;
}

/* Right image card */
.hero__right {
  position: relative;
  min-height: 540px;
}

.hero__img {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: visible;
}

.hero__img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #cfc6b6;
  box-shadow: var(--shadow-md);
}

.hero__scene {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__live {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.hero__live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(47, 148, 96, .55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 148, 96, .55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(47, 148, 96, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(47, 148, 96, 0);
  }
}

/* Floating info card (Bismillah-style) */
.hero__infocard {
  position: absolute;
  right: -8px;
  bottom: -8px;
  background: white;
  border-radius: var(--r-xl) 4px var(--r-xl) var(--r-xl);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-md);
  width: 320px;
  max-width: 90%;
}

.hero__infocard::before {
  /* concave corner cut on the top-right */
  content: "";
  position: absolute;
  right: -1px;
  top: -28px;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at bottom left, transparent 24px, white 25px);
  pointer-events: none;
}

.hero__infocard-head b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.hero__infocard-head p {
  font-size: 13px;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.hero__infocard-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.price {
  margin-right: auto;
  padding: 8px 14px;
  background: var(--soft);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.circ {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .15s, transform .15s, color .15s;
}

.circ svg {
  width: 16px;
  height: 16px;
}

.circ--ghost {
  background: var(--soft);
  color: var(--ink);
}

.circ--ghost:hover {
  background: var(--bg-2);
}

.circ--solid {
  background: var(--accent);
  color: var(--on-accent);
}

.circ--solid:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__left {
    min-height: auto;
  }

  .hero__right {
    min-height: 360px;
    margin-top: 32px;
  }

  .hero__title {
    font-size: clamp(40px, 11vw, 64px);
  }
}

/* ============================================================
   TRUST / FEATURES
============================================================ */
.trust {
  padding: 100px 32px 80px;
}

.trust__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.trust__title {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.trust__lede {
  font-size: 14.5px;
  max-width: 360px;
  color: var(--muted);
}

.trust__divider {
  margin: 30px 0 26px;
  height: 70px;
  width: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.trust__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.avatars {
  display: flex;
}

.av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft);
  border: 2px solid var(--bg);
  margin-left: -8px;
  background-position: center;
  background-size: cover;
}

.av:first-child {
  margin-left: 0;
}

.av--1 {
  background: linear-gradient(135deg, #c4886e, #7a4a32);
}

.av--2 {
  background: linear-gradient(135deg, #88a3b8, #3d5870);
}

.av--3 {
  background: linear-gradient(135deg, #a89372, #5e4d35);
}

.av--4 {
  background: linear-gradient(135deg, #9ab095, #4f6849);
}

.stats-row {
  display: flex;
  gap: 36px;
  align-items: baseline;
  flex-wrap: wrap;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}

.stat span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.trust__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--hairline-2);
  padding-left: 36px;
  position: relative;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf6 100%);
  border-radius: var(--r-lg);
  border: 1px solid rgba(215, 209, 195, .6);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .22s cubic-bezier(.2, .7, .2, 1), box-shadow .25s, border-color .2s;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .5), transparent 30%);
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
}

.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 30%, transparent), inset 0 1px 0 rgba(255, 255, 255, .3);
  position: relative;
  z-index: 1;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
}

.feature__body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.feature__body h3 .l {
  font-weight: 400;
  color: var(--muted);
}

.feature__body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.feature__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline-2);
  color: var(--ink);
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}

.feature__arrow svg {
  width: 16px;
  height: 16px;
}

.feature:hover .feature__arrow {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

@media (max-width: 900px) {
  .trust {
    padding: 60px 16px 40px;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust__right {
    border-left: 0;
    padding-left: 0;
  }
}

/* ============================================================
   SECTION HEAD
============================================================ */
.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 14px 0 14px;
}

.section-head p {
  font-size: 15.5px;
  max-width: 580px;
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: var(--r-full);
}

/* ============================================================
   PILLARS DETAIL
============================================================ */
.pillars {
  padding: 80px 40px 80px;
  background: var(--card-2);
  border-radius: var(--r-xxl);
  margin: 0 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(215, 209, 195, .5);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 50%);
  pointer-events: none;
}

.ptabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
  max-width: 900px;
}

.ptab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #ffffff, #faf8f3);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  text-align: left;
  border: 1px solid rgba(215, 209, 195, .5);
  box-shadow: var(--shadow-xs);
  transition: all .22s cubic-bezier(.2, .7, .2, 1);
}

.ptab:hover:not(.is-active) {
  border-color: rgba(215, 209, 195, .9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.ptab__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: .05em;
}

.ptab.is-active {
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  border-color: var(--accent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 35%, transparent), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.ptab.is-active .ptab__num {
  color: rgba(255, 255, 255, .75);
}

.ppanel {
  display: none;
  grid-template-columns: 1.2fr .9fr;
  gap: 56px;
  align-items: center;
  padding: 8px 0;
}

.ppanel.is-active {
  display: grid;
  animation: fadeUp .4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ppanel__body h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.ppanel__body p {
  font-size: 15.5px;
  max-width: 540px;
  margin-bottom: 24px;
}

.ppanel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.ppanel__list li {
  background: linear-gradient(180deg, #ffffff, #fdfbf6);
  border: 1px solid rgba(215, 209, 195, .5);
  border-radius: var(--r-md);
  padding: 16px 20px;
  position: relative;
  padding-left: 56px;
  box-shadow: var(--shadow-xs);
  transition: transform .15s, box-shadow .2s, border-color .2s;
}

.ppanel__list li:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
}

.ppanel__list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--accent) 30%, transparent);
}

.ppanel__list b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 2px;
}

.ppanel__list span {
  font-size: 13px;
  color: var(--muted);
}

.ppanel__viz {
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #8a5a37, #4a2f1b);
  position: relative;
  overflow: hidden;
}

.ppanel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.ppanel__viz::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, .04) 20px 21px),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(0, 0, 0, .08) 20px 21px);
}

.ppanel__viz .viz-cam {
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 20px color-mix(in srgb, var(--accent) 18%, transparent), 0 0 0 60px color-mix(in srgb, var(--accent) 8%, transparent);
}

.ppanel__viz .viz-cam::after {
  content: "";
  position: absolute;
  inset: 24%;
  background: var(--ink);
  border-radius: 50%;
}

.ppanel__viz--alt {
  background: linear-gradient(135deg, #2c2620, #0d0d0c);
}

.ppanel__viz--alt2 {
  background: linear-gradient(135deg, #4c5d52, #1f2823);
}

.ppanel__viz--alt2 .viz-cam {
  background: #d8d3c5;
}

.ppanel__viz--alt2 .viz-cam::after {
  background: var(--ink);
}

@media (max-width: 900px) {
  .pillars {
    padding: 40px 20px;
  }

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

  .ppanel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================================
   VERSUS
============================================================ */
.versus {
  padding: 100px 32px 60px;
}

.vcard {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff, #fdfbf6);
  border-radius: var(--r-xl);
  padding: 10px;
  border: 1px solid rgba(215, 209, 195, .5);
  box-shadow: var(--shadow-card);
}

.vhead,
.vrow {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  align-items: stretch;
}

.vhead {
  padding: 14px 14px 18px;
}

.vhead__us,
.vhead__them {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.vhead__us {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 25%, transparent), color-mix(in srgb, var(--accent) 10%, transparent));
  border-radius: var(--r-lg);
  margin-right: 6px;
  color: var(--ink);
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent) 35%, transparent);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.vhead__us:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent) 55%, transparent);
}

.vhead__them {
  color: var(--muted);
}

.vbadge {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
}

.vbadge--us {
  background: var(--accent);
  color: var(--on-accent);
}

.vbadge--them {
  background: var(--bg-2);
  color: var(--muted);
}

.vrow {
  border-top: 1px solid var(--hairline);
  padding: 4px 14px;
}

.vrow--last {
  padding-bottom: 14px;
}

.vlabel {
  display: flex;
  align-items: center;
  padding: 18px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vcell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  font-size: 14.5px;
}

.vcell--us {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, transparent), color-mix(in srgb, var(--accent) 5%, transparent));
  border-radius: var(--r-md);
  margin: 4px 6px 4px 0;
  color: var(--ink);
  font-weight: 600;
  border: 1.5px solid color-mix(in srgb, var(--accent) 60%, transparent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 18%, transparent);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.vcell--us:hover {
  transform: scale(1.01);
  border-color: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 40%, transparent);
}

.vcell--them {
  color: var(--muted);
}

.chk,
.ex {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.chk {
  background: var(--accent);
  color: var(--on-accent);
}

.ex {
  background: var(--bg-2);
  color: var(--muted);
}

@media (max-width: 900px) {
  .versus {
    padding: 50px 16px;
  }

  .vhead,
  .vrow {
    grid-template-columns: 1fr;
  }

  .vlabel {
    padding: 14px 0 4px;
  }

  .vcell {
    padding: 12px 14px;
  }

  .vcell--us {
    margin: 4px 0;
  }

  .vhead__us,
  .vhead__them {
    margin: 4px 0;
  }
}

/* ============================================================
   CALCULADORA
============================================================ */
.calc {
  background: var(--card-2);
  padding: 100px 40px;
  border-radius: var(--r-xxl);
  margin: 0 24px;
  border: 1px solid rgba(215, 209, 195, .5);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.calc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 50%);
  pointer-events: none;
}

.calc__head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.calc__head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.calc__head p {
  font-size: 15px;
}

.calc__form {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff, #fdfbf6);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid rgba(215, 209, 195, .5);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.calc__steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.cstep {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  background: var(--soft);
  color: var(--muted);
  border: 1px solid var(--hairline);
  transition: all .2s;
}

.csep {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

.cstep.is-active {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.cstep.is-done {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}

.cpanel {
  display: none;
}

.cpanel.is-active {
  display: block;
  animation: fadeUp .3s ease;
}

.cpanel h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
}

.cpanel h3 .muted {
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
}

.opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.opt {
  position: relative;
  padding: 14px 18px;
  background: linear-gradient(180deg, #ffffff, #faf8f3);
  border: 1px solid rgba(215, 209, 195, .6);
  border-radius: var(--r-full);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .18s;
  box-shadow: var(--shadow-xs);
}

.opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.opt:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.opt:has(input:checked) {
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  color: var(--on-accent);
  padding-right: 44px;
  font-weight: 600;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 30%, transparent);
}

.opt:has(input:checked)::after {
  content: "✓";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.range-wrap {
  padding: 4px 8px;
}

.range-wrap input[type=range] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 8px;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 50%, var(--soft) 50%);
  outline: none;
}

.range-wrap input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--accent);
  cursor: grab;
  box-shadow: var(--shadow-sm);
}

.range-wrap input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--accent);
  cursor: grab;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: .04em;
}

.range-out {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--soft);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink);
}

.range-out b {
  font-weight: 700;
}

.fld {
  margin-top: 14px;
}

.fld label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fld input,
.fld textarea {
  width: 100%;
  background: var(--soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 14px 16px;
  outline: none;
  transition: all .15s;
  resize: vertical;
}

.fld input:focus,
.fld textarea:focus {
  background: white;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.fld input::placeholder,
.fld textarea::placeholder {
  color: var(--muted-2);
}

.fld-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc__nav {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 900px) {
  .calc {
    padding: 50px 16px;
  }

  .calc__form {
    padding: 22px;
  }

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

  .fld-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 15.5px;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--accent-2);
  color: var(--on-accent);
  transform: translateY(-1px);
}

.btn--ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--hairline-2);
}

.btn--ghost:hover {
  background: var(--soft);
}

.btn--ghost[disabled] {
  opacity: .4;
  cursor: not-allowed;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi {
  padding: 100px 40px 80px;
}

.testi__videos {
  max-width: var(--maxw);
  margin: 0 auto 36px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.vtesti {
  margin: 0;
  width: min(280px, calc(50% - 14px));
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vtesti video {
  width: 100%;
  aspect-ratio: 320 / 608;
  object-fit: cover;
  display: block;
  background: #000;
  border-radius: var(--r-xl);
  border: 1px solid rgba(215, 209, 195, .5);
  box-shadow: var(--shadow-card);
}

.vtesti .tcard__meta {
  justify-content: center;
  text-align: center;
}

.testi__track {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  min-height: 260px;
}

.tcard {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff, #fdfbf6);
  border-radius: var(--r-xl);
  padding: 48px 54px;
  border: 1px solid rgba(215, 209, 195, .5);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
  overflow: hidden;
}

.tcard::before {
  content: "“";
  position: absolute;
  top: -40px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent) 10%, transparent);
  line-height: 1;
  pointer-events: none;
}

.tcard.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.tcard blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.3;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.tcard__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tav--1 {
  background: linear-gradient(135deg, #c4886e, #7a4a32);
}

.tav--2 {
  background: linear-gradient(135deg, #88a3b8, #3d5870);
}

.tav--3 {
  background: linear-gradient(135deg, #a89372, #5e4d35);
}

.tav--4 {
  background: linear-gradient(135deg, #9ab095, #4f6849);
}

.tcard__meta b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.tcard__meta span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.testi__nav {
  max-width: var(--maxw);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testi__dots {
  display: flex;
  gap: 6px;
}

.tdot {
  width: 26px;
  height: 4px;
  border-radius: var(--r-full);
  background: var(--hairline-2);
  cursor: pointer;
  transition: background .2s, width .2s;
}

.tdot.is-active {
  background: var(--accent);
  width: 40px;
}

.testi__btns {
  display: flex;
  gap: 8px;
}

@media (max-width: 900px) {
  .testi {
    padding: 50px 16px;
  }

  .testi__videos {
    gap: 14px;
    margin-bottom: 28px;
  }

  .vtesti {
    width: calc(50% - 7px);
    max-width: 280px;
  }

  .tcard {
    padding: 28px;
  }
}

/* ============================================================
   SOBRE
============================================================ */
.about {
  padding: 60px 40px;
}

.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about__grid h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 14px 0 18px;
}

.about__grid p {
  font-size: 15.5px;
  margin-bottom: 14px;
}

.about__pic {
  position: relative;
  aspect-ratio: 5 / 4;
}

.about__placeholder {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, #c9bda6 0%, #9b8f73 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.about__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, .05) 18px 19px);
}

.ph-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink);
  padding: 10px 18px;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--r-full);
  font-weight: 500;
}

.about__sticker {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--accent);
  color: var(--on-accent);
  padding: 18px 22px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.about__sticker b {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}

.about__sticker span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.about__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent-2);
}

@media (max-width: 900px) {
  .about {
    padding: 50px 16px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 60px 40px;
  background: var(--card-2);
}

.faq__head {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}

.faq__head h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 14px 0 0;
}

.faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq__item {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.faq__item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--soft);
  position: relative;
  flex-shrink: 0;
  transition: background .2s, transform .25s;
}

.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}

.faq__plus::before {
  left: 7px;
  right: 7px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.faq__plus::after {
  top: 7px;
  bottom: 7px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  transition: transform .2s;
}

.faq__item[open] .faq__plus {
  background: var(--accent);
  transform: rotate(180deg);
}

.faq__item[open] .faq__plus::after {
  transform: translateX(-50%) scaleY(0);
}

.faq__item p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 760px;
}

@media (max-width: 900px) {
  .faq {
    padding: 50px 16px;
  }
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  margin-top: 24px;
  padding: 80px 40px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-xxl);
}

.cta-final__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 32px;
}

.cta-final .b {
  color: white;
}

.cta-final .l {
  color: rgba(255, 255, 255, .45);
}

.cta-final__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final .btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.cta-final .btn--primary:hover {
  background: white;
  color: var(--ink);
}

.cta-final .btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, .18);
}

.cta-final .btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
}

@media (max-width: 900px) {
  .cta-final {
    padding: 50px 24px;
    margin-top: 16px;
  }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  margin-top: 24px;
  padding: 50px 40px 30px;
}

.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer__brand p {
  font-size: 14px;
  max-width: 320px;
  margin-top: 16px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--ink);
}

.footer__col a,
.footer__col span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color .15s;
}

.footer__col a:hover {
  color: var(--ink);
}

.footer__bottom {
  max-width: var(--maxw);
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-2);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.footer__legal {
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .footer {
    padding: 40px 16px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ============================================================
   ASSISTANT inside hero (scrolls with the page)
============================================================ */
.assistant-fab {
  position: absolute;
  right: -15px;
  bottom: 0;
  z-index: 5;
  width: 320px;
  height: auto;
  display: block;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1);
  filter: drop-shadow(0 22px 36px rgba(20, 18, 14, .25));
  animation: assistantBob 6s ease-in-out infinite;
  pointer-events: auto;
  /* garante que não ultrapasse a borda da section */
  max-width: 30%;
}

.assistant-fab img {
  width: 100%;
  height: auto;
  display: block;
}

.assistant-fab:hover {
  transform: translateY(-6px) scale(1.03);
}

@keyframes assistantBob {

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

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .assistant-fab {
    width: 130px;
    right: 10px;
    left: auto;
  }
}

/* Tweak variants */
body.accent--amber {
  --accent: #f5a524;
  --accent-2: #f08f12;
  --accent-soft: #fdedd0;
  --on-accent: #1a1916;
}

body.accent--crimson {
  --accent: #d32f2f;
  --accent-2: #a82424;
  --accent-soft: #fbe3e3;
  --on-accent: #ffffff;
}

body.accent--cobalt {
  --accent: #2c8de0;
  --accent-2: #1e72bd;
  --accent-soft: #dceaf7;
  --on-accent: #ffffff;
}

body.accent--forest {
  --accent: #4a8a5f;
  --accent-2: #3a7048;
  --accent-soft: #dde7df;
  --on-accent: #ffffff;
}

body.bg--cream {
  --bg: #ece7dc;
  --bg-2: #e7e0d2;
  --soft: #f3efe6;
}

body.bg--snow {
  --bg: #f3f1ec;
  --bg-2: #ebe9e2;
  --soft: #f8f6f1;
}

body.bg--mist {
  --bg: #e4e6e0;
  --bg-2: #d8dbd2;
  --soft: #eaece6;
}

/* ============================================================
   BANNER DE COOKIES / LGPD
============================================================ */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie__inner {
  pointer-events: auto;
  width: 100%;
  max-width: 880px;
  background: white;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

.cookie.is-visible .cookie__inner {
  transform: translateY(0);
  opacity: 1;
}

.cookie__text b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

.cookie__text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.cookie__text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie__btns .btn {
  padding: 11px 18px;
  font-size: 13.5px;
}

@media (max-width: 720px) {
  .cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }

  .cookie__btns {
    flex-direction: column-reverse;
  }

  .cookie__btns .btn {
    width: 100%;
  }
}