/* ==========================================================================
   Joulber Premium — Editorial Luxury
   Paleta: Ink (#07121f) · Navy (#0d2040) · White · Off-white · Gold (#c4a35a)
   ========================================================================== */

:root {
  /* Cores */
  --ink:          #07121f;   /* quase-preto — fundos dark */
  --navy:         #0d2040;   /* azul marinho — seções escuras */
  --navy-hover:   #162e58;
  --white:        #ffffff;
  --off:          #f5f3ee;   /* off-white quente — seções claras alternadas */
  --gold:         #c4a35a;   /* champanhe — único acento */
  --gold-dim:     rgba(196, 163, 90, 0.18);
  --gold-border:  rgba(196, 163, 90, 0.35);
  --text-light:   #e8e4dc;   /* corpo sobre fundo escuro */
  --text-dark:    #1e2d3d;   /* corpo sobre fundo claro */
  --muted-light:  rgba(232, 228, 220, 0.55);
  --muted-dark:   #7a8fa4;
  --border-dark:  rgba(255, 255, 255, 0.08);
  --border-light: rgba(14, 28, 50, 0.1);

  /* Tipografia */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Source Sans 3", system-ui, -apple-system, sans-serif;

  /* Estrutura */
  --max:      1160px;
  --header-h: 72px;
  --mob-cta:  70px;
  --radius:   4px;           /* premium: quase sem arredondamento */
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--mob-cta);
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; transition: color 0.25s ease; }

.skip-link {
  position: absolute; left: -9999px; z-index: 999;
  padding: 0.75rem 1.25rem; background: var(--ink); color: var(--white);
  text-decoration: none; font-weight: 600; border-radius: 2px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}
.container--narrow { max-width: 680px; }

/* ==========================================================================
   Reveal animations (JS adds .is-revealed)
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal][data-reveal-delay="150"] { transition-delay: 0.15s; }
[data-reveal][data-reveal-delay="200"] { transition-delay: 0.20s; }
[data-reveal][data-reveal-delay="300"] { transition-delay: 0.30s; }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 18, 31, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.4); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin-inline: auto;
}

.brand { text-decoration: none; display: flex; flex-direction: column; gap: 0.05rem; }
.name-accent {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand-name .name-accent { font-weight: 600; }
.site-header .brand-name .name-accent {
  color: var(--white);
  font-weight: 500;
}
.brand-tag {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav { display: none; align-items: center; gap: 2.5rem; }
.nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.nav a:not(.btn):hover { color: var(--white); }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 0;
  border: none; background: transparent; cursor: pointer; z-index: 101;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0 auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: flex; flex-direction: column; gap: 0;
  background: var(--ink);
  border-bottom: 1px solid var(--border-dark);
  position: absolute; top: 100%; left: 0; width: 100%;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a:not(.btn) {
  text-decoration: none; font-weight: 400;
  font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:not(.btn):hover { color: var(--white); background: rgba(255,255,255,0.03); }
.nav-mobile .btn { margin: 1.25rem 1.5rem 1.5rem; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 0.75rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

/* Gold — CTA principal */
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #d4b468;
  border-color: #d4b468;
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.3);
  transform: translateY(-1px);
}
.btn--large { padding: 1rem 2.25rem; font-size: 0.875rem; }
.btn--xl    { padding: 1.1rem 2.5rem; font-size: 0.9375rem; }

/* Outline — ghost sobre fundo escuro */
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Ghost light — hero */
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.2);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn--ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute; inset: 0; z-index: 0;
  background: 
    linear-gradient(155deg, #07121f 0%, #0a1b35 45%, #060f1a 100%);
}

/* Textura grain sutil */
.hero__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero__layout {
  position: relative; z-index: 1;
  display: grid;
  gap: 0;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  /* Leve afastamento das bordas da viewport — sem “encolher” o bloco ao centro */
  padding-inline: clamp(0.75rem, 2.5vw, 1.5rem);
}

@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    padding-inline: clamp(1rem, 3vw, 2rem);
  }
}

/* Coluna de texto */
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 12vw, 8rem) clamp(1rem, 3.5vw, 2.75rem) clamp(4rem, 8vw, 6rem);
  color: var(--white);
}

.hero__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: clamp(1.35rem, 2.8vw, 2rem);
  max-width: 36ch;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.hero__meta-note { color: rgba(255,255,255,0.45); }
.hero__availability { display: inline-flex; align-items: center; gap: 0.5rem; color: #6ee7a8; }
.hero__dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #6ee7a8;
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hero__divider { opacity: 0.3; }

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 7.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.09;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero__title-phrase {
  display: inline-block;
  letter-spacing: -0.015em;
}
.hero__title-tag {
  display: inline-block;
  margin-top: 0.04em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.hero__acronym {
  white-space: nowrap;
}

.hero__rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1.35rem, 2.8vw, 1.85rem);
  opacity: 0.7;
}

.hero__leads {
  margin-bottom: 2.25rem;
  max-width: 44ch;
}
.hero__lead {
  margin: 0 0 0.95rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}
.hero__lead:last-child { margin-bottom: 0; }
.hero__lead--secondary {
  font-size: clamp(0.9375rem, 1.65vw, 1.0625rem);
  line-height: 1.82;
  color: rgba(232, 228, 220, 0.82);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.25rem; }

.hero__reassure {
  margin: 0 0 1.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.hero__trust {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 1.35rem;
  max-width: 44ch;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  line-height: 1.45;
}
.hero__trust strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* Coluna da foto */
.hero__figure {
  margin: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

@media (max-width: 899px) {
  .hero__figure {
    height: 55vw;
    min-height: 320px;
    max-height: 500px;
  }
}

.hero__photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Vignette editorial */
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 80%, transparent 100%),
              linear-gradient(to right, black 20%, black 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 80%, transparent 100%),
                      linear-gradient(to right, black 20%, black 100%);
  -webkit-mask-composite: destination-in;
}

@media (min-width: 900px) {
  .hero__photo {
    mask-image: linear-gradient(to right, transparent 0%, black 12%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%);
  }
}

/* Stats flutuantes */
.hero__stat {
  position: absolute;
  display: flex; flex-direction: column; gap: 0.1rem;
  padding: 0.75rem 1.1rem;
  background: rgba(7, 18, 31, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}
.hero__stat--a { bottom: 2.5rem; left: 1.5rem; }
.hero__stat--b { top: 2.5rem; right: 1.5rem; }
.hero__stat-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Trust bar (logo strip) — logo abaixo do hero
   ========================================================================== */

.trust-bar {
  background: var(--ink);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.75rem 0;
  color: var(--text-light);
}
.trust-bar__list {
  margin: 0; padding: 0; list-style: none;
  display: grid;
  gap: 1.25rem 2rem;
  grid-template-columns: 1fr;
  text-align: left;
}
@media (min-width: 700px) {
  .trust-bar__list {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
@media (min-width: 700px) {
  .trust-bar__item {
    align-items: center;
    border-left: none;
    border-right: 1px solid var(--border-dark);
    padding: 0 1.25rem;
  }
  .trust-bar__item:last-child { border-right: none; }
}
.trust-bar__k {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.trust-bar__v {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
}

/* ==========================================================================
   Seções — estrutura genérica
   ========================================================================== */

.section { padding: clamp(5rem, 10vw, 8rem) 0; }
.section--white  { background: var(--white); }
.section--ink    { background: var(--ink); }
.section--off    { background: var(--off); }
.section--tight  { padding: clamp(4rem, 7vw, 5.5rem) 0; }

/* Section header com número editorial */
.section-head { margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section-head--centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head--centered .section-title { display: inline-block; }
.section-head--centered .section-sub { margin-left: auto; margin-right: auto; }
.section-num {
  display: block;
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-num--on-dark { color: var(--gold); }

.section-title {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  /* Linha dourada embaixo */
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
}
.section-title--on-dark { color: var(--white); border-bottom-color: var(--gold); }

.section-sub {
  margin: 1.25rem 0 0;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--muted-dark);
  max-width: 55ch;
  line-height: 1.75;
}

/* ==========================================================================
   Pilares (diferenciais)
   ========================================================================== */

.pillars {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border-light);
}
@media (min-width: 680px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.25s;
}
@media (min-width: 680px) {
  .pillar {
    border-bottom: none;
    border-right: 1px solid var(--border-light);
  }
  .pillar:last-child { border-right: none; }
}
.pillar:hover { background: var(--off); }

.pillar__num {
  display: block;
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pillar__title {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.pillar__text { margin: 0; font-size: 0.9375rem; font-weight: 300; color: var(--muted-dark); line-height: 1.75; }

/* ==========================================================================
   Pain points — "Você se reconhece?"
   ========================================================================== */

.pains {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pains { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .pains { grid-template-columns: repeat(3, 1fr); } }

.pain {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 2.5rem;
  background: var(--off);
  border-left: 2px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.pain:hover {
  background: #faf8f3;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(7, 18, 31, 0.06);
}
.pain__mark {
  position: absolute;
  top: 0.4rem; left: 0.9rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.45;
}
.pain__text {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-dark);
}
.pain__text strong {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(to bottom, transparent 60%, rgba(196,163,90,0.22) 60%);
}

/* ==========================================================================
   Temas que trabalhamos juntos
   ========================================================================== */

.themes {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
@media (min-width: 680px) { .themes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .themes { grid-template-columns: repeat(3, 1fr); } }

.theme {
  background: var(--white);
  padding: 2.25rem 1.75rem 2rem;
  transition: background 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.theme:hover { background: var(--off); }
.theme__icon {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.2em;
}
.theme__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.theme__text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* ==========================================================================
   Sobre — grid
   ========================================================================== */

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.15fr 1fr; gap: 6rem; }
}

.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(232, 228, 220, 0.9);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  font-style: italic;
}
.about-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}
.about-crp {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Credenciais */
.creds { margin: 1.5rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.cred { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.9rem; font-weight: 300; color: var(--text-light); }
.cred__mark { color: var(--gold); font-weight: 400; flex-shrink: 0; margin-top: 0.1rem; }

/* Citação filosofia */
.philosophy {
  margin: 0 0 2rem;
  padding: 2.25rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--gold);
  position: relative;
}
.philosophy__mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem; left: 1rem;
  pointer-events: none;
}
.philosophy__text {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(232, 228, 220, 0.85);
  line-height: 1.75;
}
.philosophy__sig { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }

/* ==========================================================================
   Depoimentos
   ========================================================================== */

.testimonials {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
@media (min-width: 700px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testi {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.25s;
}
.testi:hover { background: var(--off); }
.testi__stars { font-size: 0.9rem; color: var(--gold); letter-spacing: 0.15em; }
.testi__quote {
  margin: 0; flex: 1;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
}
.testi__by {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}
.testi__by strong { color: var(--text-dark); font-weight: 600; }

.testimonial-prints {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 640px) {
  .testimonial-prints {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .testimonial-prints .testimonial-print:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: min(520px, 100%);
    justify-self: center;
  }
}
@media (min-width: 1024px) {
  .testimonial-prints {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testimonial-prints .testimonial-print:nth-child(3):last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}
.testimonial-prints .testimonial-print { margin: 0; }

.testimonial-print {
  margin: 3rem auto 0;
  max-width: 460px;
  width: 100%;
  position: relative;
  padding: 1.25rem 1.25rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow:
    0 1px 2px rgba(14, 28, 50, 0.04),
    0 20px 50px -20px rgba(14, 28, 50, 0.25),
    0 40px 80px -40px rgba(14, 28, 50, 0.15);
  transform: rotate(-0.4deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-print--alt {
  transform: rotate(0.4deg);
}
.testimonial-print--alt:hover {
  transform: rotate(0deg) translateY(-4px);
}

.testimonial-print::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--gold-border), transparent 40%, transparent 60%, var(--gold-border)) border-box;
  pointer-events: none;
  opacity: 0.8;
}

.testimonial-print:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 1px 2px rgba(14, 28, 50, 0.04),
    0 30px 60px -20px rgba(14, 28, 50, 0.3),
    0 50px 90px -40px rgba(14, 28, 50, 0.2);
}

.testimonial-print__frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--off);
  box-shadow: inset 0 0 0 1px var(--border-light);
}

.testimonial-print__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.testimonial-print__caption {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.testimonial-print__caption strong {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.2em;
}

@media (min-width: 700px) {
  .testimonial-print {
    max-width: 520px;
    padding: 1.5rem 1.5rem 2rem;
  }
  .testimonial-prints .testimonial-print {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ==========================================================================
   Como funciona — steps
   ========================================================================== */

.steps {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border-light);
}
.step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 2.25rem;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.25s;
}
.step:last-child { border-bottom: none; }
.step:hover { background: rgba(0,0,0,0.015); }
.step__n {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.1rem;
  min-width: 2rem;
  text-align: right;
}
.step__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.step__text { margin: 0; font-size: 0.9375rem; font-weight: 300; color: var(--muted-dark); line-height: 1.7; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { display: flex; flex-direction: column; border: 1px solid var(--border-light); }

.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--off); }

.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  transition: border-color 0.25s, background 0.25s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 8px; height: 1px; }
.faq-icon::after  { width: 1px; height: 8px; }
details[open] .faq-icon { background: var(--gold-dim); border-color: var(--gold); }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
  padding: 0 2rem 1.5rem;
  border-top: 1px solid var(--border-light);
}
.faq-a p {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.75;
}

/* ==========================================================================
   CTA Final
   ========================================================================== */

.cta-final {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
  text-align: center;
}
.cta-final__bg {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, var(--ink) 0%, #0a1b35 60%, #060f1a 100%);
  z-index: 0;
}
.cta-final__bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,163,90,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-final__inner {
  position: relative; z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}
/* Moldura decorativa */
.cta-final__frame {
  position: absolute;
  inset: -3rem -2rem;
  border: 1px solid var(--gold-border);
  pointer-events: none;
  display: none;
}
@media (min-width: 700px) { .cta-final__frame { display: block; } }

.cta-avail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold-border);
  background: rgba(196, 163, 90, 0.06);
}
.cta-avail .hero__dot { background: var(--gold); }
.cta-final__title {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.cta-final__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.cta-final__sub {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
}
.cta-final__note {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #030a13;
  color: rgba(255,255,255,0.4);
  padding: 3rem 0;
  border-top: 1px solid var(--border-dark);
}
.footer-inner {
  display: flex; flex-direction: column; gap: 1.5rem;
}
@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-brand .brand-name { color: rgba(255,255,255,0.6); font-size: 1.4rem; }
.footer-brand .brand-name .name-accent {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.footer-tag { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); opacity: 0.6; }
.footer-legal {
  margin: 0; font-size: 0.8rem; font-weight: 300;
  line-height: 1.6; max-width: 44ch;
  padding-left: 1.25rem;
  border-left: 1px solid var(--gold-border);
}

/* ==========================================================================
   FAB
   ========================================================================== */

.fab {
  position: fixed;
  right: 1.5rem;
  bottom: calc(var(--mob-cta) + 1rem);
  z-index: 90;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: var(--white); border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}
.fab:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 12px 28px rgba(37,211,102,0.4); }
.fab svg { width: 28px; height: 28px; }
@media (min-width: 900px) { .fab { right: 2.5rem; bottom: 2.5rem; } }

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */

.mob-cta {
  position: fixed; bottom: 0; left: 0; width: 100%;
  height: var(--mob-cta); z-index: 80;
  display: flex; align-items: center;
  padding: 0 1rem;
  background: var(--ink);
  border-top: 1px solid var(--border-dark);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-cta.is-visible { transform: translateY(0); }

.mob-cta__btn {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: 0.875rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.mob-cta__btn:active { transform: scale(0.98); background: #d4b468; }

@media (min-width: 900px) { .mob-cta { display: none; } }