/* ============== TOKENS ============== */
:root {
  /* Palette extracted from Mãe Júlia's photo:
     deep ocean navy, candle-lit sand, rich crimson dress, warm gold */
  --bg-deep:      #0a0e1f;   /* night sky over ocean */
  --bg-night:     #11192e;   /* deep ocean */
  --bg-royal:     #1a2640;   /* mid ocean */
  --bg-plum:      #24304a;
  --burgundy:     #6b1622;   /* rich red of the dress */
  --burgundy-2:   #8a1d2c;   /* lighter crimson */
  --burgundy-3:   #a52836;

  --gold:         #c9a04a;   /* gold jewelry */
  --gold-bright:  #e8c168;   /* highlights on gold */
  --gold-soft:    #a8853c;
  --candle:       #ffb45a;   /* candle flame */

  --cream:        #f4e4c1;   /* warm sand */
  --ink:          #ece1c4;
  --muted:        #b3a382;
  --muted-2:      #7e7258;
  --line:         rgba(232,193,104,0.20);

  --wa:           #25d366;
  --wa-deep:      #1ea855;

  --shadow-card:  0 30px 60px -30px rgba(0,0,0,0.75), 0 8px 20px -10px rgba(0,0,0,0.5);
  --shadow-soft:  0 20px 40px -20px rgba(0,0,0,0.6);

  --maxw:         1180px;
  --radius:       18px;

  --ff-display:   "Cinzel", "Cormorant Garamond", serif;
  --ff-serif:     "Cormorant Garamond", "Cinzel", serif;
  --ff-body:      "Manrope", system-ui, sans-serif;
}

/* ============== RESET ============== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg-deep);
  color: var(--ink);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: var(--ff-serif); font-weight: 500; }

/* ============== TYPE ============== */
.display, .h-display, .h-section {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--cream);
  text-wrap: balance;
}
.display { font-size: clamp(2.6rem, 6vw, 5rem); }
.h-display { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.h-section { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.display em, .h-display em, .h-section em {
  color: var(--gold-bright);
  font-family: var(--ff-serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
}

.kicker {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker--light { color: var(--gold-bright); }
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn--sm { padding: 0.65rem 1.1rem; font-size: 0.85rem; border-radius: 100px; }
.btn--lg { padding: 1.15rem 2rem; font-size: 1.05rem; border-radius: 100px; }
.btn--xl { padding: 1.4rem 2.5rem; font-size: 1.15rem; border-radius: 100px; }

.btn--wa {
  background: linear-gradient(180deg, #2cd96f 0%, #1ea855 100%);
  color: #07291a;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -10px rgba(37, 211, 102, 0.7), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--wa:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  padding: 0.95rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
}
.btn--ghost:hover { background: rgba(201,169,97,0.08); }

/* ============== HEADER ============== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(180deg, rgba(10,6,23,0.88) 0%, rgba(10,6,23,0.5) 70%, rgba(10,6,23,0) 100%);
  backdrop-filter: blur(10px);
}
.hdr__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-bright);
}
.hdr__name { display: flex; flex-direction: column; line-height: 1.1; }
.hdr__name-top { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--cream); letter-spacing: 0.04em; }
.hdr__name-sub { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.hdr__nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
  font-size: 0.9rem;
}
.hdr__nav a {
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.hdr__nav a:hover { color: var(--gold-bright); }

@media (max-width: 880px) {
  .hdr { padding: 0.85rem 1.2rem; gap: 1rem; }
  .hdr__nav { display: none; }
  .hdr__name-sub { display: none; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 20% 50%, rgba(107,22,34,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 80% 80%, rgba(26,38,64,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(232,193,104,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-night) 60%, #1d1226 100%);
}
.hero__sparks {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(232,193,104,0.7), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(232,193,104,0.5), transparent),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(232,193,104,0.6), transparent),
    radial-gradient(1px 1px at 35% 75%, rgba(232,193,104,0.5), transparent),
    radial-gradient(1px 1px at 90% 85%, rgba(232,193,104,0.4), transparent),
    radial-gradient(1.5px 1.5px at 15% 90%, rgba(232,193,104,0.6), transparent),
    radial-gradient(1px 1px at 45% 45%, rgba(255,180,90,0.5), transparent);
  background-size: 100% 100%;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translateY(0); opacity: 0.9; }
  to   { transform: translateY(-20px); opacity: 0.5; }
}

.hero__inner {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__copy .eyebrow { margin-bottom: 1.6rem; }
.hero__copy .display { margin-bottom: 1.6rem; }
.hero__lead {
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: var(--ink);
  max-width: 540px;
  margin-bottom: 2.2rem;
  line-height: 1.55;
}
.hero__lead strong { color: var(--gold-bright); font-weight: 600; }

.hero__cta { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; margin-bottom: 2.5rem; }
.hero__cta-note { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.06em; }

.hero__trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.hero__trust li { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__trust strong {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__trust span { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* Portrait */
.hero__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 78vh;
  justify-self: end;
  width: 100%;
}
.hero__portrait-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.8),
    0 20px 40px -20px rgba(107,22,34,0.5),
    inset 0 0 0 1px rgba(232,193,104,0.25);
}
.hero__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,14,31,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__portrait-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(232,193,104,0.35);
  border-radius: calc(var(--radius) - 8px);
  z-index: 2;
  pointer-events: none;
}
.hero__portrait-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,193,104,0.18) 0%, transparent 65%);
  z-index: -1;
  filter: blur(20px);
}
.hero__portrait-badge {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: rgba(10,14,31,0.7);
  border: 1px solid rgba(232,193,104,0.35);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.hero__portrait-badge svg { color: var(--gold-bright); }

.hero__scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--gold-bright);
  border-radius: 2px;
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

@media (max-width: 960px) {
  .hero { padding: 6rem 1.5rem 4rem; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__portrait { max-width: 420px; max-height: 60vh; justify-self: center; margin: 0 auto; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 100%; }
  .hero__trust strong { font-size: 1.5rem; }
  .hero__scroll { display: none; }
}

/* ============== DOR ============== */
.dor {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-night) 100%);
  padding: 7rem 2rem;
  position: relative;
}
.dor::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold));
  transform: translateX(-50%);
}
.dor__wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.dor__wrap .h-display { margin-bottom: 3rem; }
.dor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-bottom: 3rem;
  text-align: left;
}
.dor__item {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(201,169,97,0.04), transparent);
  line-height: 1.45;
}
.dor__item em { color: var(--gold-bright); font-style: italic; }
.dor__close {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.dor__close strong { color: var(--gold-bright); }

@media (max-width: 720px) {
  .dor__grid { grid-template-columns: 1fr; gap: 1rem; }
  .dor__item { font-size: 1.1rem; }
}

/* ============== SOBRE ============== */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 2rem;
}
.sobre__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.sobre__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sobre__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,14,31,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.sobre__photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232,201,122,0.25);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.sobre__photo-caption {
  position: absolute;
  bottom: 1.6rem;
  left: 1.8rem;
  right: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 2;
}
.sobre__photo-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.sobre__photo-role {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.sobre__text .h-section { margin-bottom: 1.6rem; }
.sobre__text p { color: var(--ink); margin-bottom: 1rem; }
.sobre__text p strong { color: var(--gold-bright); font-weight: 600; }

.sobre__creds {
  list-style: none;
  margin: 1.8rem 0 2rem;
  display: grid;
  gap: 0.7rem;
}
.sobre__creds li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.sobre__creds li svg { color: var(--gold-bright); flex-shrink: 0; }

@media (max-width: 880px) {
  .sobre { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .sobre__photo { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ============== SERVIÇOS ============== */
.servicos {
  background: linear-gradient(180deg, var(--bg-night) 0%, var(--bg-deep) 100%);
  padding: 7rem 2rem;
  position: relative;
}
.servicos__head {
  max-width: var(--maxw);
  margin: 0 auto 4rem;
  text-align: center;
}
.servicos__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  background: linear-gradient(180deg, rgba(31,15,58,0.7) 0%, rgba(20,9,43,0.5) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,97,0.4);
  box-shadow: var(--shadow-card);
}
.card--featured {
  background: linear-gradient(180deg, rgba(74,21,48,0.55) 0%, rgba(31,15,58,0.6) 100%);
  border-color: rgba(201,169,97,0.45);
  box-shadow: 0 0 0 1px rgba(201,169,97,0.1), var(--shadow-card);
}
.card__tag {
  position: absolute;
  top: -12px;
  left: 1.9rem;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  background: rgba(201,169,97,0.08);
  border: 1px solid var(--line);
  margin-bottom: 0.6rem;
}
.card h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.card p strong { color: var(--ink); }
.card p em { color: var(--gold-bright); font-style: italic; }
.card ul {
  list-style: none;
  margin: 0.4rem 0;
  display: grid;
  gap: 0.4rem;
}
.card ul li {
  font-size: 0.85rem;
  color: var(--ink);
  padding-left: 1.2rem;
  position: relative;
}
.card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-bright);
  font-size: 0.7rem;
  top: 4px;
}
.card__cta {
  margin-top: 0.8rem;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s, transform .2s;
}
.card__cta:hover { border-color: var(--gold-bright); transform: translateX(3px); }

@media (max-width: 880px) {
  .servicos__grid { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============== PASSOS ============== */
.passos {
  padding: 7rem 2rem;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(74,21,48,0.25) 0%, transparent 50%),
    var(--bg-deep);
}
.passos__head {
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto 4rem;
}
.passos__list {
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: passos;
}
.passo {
  position: relative;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--line);
}
.passo__num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.8;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.passo h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.passo p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; }
.passo p strong { color: var(--ink); }

.passos__cta { text-align: center; margin-top: 3.5rem; }

@media (max-width: 880px) {
  .passos__list { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ============== DEPOIMENTOS ============== */
.depo {
  padding: 7rem 2rem;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(74,21,48,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 70%, rgba(31,15,58,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(201,169,97,0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-night) 100%);
}
.depo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(232,201,122,0.5), transparent),
    radial-gradient(1px 1px at 85% 30%, rgba(232,201,122,0.4), transparent),
    radial-gradient(1.5px 1.5px at 50% 80%, rgba(232,201,122,0.5), transparent),
    radial-gradient(1px 1px at 25% 60%, rgba(232,201,122,0.4), transparent),
    radial-gradient(1.5px 1.5px at 75% 85%, rgba(232,201,122,0.4), transparent);
  animation: drift 18s ease-in-out infinite alternate;
}
.depo__head {
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto 4rem;
}
.depo__sub { color: var(--muted); margin-top: 1rem; font-size: 0.95rem; }

.depo__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* WhatsApp chat */
.wa {
  background: #0b141a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9), 0 12px 24px -10px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.04);
}
.wa__topbar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  background: #1f2c33;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wa__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b1f3f, #c9a961);
  color: #f4e7c8;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
}
.wa__who { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.wa__name { color: #e9edef; font-size: 0.95rem; font-weight: 500; }
.wa__status { color: #8696a0; font-size: 0.75rem; }
.wa__call { color: #aebac1; margin-left: auto; }

.wa__body {
  padding: 1rem;
  background-color: #0b141a;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.015) 0, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.015) 0, transparent 60%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 320px;
}
.wa__date {
  align-self: center;
  background: rgba(31,42,52,0.7);
  color: #8696a0;
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.wa__msg {
  max-width: 82%;
  padding: 0.55rem 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.4;
  position: relative;
  color: #e9edef;
  font-family: "Segoe UI", system-ui, sans-serif;
}
.wa__msg b { font-weight: 700; }
.wa__msg--in {
  align-self: flex-start;
  background: #202c33;
  border-top-left-radius: 0;
}
.wa__msg--out {
  align-self: flex-end;
  background: #005c4b;
  border-top-right-radius: 0;
}
.wa__time {
  position: absolute;
  bottom: 4px;
  right: 8px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.wa__caption {
  padding: 0.8rem 1rem;
  background: #1f2c33;
  color: #aebac1;
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

/* ============== GARANTIAS ============== */
.gar {
  padding: 5rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gar__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.gar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.gar__item svg { color: var(--gold-bright); }
.gar__item h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.3rem;
}
.gar__item p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 880px) {
  .gar__wrap { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}

/* ============== FAQ ============== */
.faq {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-night) 100%);
}
.faq__head {
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto 4rem;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(31,15,58,0.4);
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.faq__item[open] {
  border-color: rgba(201,169,97,0.45);
  background: rgba(74,21,48,0.25);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--ff-body);
  color: var(--gold-bright);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 1.5rem 1.4rem;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq__item p strong { color: var(--gold-bright); }

/* ============== CTA FINAL ============== */
.final {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(232,201,122,0.18) 0%, transparent 35%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(107,31,63,0.65) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 50%, rgba(31,15,58,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(31,15,58,0.6) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, #1c0a25 100%);
  overflow: hidden;
  isolation: isolate;
}
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(232,201,122,0.7), transparent),
    radial-gradient(1px 1px at 30% 35%, rgba(232,201,122,0.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 25%, rgba(232,201,122,0.6), transparent),
    radial-gradient(1px 1px at 85% 50%, rgba(232,201,122,0.5), transparent),
    radial-gradient(2px 2px at 15% 75%, rgba(232,201,122,0.7), transparent),
    radial-gradient(1px 1px at 50% 85%, rgba(232,201,122,0.5), transparent),
    radial-gradient(1.5px 1.5px at 90% 80%, rgba(232,201,122,0.6), transparent);
  animation: drift 20s ease-in-out infinite alternate;
  z-index: -1;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,201,122,0.12) 0%, transparent 60%);
  z-index: -1;
}
.final__inner { max-width: 820px; margin: 0 auto; }
.final__inner .display { margin: 1rem 0 1.5rem; }
.final__lead {
  font-size: 1.2rem;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.final__num {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* ============== FOOTER ============== */
.ftr {
  padding: 3rem 2rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.ftr__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ftr__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--gold-bright);
}
.ftr__name { font-family: var(--ff-display); color: var(--cream); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.04em; }
.ftr__role { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }
.ftr__contact { display: flex; flex-direction: column; gap: 0.3rem; text-align: right; }
.ftr__contact a { color: var(--gold-bright); font-weight: 600; }
.ftr__contact span { color: var(--muted); font-size: 0.85rem; }
.ftr__bot {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .ftr__top { flex-direction: column; align-items: flex-start; }
  .ftr__contact { text-align: left; }
}

/* ============== WHATSAPP FLOAT ============== */
.wa-float {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem 0.85rem 0.9rem;
  background: linear-gradient(180deg, #2cd96f, #1ea855);
  color: #07291a;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 16px 40px -10px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.3);
  transition: transform .2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float__label { display: none; }
  .wa-float { padding: 0.9rem; }
}
