/* =========================================================
   FAIVER V3 — Editorial · Azul Metálico
   ========================================================= */

:root {
  --metal-d:  #1E3A5F;  /* dark metallic */
  --metal-m:  #3D5A80;  /* mid */
  --metal-l:  #7B96B5;  /* light */
  --metal-xl: #C9D3E0;  /* hairline */

  --white:    #FFFFFF;
  --off:      #F5F5F2;
  --paper:    #FAFAF7;
  --black:    #0A0A0A;
  --mute:     #5A6478;
  --rule:     #1E3A5F;

  --w70: rgba(255,255,255,0.72);
  --w50: rgba(255,255,255,0.55);
  --w30: rgba(255,255,255,0.30);
  --w15: rgba(255,255,255,0.15);
  --w08: rgba(255,255,255,0.08);

  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --max:     1320px;
  --gutter:  clamp(20px, 4vw, 64px);
  --gutter-l: clamp(20px, 6vw, 120px);
  --section-y: clamp(80px, 11vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ol, ul { list-style: none; padding: 0; margin: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 1.5px solid var(--metal-d);
  outline-offset: 3px;
}

/* ============ GRAIN ============ */

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ============ HAIRLINE (replaces pill) ============ */

.hairline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hairline--center {
  justify-content: center;
  display: flex;
  margin-inline: auto;
}
.hairline__rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--metal-d);
}
.hairline__txt {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--metal-d);
}
.hairline--light .hairline__rule { background: var(--w50); }
.hairline--light .hairline__txt  { color: var(--w70); }

/* ============ EDITORIAL HEADLINE PATTERN ============ */
/*
   Magazine-cover composition: small sans top + giant serif italic anchor + (optional) small sans bottom.
*/
.ed-h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 0;
  text-wrap: balance;
}
.ed-h2--center { align-items: center; text-align: center; }
.ed-h2 .ed-top {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -0.005em;
  color: var(--metal-d);
  line-height: 1.2;
}
.ed-h2--on-dark .ed-top { color: var(--w70); }
.ed-h2 .ed-anchor em,
.ed-h2 .ed-anchor {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--metal-d);
  display: inline-block;
  margin: 4px 0;
}
.ed-h2 .ed-anchor em { font-style: italic; }
.ed-h2--on-dark .ed-anchor,
.ed-h2--on-dark .ed-anchor em { color: var(--white); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 20px 48px; font-size: 16px; letter-spacing: 0.04em; }
.btn--block { width: 100%; }

.btn--metal {
  background: var(--metal-d);
  color: var(--white);
  border-color: var(--metal-d);
}
.btn--metal:hover {
  background: var(--metal-m);
  border-color: var(--metal-m);
}

.btn--outline {
  background: transparent;
  color: var(--metal-d);
  border-color: var(--metal-d);
}
.btn--outline:hover {
  background: var(--metal-d);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--metal-d);
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(15,34,56,0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--w08);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1;
}
.nav__links {
  justify-self: center;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--w70);
}
.nav__links a:hover { color: var(--white); }
.nav__inner .btn {
  background: transparent;
  border-color: var(--w50);
  color: var(--white);
}
.nav__inner .btn:hover {
  background: var(--white);
  color: var(--metal-d);
  border-color: var(--white);
}
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0; align-items: center;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: transform 0.2s, opacity 0.2s;
}
.nav__mobile {
  display: none;
  padding: 18px var(--gutter) 26px;
  background: rgba(15,34,56,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--w08);
  flex-direction: column;
  gap: 14px;
}
.nav__mobile a:not(.btn) {
  color: var(--w70); padding: 8px 0;
  border-bottom: 1px solid var(--w08);
  font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner .btn { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-open .nav__mobile { display: flex; }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  color: var(--white);
  min-height: 100vh;
  padding: clamp(140px, 16vw, 200px) var(--gutter) clamp(60px, 8vw, 100px);
  background: var(--metal-d);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__scene {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,34,56,0.55) 0%, rgba(30,58,95,0.78) 100%);
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__copy { padding-right: clamp(8px, 2vw, 32px); }

.hero__h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 18px 0 32px;
}
.h1__top, .h1__bot {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.005em;
  color: var(--w70);
  line-height: 1.25;
}
.h1__anchor {
  display: block;
  margin-left: clamp(-40px, -2.5vw, -20px);   /* overflow margin left */
}
.h1__anchor em {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 6px 0 6px;
}

.hero__sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--w70);
  max-width: 46ch;
  margin: 0 0 28px 0;
  font-weight: 400;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--w50);
  font-size: 13px;
  padding-top: 22px;
  border-top: 1px solid var(--w15);
}
.hero__proof b { color: var(--white); font-weight: 500; }
.hero__proof i { font-style: normal; color: var(--w30); }

/* form card — attached, slightly raised, hairline top */
.form-card {
  position: relative;
  background: var(--white);
  padding: 36px 32px 28px;
  box-shadow: 0 18px 60px -20px rgba(15,34,56,0.45);
  margin-top: clamp(-30px, -4vw, -60px);  /* slight pull up */
  border-radius: 4px;
}
.form-card__rule {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--metal-d);
}
.form-card__head { margin-bottom: 22px; }
.form-card__title {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  color: var(--metal-d);
  margin: 0 0 6px 0;
  line-height: 1.15;
}
.form-card__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.form-card__sub {
  font-size: 12px;
  color: var(--mute);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Mobile — proporção hero ↔ form melhorada */
@media (max-width: 600px) {
  .hero {
    padding: 96px var(--gutter) 36px;
    min-height: auto;
  }
  .hero__inner { gap: 28px; }
  .hero__copy { padding-right: 0; }
  .hero__h1 {
    margin: 10px 0 18px;
  }
  .h1__top, .h1__bot {
    font-size: 15px;
    line-height: 1.25;
  }
  .h1__anchor {
    margin-left: 0;
  }
  .h1__anchor em {
    font-size: 64px;
    line-height: 0.9;
    margin: 2px 0;
  }
  .hero__sub {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .hero__proof {
    padding-top: 14px;
    font-size: 12px;
    gap: 6px 10px;
  }
  .form-card {
    margin-top: 16px;
    padding: 26px 22px 22px;
    border-radius: 6px;
    box-shadow: 0 12px 40px -16px rgba(15, 34, 56, 0.55);
  }
  .form-card__head { margin-bottom: 18px; }
  .form-card__title {
    font-size: 19px;
    line-height: 1.2;
  }
  .form-card__title em {
    font-size: 28px;
    line-height: 1;
  }
  .form-card__sub {
    font-size: 11.5px;
  }
}

@media (max-width: 380px) {
  .h1__anchor em { font-size: 56px; }
  .hero { padding-top: 84px; }
}

.form { display: flex; flex-direction: column; gap: 10px; }

.field { position: relative; }
.field input,
.field select {
  width: 100%;
  padding: 18px 14px 8px;
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--metal-xl);
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}
.field input::placeholder { color: transparent; }
.field input:focus,
.field select:focus {
  border-bottom-color: var(--metal-d);
}
.field label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 13px;
  color: var(--mute);
  pointer-events: none;
  transition: top 0.18s, font-size 0.18s, color 0.18s, letter-spacing 0.18s;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: 2px;
  font-size: 10px;
  color: var(--metal-d);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.field--select select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%231E3A5F' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
  color: var(--black);
}
.field--select select:invalid { color: transparent; }
.field.is-invalid input,
.field.is-invalid select { border-bottom-color: #B45454; }
.field.is-invalid label { color: #B45454; }

.form .btn--block { margin-top: 14px; padding: 16px; font-size: 14px; letter-spacing: 0.06em; }

.form__legal {
  font-size: 11px;
  color: var(--mute);
  text-align: center;
  margin: 8px 0 0 0;
}
.form__legal a { text-decoration: underline; }

.form-success {
  text-align: center;
  padding: 24px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.form-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(30,58,95,0.08);
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin: 0;
  color: var(--metal-d);
}
.form-success p { margin: 0; color: var(--mute); max-width: 32ch; font-size: 14px; }
.form-success .btn { margin-top: 10px; }

/* ============ LOGOS ============ */

.logos {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  background: var(--paper);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.logos .hairline { margin-bottom: 40px; }

.logos__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
}
@media (max-width: 900px) { .logos__row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .logos__row { grid-template-columns: repeat(2, 1fr); } }

.logo-mark {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--metal-l);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  user-select: none;
  transition: color 0.25s, transform 0.25s;
}
.logo-mark em { font-style: italic; }
.logo-mark sup { font-size: 0.5em; color: inherit; }
.logo-mark--mono {
  font-family: var(--body);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 14px;
}
.logo-mark__sub {
  font-family: var(--body);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 4px;
  color: inherit;
}
.logo-mark:hover {
  color: var(--metal-d);
  transform: translateY(-1px);
}

/* ============ CTA STRIP (recurring) ============ */

.cta-strip {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px var(--gutter);
}
.cta-strip--light {
  background: var(--white);
  border-top: 1px solid var(--metal-xl);
  border-bottom: 1px solid var(--metal-xl);
}
.cta-strip--dark {
  background: var(--metal-d);
  border-top: 1px solid var(--w15);
  border-bottom: 1px solid var(--w15);
}

/* ============ INTRO — split: slideshow (left) + video (right) ============ */

.intro {
  background: var(--off);
  padding: var(--section-y) var(--gutter);
  overflow: hidden;
}
.intro__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro__split {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) {
  .intro__split { grid-template-columns: 1fr; max-width: 420px; }
}

/* Slideshow (LEFT) — vertical 9:16 to match video */
.slideshow {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.slideshow__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(30,58,95,0.32);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 5s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.slide__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,34,56,0.15) 0%, rgba(15,34,56,0.85) 100%);
}
.slide__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
}
.slide__mono {
  position: relative;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 220px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0.08;
  z-index: 0;
}
/* Tonal gradients for each slide */
.slide__bg--1 { background: linear-gradient(165deg, #3D5A80 0%, #1E3A5F 60%, #0F2238 100%); }
.slide__bg--2 { background: linear-gradient(150deg, #2A4868 0%, #1E3A5F 50%, #142F4E 100%); }
.slide__bg--3 { background: linear-gradient(180deg, #1E3A5F 0%, #0F2238 100%); }
.slide__bg--4 { background: linear-gradient(170deg, #7B96B5 0%, #3D5A80 60%, #1E3A5F 100%); }
.slide__bg--5 { background: linear-gradient(155deg, #1E3A5F 0%, #2A4868 50%, #0F2238 100%); }
.slide__bg--6 { background: linear-gradient(190deg, #3D5A80 0%, #1E3A5F 60%, #0F2238 100%); }

/* Real client photos inside slideshow */
.slide__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* YouTube thumbnails on video players */
.vplayer__thumb-img,
.tcard__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #0F2238;
}

/* Guided CTA — primeiro CTA com setas guiando ao form */
.cta-strip--guided {
  flex-direction: column;
  gap: 14px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.cta-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: #1E3A5F;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 4px rgba(30, 58, 95, 0.15));
}
.cta-arrow {
  width: 36px;
  height: 36px;
  opacity: 0;
  animation: ctaArrowUp 1.6s ease-in-out infinite;
}
.cta-arrow path {
  stroke-width: 2.6;
}
.cta-arrow:nth-child(1) { animation-delay: 0s; }
.cta-arrow:nth-child(2) { animation-delay: 0.2s; }
.cta-arrow:nth-child(3) { animation-delay: 0.4s; }
@keyframes ctaArrowUp {
  0%   { opacity: 0; transform: translateY(14px) scale(0.85); }
  35%  { opacity: 1;   transform: translateY(0) scale(1); }
  70%  { opacity: 1;   transform: translateY(-10px) scale(1); }
  100% { opacity: 0; transform: translateY(-22px) scale(0.85); }
}
.cta-strip__hint {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7B96B5;
  margin-top: 6px;
}

/* Audio testimonial card */
.tcard__audio-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(15, 34, 56, 0.85);
  color: #fff;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.tcard__media.is-playing-audio {
  cursor: default;
}
.tcard__media.is-playing-audio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,34,56,0) 30%, rgba(15,34,56,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.tcard__media audio {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  z-index: 5;
  height: 38px;
}

/* Footer minimal — só frase + IG + WhatsApp */
.foot--minimal .foot__inner {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 720px;
  margin: 0 auto;
}
.foot--minimal .foot__brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.foot__phrase {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 560px;
}
.foot__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}
.foot__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.foot__social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}
.foot__copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 16px 0 0;
}

/* Setas apontando para o botão flutuante */
.wfloat-arrows {
  position: fixed;
  right: 240px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1E3A5F;
  z-index: 99;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.4)) drop-shadow(0 2px 4px rgba(30, 58, 95, 0.2));
}
.wfloat-arrow {
  width: 26px;
  height: 26px;
  opacity: 0;
  animation: wfloatArrowMarch 1.6s ease-in-out infinite;
}
.wfloat-arrow:nth-child(1) { animation-delay: 0s; }
.wfloat-arrow:nth-child(2) { animation-delay: 0.18s; }
.wfloat-arrow:nth-child(3) { animation-delay: 0.36s; }
@keyframes wfloatArrowMarch {
  0%   { opacity: 0;   transform: translateX(-14px) scale(0.85); }
  35%  { opacity: 1;   transform: translateX(0) scale(1); }
  70%  { opacity: 1;   transform: translateX(10px) scale(1); }
  100% { opacity: 0;   transform: translateX(22px) scale(0.85); }
}
@media (max-width: 480px) {
  .wfloat-arrows {
    right: 76px;
    bottom: 28px;
    gap: 2px;
  }
  .wfloat-arrow {
    width: 22px;
    height: 22px;
  }
  @keyframes wfloatArrowMarch {
    0%   { opacity: 0; transform: translateX(-10px) scale(0.85); }
    35%  { opacity: 1; transform: translateX(0) scale(1); }
    70%  { opacity: 1; transform: translateX(6px) scale(1); }
    100% { opacity: 0; transform: translateX(14px) scale(0.85); }
  }
}

/* Floating CTA — substitui o WhatsApp, leva ao form */
.wfloat--form {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1E3A5F 0%, #3D5A80 100%);
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px -8px rgba(15, 34, 56, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 100;
  transition: box-shadow 0.25s;
  animation: wfloatPulse 1.8s ease-in-out infinite;
  transform-origin: center;
}
.wfloat--form:hover {
  animation: none;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 48px -8px rgba(15, 34, 56, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 0 6px rgba(123, 150, 181, 0.25);
  transition: transform 0.2s cubic-bezier(.22,.61,.36,1), box-shadow 0.2s;
}
.wfloat__label {
  white-space: nowrap;
}
@keyframes wfloatPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 32px -8px rgba(15, 34, 56, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(123, 150, 181, 0.75);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 18px 44px -8px rgba(15, 34, 56, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 0 22px rgba(123, 150, 181, 0);
  }
}
@media (max-width: 480px) {
  .wfloat--form {
    padding: 14px;
    border-radius: 50%;
    right: 16px;
    bottom: 16px;
  }
  .wfloat__label {
    display: none;
  }
}

.slide__caption {
  position: relative;
  z-index: 2;
  padding: 24px 24px 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slide__loc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w70);
  margin-bottom: 6px;
}
.slide__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}
.slide__role {
  font-size: 13px;
  color: var(--w70);
  font-weight: 500;
}

.slideshow__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.slideshow__dots span {
  width: 24px;
  height: 2px;
  background: var(--metal-xl);
  border-radius: 1px;
  transition: background 0.3s, width 0.3s;
}
.slideshow__dots span.is-active {
  background: var(--metal-d);
  width: 36px;
}
.slideshow__cap {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--mute);
  text-align: center;
  margin: 0;
}
.slideshow__cap em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--metal-d);
  letter-spacing: -0.01em;
  margin-right: 4px;
}

/* Right — video container */
.intro__video {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Vertical video player */
.vplayer {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 9/16;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 60px -16px rgba(30,58,95,0.32);
  transition: transform 0.3s, box-shadow 0.3s;
}
.vplayer:hover { transform: translateY(-3px); box-shadow: 0 32px 80px -16px rgba(30,58,95,0.4); }

.vplayer__thumb {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(123,150,181,0.4), transparent 70%),
    radial-gradient(40% 30% at 50% 70%, rgba(61,90,128,0.4), transparent 70%),
    linear-gradient(180deg, #2A4868 0%, #1E3A5F 60%, #0F2238 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 24px;
}
.vplayer__halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
  filter: blur(20px);
}
.vplayer__brand {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--white);
  z-index: 1;
}
.vplayer__cap {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--w70);
  letter-spacing: 0.08em;
  z-index: 1;
}
.vplayer__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--metal-d);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform 0.25s, background 0.25s;
}
.vplayer__play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--w30);
  animation: ringPulse 3s ease-out infinite;
}
@keyframes ringPulse {
  0%   { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
.vplayer:hover .vplayer__play {
  background: var(--metal-d);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.05);
}

.intro__caption {
  text-align: center;
  margin: 0;
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.04em;
}
.intro__caption b {
  color: var(--metal-d);
  font-weight: 600;
}

/* ============ INSTAGRAM + NUMBERS ============ */

.ignum {
  background: var(--white);
  padding: var(--section-y) var(--gutter-l);
}
.ignum__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) { .ignum__grid { grid-template-columns: 1fr; gap: 60px; } }

/* iPhone frame with real Instagram screenshot */
.iphone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.iphone__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;            /* iPhone 14 Pro Max ratio */
  background: linear-gradient(180deg, #1a2030 0%, #0c1018 100%);
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.06),
    inset 0 0 0 6px rgba(123,150,181,0.10),
    0 28px 70px -20px rgba(15,34,56,0.55),
    0 6px 20px rgba(15,34,56,0.25);
}
.iphone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
}
.iphone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.iphone__notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.iphone__notch::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a3a52 0%, #060A12 70%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.iphone__side {
  position: absolute;
  width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  border-radius: 2px;
}
.iphone__side--left {
  left: -3px;
  top: 22%;
  height: 6%;
}
.iphone__side--right {
  right: -3px;
  top: 18%;
  height: 4%;
}
.iphone__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--metal-xl);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--metal-d);
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.iphone__cta:hover {
  background: var(--metal-d);
  color: var(--white);
  border-color: var(--metal-d);
}

/* Numbers — editorial style */
.nums { padding-left: clamp(0px, 2vw, 32px); }
.nums .ed-h2 { margin-bottom: clamp(32px, 4vw, 56px); }
.nums__list {
  display: flex;
  flex-direction: column;
}
.bignum {
  padding: clamp(20px, 2.6vw, 36px) 0;
  border-top: 1px solid var(--metal-xl);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bignum:last-child { border-bottom: 1px solid var(--metal-xl); }
.bignum__val {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--metal-d);
  display: inline-flex;
  align-items: baseline;
}
.bignum__val .prefix {
  font-size: 0.5em;
  margin-right: 4px;
  color: var(--metal-m);
}
.bignum__val .suffix {
  font-size: 0.5em;
  margin-left: 4px;
  color: var(--metal-m);
}
.bignum__lbl {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--black);
  letter-spacing: -0.005em;
  line-height: 1.35;
  max-width: 34ch;
}

/* ============ DELIVER (O que entregamos) ============ */

.deliver {
  background: var(--off);
  padding: var(--section-y) var(--gutter);
}
.deliver__head {
  max-width: var(--max);
  margin: 0 auto clamp(60px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.deliver__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) { .deliver__grid { grid-template-columns: 1fr; gap: 60px; } }

/* Diagram */
.diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  margin: 0 auto;
}
.diagram__svg {
  width: 100%;
  height: 100%;
  display: block;
}
.diagram__label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 200px;
  transform: translateY(-50%);
}
.diagram__name {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--metal-d);
  line-height: 1.2;
}
.diagram__name em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-right: 2px;
}
.diagram__desc {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

/* Pillars */
.pillars {
  display: flex;
  flex-direction: column;
}
.pillar {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: clamp(20px, 2.6vw, 32px) 0;
  border-top: 1px solid var(--metal-xl);
  align-items: flex-start;
}
.pillar:last-child { border-bottom: 1px solid var(--metal-xl); }
.pillar__id em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 5vw, 72px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--metal-l);
}
.pillar__body h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--metal-d);
  margin: 0 0 8px 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.pillar__body p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}

/* ============ TESTIMONIALS — EDITORIAL ============ */

.testi {
  background: var(--white);
  padding: var(--section-y) var(--gutter);
}
.testi__head {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testi__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 900px) { .testi__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testi__grid { grid-template-columns: 1fr; } }

.tcard {
  padding: clamp(24px, 2.6vw, 36px) 0;
  border-top: 1px solid var(--metal-xl);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tcard__quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 0.55;
  color: var(--metal-l);
  margin: 0 0 -8px 0;
}
.tcard p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
  flex-grow: 1;
}
.tcard p em { font-style: italic; color: var(--metal-d); }
.tcard__by {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--metal-xl);
}
.tcard__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--metal-d), var(--metal-m));
  color: var(--white);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tcard__avatar::before { content: attr(data-initials); }

/* Avatar com foto real em vez de iniciais */
.tcard__avatar--photo {
  position: relative;
  overflow: hidden;
  background: #0F2238;
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.1);
}
.tcard__avatar--photo::before {
  content: none;
}
.tcard__avatar--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tcard__by b {
  font-weight: 600;
  font-size: 15px;
  color: var(--metal-d);
  display: block;
}
.tcard__by span {
  font-size: 13px;
  color: var(--mute);
  display: block;
}

/* Video testimonials */
.tcard--video { gap: 16px; }
.tcard--video .tcard__by { border-top: 0; padding-top: 0; grid-template-columns: 1fr; }
.tcard__media {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(180deg, #2A4868 0%, #1E3A5F 100%);
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s;
}
.tcard__media:hover { transform: translateY(-3px); }
.tcard__photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  color: var(--w50);
}
.tcard__photo::before { content: attr(data-initials); }
.tcard__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--metal-d);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.tcard__media:hover .tcard__play { transform: translate(-50%, -50%) scale(1.06); }

.testi__action {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}

/* ============ PROVA SOCIAL ============ */

.proof {
  position: relative;
  background: var(--metal-d);
  color: var(--white);
  padding: var(--section-y) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.proof::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 30% 30%, rgba(123,150,181,0.15), transparent 70%),
    radial-gradient(60% 50% at 75% 70%, rgba(61,90,128,0.20), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.proof__head {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pgrid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  column-count: 3;
  column-gap: 18px;
}
@media (max-width: 980px) { .pgrid { column-count: 2; } }
@media (max-width: 600px) { .pgrid { column-count: 1; } }

.pcard {
  break-inside: avoid;
  margin: 0 0 18px 0;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 12px 40px -14px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.pcard:hover { transform: translateY(-2px); }

/* WA */
.pcard--wa { background: #0F3B36; color: var(--white); }
.wa__head {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}
.wa__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--metal-l);
  color: var(--metal-d);
  font-weight: 600;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.wa__avatar--alt { background: var(--metal-m); color: var(--white); }
.wa__head b { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.wa__head span { font-size: 11px; color: rgba(255,255,255,0.55); }
.wa__bubble {
  background: #1A4F47;
  padding: 10px 12px;
  border-radius: 10px 10px 10px 2px;
  margin-bottom: 6px;
}
.wa__bubble p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--white); }
.wa__bubble em { font-style: italic; color: #B6EAD9; }
.wa__time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-family: var(--mono);
  margin-top: 4px;
}

/* Quote */
.pcard--quote { background: var(--white); color: var(--black); }
.quote__mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  line-height: 0.5;
  color: var(--metal-l);
  margin-bottom: 6px;
}
.pcard--quote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 18px 0;
  color: var(--black);
}
.pcard--quote p em { font-style: italic; color: var(--metal-d); }
.quote__by {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--metal-xl);
}
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--metal-d), var(--metal-m));
  color: var(--white);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.quote__avatar::before { content: attr(data-initials); }
.quote__by b { display: block; font-size: 13px; color: var(--metal-d); font-weight: 600; }
.quote__by span { font-size: 12px; color: var(--mute); display: block; }

/* Google */
.pcard--google { background: var(--white); color: var(--black); }
.g__head {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--metal-xl);
}
.g__head b { font-size: 14px; color: var(--black); font-weight: 600; }
.g__stars { display: block; color: #F2A93B; font-size: 12px; }
.g__date { font-size: 11px; color: var(--mute); }
.pcard--google p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
}
.g__src {
  font-size: 11px;
  color: var(--metal-d);
  text-decoration: underline;
  font-weight: 500;
}

/* Audio */
.pcard--audio { background: var(--white); color: var(--black); }
.audio__head {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.audio__play {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--metal-d);
  color: var(--white);
  border: 0;
  display: flex; align-items: center; justify-content: center;
}
.audio__wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
}
.audio__wave i {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: var(--metal-m);
  height: 50%;
}
.audio__wave i:nth-child(2n) { height: 60%; opacity: 0.6; }
.audio__wave i:nth-child(3n) { height: 90%; }
.audio__wave i:nth-child(4n) { height: 40%; opacity: 0.4; }
.audio__wave i:nth-child(5n) { height: 70%; }
.audio__wave i:nth-child(7n) { height: 100%; }
.audio__wave i:nth-child(11n) { height: 30%; opacity: 0.3; }
.audio__time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
}
.audio__transcript {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--black);
  margin: 0 0 12px;
}
.audio__transcript em { color: var(--metal-d); }
.audio__from {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.06em;
  padding-top: 10px;
  border-top: 1px solid var(--metal-xl);
}

/* IG mini */
.pcard--ig {
  background: linear-gradient(135deg, #2A4868 0%, #1E3A5F 100%);
  color: var(--white);
}
.ig-mini__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--w15);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.pcard--ig p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
}
.ig-mini__foot {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--w70);
  padding-top: 10px;
  border-top: 1px solid var(--w15);
}

.proof__legal {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--w50);
  font-size: 13px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 56ch;
}

/* ============ CTA FINAL ============ */

.cta {
  position: relative;
  background: var(--metal-d);
  color: var(--white);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(123,150,181,0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(61,90,128,0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta__h2 .ed-top:nth-child(1) { font-size: clamp(18px, 1.6vw, 22px); }
.cta__h2 .ed-top:nth-child(2) { font-size: clamp(18px, 1.6vw, 22px); margin-top: 4px; }
.cta__anchor em { font-size: clamp(80px, 14vw, 200px); margin-top: 4px; }

.cta__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--w70);
  max-width: 52ch;
  margin: 0;
  line-height: 1.55;
}
.cta__inner .btn { margin-top: 14px; }
.cta__inner .btn--metal {
  background: var(--white);
  color: var(--metal-d);
  border-color: var(--white);
}
.cta__inner .btn--metal:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.cta__fine {
  font-size: 12px;
  color: var(--w50);
  margin: 4px 0 0 0;
  letter-spacing: 0.04em;
}

/* ============ FOOTER ============ */

.foot {
  background: var(--metal-d);
  color: var(--w70);
  padding: clamp(60px, 8vw, 96px) var(--gutter) 24px;
  border-top: 1px solid var(--w15);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--w15);
}
@media (max-width: 900px) {
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .foot__inner { grid-template-columns: 1fr; }
}

.foot__brand {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.foot__col p {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: var(--w70);
  max-width: 32ch;
  line-height: 1.55;
}
.foot__col address {
  font-style: normal;
  font-size: 13px;
  color: var(--w50);
  line-height: 1.55;
}
.foot__col h5 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 16px 0;
}
.foot__col a {
  display: block;
  font-size: 14px;
  color: var(--w70);
  padding: 5px 0;
  transition: color 0.2s;
}
.foot__col a:hover { color: var(--white); }

.foot__bot {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--w30);
  letter-spacing: 0.04em;
  gap: 16px;
  flex-wrap: wrap;
}
.foot__bot em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--w50);
  font-size: 13px;
}

/* ============ FLOATING WHATSAPP ============ */

.wfloat {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30,58,95,0.9);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--w15);
  backdrop-filter: blur(10px);
  transition: transform 0.2s, background 0.2s;
}
.wfloat:hover {
  transform: scale(1.06);
  background: var(--metal-d);
}

/* ============ FADE-UP ============ */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.fade-up.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .vplayer__play::after, .doc-track { animation: none; }
}
