/* ============================================================
   Dra. Mabyan Bezerra — Landing Page
   Estética: editorial feminina, premium, perolada
   ============================================================ */

:root {
  /* Cores */
  --branco: #fdfbf7;
  --perola: #f6efe7;
  --perola-2: #f2e7dc;
  --rose: #e7c8c4;
  --rose-deep: #d9a8a2;
  --nude: #e5d5c5;
  --gold: #c2a05a;
  --gold-soft: #d8be8a;
  --marrom: #7c6450;
  --ink: #423831;
  --ink-soft: #6b5e54;
  --line: rgba(124, 100, 80, 0.18);
  --wa: #25d366;

  /* Tipografia */
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 14px;
  --arch: 1000px 1000px 16px 16px;

  --shadow-soft: 0 30px 70px -40px rgba(124, 100, 80, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--branco);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1rem; }

/* ---------- Utilitários ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--marrom);
  margin: 0 0 1.2rem;
  display: inline-block;
}

.section {
  padding-top: clamp(4.5rem, 9vw, 8rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
}

.section--pearl { background: var(--perola); }
.section--nude {
  background: linear-gradient(180deg, var(--perola) 0%, var(--perola-2) 100%);
}

.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 60ch; }

/* Divisória assinatura: fio dourado com pérola central */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 2.6rem;
  max-width: 220px;
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold) 60%);
}
.divider::after { transform: scaleX(-1); }
.divider span {
  width: 9px; height: 9px; border-radius: 50%;
  margin: 0 14px;
  background: radial-gradient(circle at 32% 30%, #fff, var(--gold-soft) 55%, var(--gold));
  box-shadow: 0 0 0 4px rgba(194, 160, 90, 0.12);
}
.divider--left { margin-left: 0; justify-content: flex-start; }
.divider--left::before { display: none; }
.divider--left::after { max-width: 90px; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.05rem 1.9rem;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.3s, color 0.3s;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--gold));
  color: #fff;
  box-shadow: 0 18px 38px -18px rgba(194, 160, 90, 0.7);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -18px rgba(194, 160, 90, 0.85); }

.btn--ghost {
  background: transparent;
  color: var(--marrom);
  border-color: var(--line);
}
.btn--ghost:hover { background: rgba(124, 100, 80, 0.06); transform: translateY(-3px); }

.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 18px 38px -18px rgba(37, 211, 102, 0.7); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -16px rgba(37, 211, 102, 0.85); }

.btn--lg { padding: 1.25rem 2.6rem; font-size: 0.86rem; }
.btn--block { width: 100%; justify-content: center; }

/* Molduras em arco (assinatura) */
.arch {
  position: relative;
  width: 100%;
  border-radius: var(--arch);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--rose) 0%, var(--nude) 55%, var(--perola-2) 100%);
  box-shadow: var(--shadow-soft);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch__ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; color: rgba(124, 100, 80, 0.65);
  text-align: center; padding: 1.5rem;
}
.arch__ph .mono {
  font-family: var(--display);
  font-size: 4rem; line-height: 1;
  color: rgba(124, 100, 80, 0.5);
}
.arch__ph small {
  font-size: 0.68rem; letter-spacing: 0.28em;
  text-transform: uppercase;
}
.arch__frame {
  position: absolute; inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 990px 990px 8px 8px;
  pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 247, 0);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.site-header.is-stuck {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; padding-bottom: 1.1rem; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mono {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--rose-deep), var(--gold));
}
.brand__name { font-family: var(--display); font-size: 1.25rem; line-height: 1; }
.brand__name small { display: block; font-family: var(--sans);
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--marrom); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); transition: color 0.3s; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px;
  width: 0; background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: inline-flex; }
.nav__links-wa { display: none; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav__toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero__glow {
  position: absolute; z-index: 0;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  right: -8%; top: 4%;
  background: radial-gradient(circle, rgba(231, 200, 196, 0.6) 0%, rgba(246, 239, 231, 0) 65%);
  filter: blur(8px); pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__copy { min-width: 0; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 1.4rem; max-width: 13ch;
}
.hero__title em { font-style: italic; color: var(--rose-deep); }
.hero__sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 0.7rem 1.7rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero__trust li {
  list-style: none; font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--marrom); display: flex; align-items: center; gap: 0.5rem;
}
.hero__trust li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, var(--gold-soft), var(--gold));
}
.hero ul { padding: 0; margin: 0; }

.hero__media { position: relative; }
.hero__media .arch { aspect-ratio: 4 / 5; }
.hero__badge {
  position: absolute; left: -22px; bottom: 30px;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 100px; padding: 0.7rem 1.3rem;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 0.7rem;
}
.hero__badge b { font-family: var(--display); font-size: 1.5rem; line-height: 1; color: var(--gold); }
.hero__badge span { font-size: 0.72rem; line-height: 1.25; color: var(--ink-soft); }

/* ============================================================
   SEÇÃO genérica: cabeçalho centralizado
   ============================================================ */
.head { text-align: center; max-width: 56ch; margin: 0 auto clamp(2.8rem, 5vw, 4rem); }
.head h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 1rem; }
.head p { color: var(--ink-soft); }

/* ---------- Autoridade ---------- */
.about__grid {
  display: grid; grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.about__copy { min-width: 0; }
.about__media .arch { aspect-ratio: 3 / 4; }
.about h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.4rem; }
.about p { color: var(--ink-soft); }
.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.cred {
  background: var(--branco); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.3rem;
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.cred__ic { flex: none; color: var(--gold); margin-top: 2px; }
.cred__ic svg { width: 22px; height: 22px; }
.cred b { font-family: var(--sans); font-weight: 500; font-size: 0.92rem; display: block; line-height: 1.35; }

/* ---------- Serviços ---------- */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.svc {
  background: var(--branco); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold-soft); }
.svc__ic {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: linear-gradient(135deg, rgba(231, 200, 196, 0.5), rgba(229, 213, 197, 0.6));
  color: var(--marrom);
}
.svc__ic svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.svc p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.4rem; flex: 1; }
.svc a {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--marrom); font-weight: 500; display: inline-flex; align-items: center; gap: 0.4rem;
  align-self: flex-start; transition: gap 0.3s, color 0.3s;
}
.svc a:hover { color: var(--gold); gap: 0.7rem; }

/* ---------- Conversão (CTA grande) ---------- */
.convert { position: relative; overflow: hidden; }
.convert__inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(160deg, var(--branco), var(--perola));
  border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.convert h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.2rem; }
.convert p { color: var(--ink-soft); font-size: 1.12rem; max-width: 48ch; margin: 0 auto 2.2rem; }

/* ---------- Gloss ---------- */
.gloss__grid {
  display: grid; grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.gloss__copy { min-width: 0; }
.gloss__media { position: relative; }
.gloss__media .arch { aspect-ratio: 1 / 1; border-radius: 24px; }
.gloss__media .arch { background: radial-gradient(120% 120% at 50% 20%, var(--rose), var(--nude) 60%, var(--perola-2)); }
.gloss h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.gloss__name {
  font-family: var(--sans); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 1.2rem;
}
.gloss__benefits { list-style: none; padding: 0; margin: 1.6rem 0 1.8rem; display: grid; gap: 0.7rem; }
.gloss__benefits li { display: flex; align-items: center; gap: 0.7rem; color: var(--ink-soft); font-size: 0.98rem; }
.gloss__benefits svg { width: 18px; height: 18px; color: var(--rose-deep); flex: none; }
.gloss__price {
  display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.6rem;
}
.gloss__price b { font-family: var(--display); font-size: 2.4rem; color: var(--ink); line-height: 1; }
.gloss__price span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.gloss__cross {
  margin-top: 1.8rem; padding: 1rem 1.3rem; border-radius: 12px;
  background: rgba(231, 200, 196, 0.25); border: 1px dashed var(--rose-deep);
  font-size: 0.92rem; color: var(--marrom);
}

/* ---------- Depoimentos ---------- */
.tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tst {
  background: var(--branco); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.8rem; position: relative;
}
.tst__quote { font-family: var(--display); font-size: 3.5rem; line-height: 0.6; color: var(--gold-soft); }
.tst p { font-size: 1.05rem; color: var(--ink); font-style: italic; margin: 0.8rem 0 1.4rem; }
.tst__stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.9rem; }
.tst__note { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 2.4rem; }

/* ---------- Por que escolher ---------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.why__item { background: var(--perola); padding: 2.2rem 1.8rem; }
.why__item .n {
  font-family: var(--display); font-size: 0.95rem; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}
.why__item .n::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.why__item h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.why__item p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Mentorias (público profissional) ---------- */
.mentoria { position: relative; overflow: hidden;
  background: linear-gradient(150deg, #5a3f47 0%, #3f2f30 60%, #34282a 100%);
  color: rgba(253, 251, 247, 0.86); }
.mentoria::before {
  content: ""; position: absolute; right: -10%; top: -30%;
  width: 50vw; height: 50vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(216, 190, 138, 0.22), transparent 65%);
  pointer-events: none;
}
.mentoria__grid { position: relative; z-index: 1; display: grid;
  grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.mentoria__copy { min-width: 0; }
.mentoria .eyebrow { color: var(--gold-soft); }
.mentoria h2 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; }
.mentoria h2 em { font-style: italic; color: var(--rose); }
.mentoria__lead { color: rgba(253, 251, 247, 0.78); font-size: 1.12rem; max-width: 52ch; margin-bottom: 1.8rem; }
.mentoria__list { list-style: none; padding: 0; margin: 0 0 2.2rem; display: grid; gap: 1rem; }
.mentoria__list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.mentoria__list svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.mentoria__list b { font-family: var(--sans); font-weight: 500; color: #fff; display: block; font-size: 1rem; }
.mentoria__list span { color: rgba(253, 251, 247, 0.7); font-size: 0.9rem; }
.mentoria__panel {
  background: rgba(253, 251, 247, 0.06); border: 1px solid rgba(253, 251, 247, 0.16);
  border-radius: 24px; padding: clamp(1.8rem, 4vw, 2.8rem); backdrop-filter: blur(4px);
}
.mentoria__panel h3 { font-family: var(--display); color: #fff; font-size: 1.9rem; margin-bottom: 0.6rem; }
.mentoria__panel p { color: rgba(253, 251, 247, 0.72); font-size: 0.98rem; }
.mentoria__steps { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: 1.1rem; }
.mentoria__steps li { display: flex; gap: 1rem; align-items: flex-start; }
.mentoria__steps .num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display); font-size: 1.1rem;
  color: var(--ink); background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.mentoria__steps b { font-family: var(--sans); font-weight: 500; color: #fff; display: block; line-height: 1.4; font-size: 0.98rem; }
.mentoria__steps span { color: rgba(253, 251, 247, 0.65); font-size: 0.86rem; }

/* ---------- Localização + Form ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.5rem; }
.contact__list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.1rem; }
.contact__list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact__list svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }
.contact__list b { font-family: var(--sans); font-weight: 500; display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--marrom); margin-bottom: 1px; }
.contact__list span { color: var(--ink-soft); }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 1.6rem; }
.map iframe { width: 100%; height: 230px; border: 0; display: block; filter: grayscale(0.15) sepia(0.08); }

/* Formulário */
.form { background: var(--branco); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-soft); }
.form h3 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.form p.form__hint { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--marrom); margin-bottom: 0.5rem; }
.field input, .field select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 0.95rem 1.1rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--perola); transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 160, 90, 0.16);
}
.form__small { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin: 1rem 0 0; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer { background: var(--ink); color: rgba(253, 251, 247, 0.82); padding-top: 4.5rem; padding-bottom: 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name small { color: var(--gold-soft); }
.footer__brand p { font-size: 0.92rem; color: rgba(253, 251, 247, 0.6); max-width: 34ch; margin-top: 1.2rem; }
.footer h4 { font-family: var(--sans); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 1.1rem; }
.footer a, .footer li { color: rgba(253, 251, 247, 0.75); font-size: 0.95rem; list-style: none; }
.footer ul { padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer a:hover { color: #fff; }
.footer__disc { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(253, 251, 247, 0.14); font-size: 0.8rem; color: rgba(253, 251, 247, 0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }

.footer__credit {
  margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(253, 251, 247, 0.1);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.4rem 0.9rem;
  text-align: center; transition: opacity 0.3s;
}
.footer__credit:hover { opacity: 0.92; }
.footer__credit-cta { font-size: 0.82rem; color: rgba(253, 251, 247, 0.55); }
.footer__credit-brand {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; letter-spacing: 0.02em; color: rgba(253, 251, 247, 0.78);
}
.footer__credit-brand b { color: var(--gold-soft); font-weight: 500; letter-spacing: 0.04em; }
.footer__credit-brand svg { width: 15px; height: 15px; color: var(--wa); }

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--wa); color: #fff; padding: 0.85rem 1.1rem;
  border-radius: 100px; box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.6);
  font-size: 0.84rem; font-weight: 500; letter-spacing: 0.04em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float span { max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0; transition: max-width 0.5s var(--ease), opacity 0.4s, margin 0.4s; margin-left: -0.7rem; }
.wa-float:hover { transform: translateY(-3px); }
.wa-float:hover span { max-width: 160px; opacity: 1; margin-left: 0; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 100px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   ANIMAÇÕES DE SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid, .about__grid, .gloss__grid, .contact__grid, .mentoria__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; width: 100%; max-width: 420px; margin: 0 auto; }
  .about__media { width: 100%; max-width: 420px; margin: 0 auto; }
  .gloss__media, .contact__info { width: 100%; }
  .services__grid, .tst__grid, .why__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .site-header.menu-open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(253, 251, 247, 0.98); backdrop-filter: blur(12px);
    padding: 0.5rem var(--pad) 1.4rem; box-shadow: var(--shadow-soft);
  }
  .site-header.menu-open .nav__links a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .site-header.menu-open .nav__links a:last-child { border-bottom: 0; }
  .nav__cta { display: none !important; }
  .site-header.menu-open .nav__links-wa {
    display: block; text-align: center; margin-top: 1rem;
    color: #fff !important; background: var(--wa); border-radius: 100px;
    padding: 1rem !important; border-bottom: 0 !important;
    font-weight: 500; letter-spacing: 0.08em;
  }
  .site-header.menu-open .nav__links-wa::after { display: none; }
  .services__grid, .tst__grid, .why__grid, .about__cards { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .wa-float span { display: none; }
  .hero__badge { left: 10px; bottom: 16px; padding: 0.6rem 1rem; }
  body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .wa-float::after { animation: none; }
}

/* Foco visível (acessibilidade) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}
