/* =========================================================
   Jeniffer Mateus — Psicóloga Fenomenológica
   Página de vendas / captação de pacientes
   Estética: lilás + colagem acadêmica vintage (scrapbook)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Paleta */
  --lilac:        #8f81c9;
  --lilac-deep:   #6e60ab;
  --lilac-darker: #564a8c;
  --lilac-soft:   #b3a7e2;
  --lilac-mist:   #d8d1f0;
  --cream:        #f7f1e2;
  --cream-2:      #fdf9ef;
  --paper:        #efe7d3;
  --ink:          #2a2342;
  --ink-soft:     #4a4068;
  --wine:         #8c2f3a;
  --wine-soft:    #b1525c;
  --gold:         #c9a23f;
  --gold-soft:    #e2c879;

  /* Tipografia */
  --serif:  "Playfair Display", Georgia, serif;
  --body:   "Lora", Georgia, serif;
  --script: "Sacramento", cursive;
  --hand:   "Caveat", cursive;

  /* Métricas */
  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 18px 40px -18px rgba(40, 30, 70, .55);
  --shadow-soft: 0 10px 26px -14px rgba(40, 30, 70, .4);
  --tape: rgba(247, 241, 226, .55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  line-height: 1.7;
  background-color: var(--lilac);
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(255,255,255,.18), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(86,74,140,.35), transparent 50%),
    url("assets/grain.svg");
  background-attachment: fixed, fixed, scroll;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Tipografia base ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 800; line-height: 1.08; letter-spacing: .2px; }
.script { font-family: var(--script); font-weight: 400; }
.hand   { font-family: var(--hand); font-weight: 600; }

.eyebrow {
  font-family: var(--hand);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--gold-soft);
  letter-spacing: .5px;
  transform: rotate(-2deg);
  display: inline-block;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.center { text-align: center; }

/* ---------- "Fita" / tape label ---------- */
.tape {
  position: relative;
  display: inline-block;
  background: var(--cream);
  color: var(--ink);
  padding: .35em .8em;
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.4deg);
}
.tape::before, .tape::after {
  content: "";
  position: absolute;
  width: 62px; height: 22px;
  background: var(--tape);
  border: 1px dashed rgba(255,255,255,.5);
  top: -10px; left: 14%;
  transform: rotate(-7deg);
  backdrop-filter: blur(1px);
}
.tape::after { top: auto; bottom: -10px; left: auto; right: 14%; transform: rotate(-5deg); }

/* ---------- Section heading ---------- */
.section-head { margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  color: var(--cream);
  text-shadow: 0 2px 0 rgba(86,74,140,.4);
  max-width: 18ch;
}
.section-head.center h2 { margin-inline: auto; }
.section-head p {
  margin-top: 1rem;
  color: var(--lilac-mist);
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  max-width: 56ch;
}
.section-head.center p { margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--serif); font-weight: 700;
  font-size: 1.05rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary {
  background: linear-gradient(135deg, var(--wine), var(--wine-soft));
  color: var(--cream-2);
  box-shadow: 0 12px 24px -10px rgba(140,47,58,.8);
}
.btn-primary:hover { transform: translateY(-3px) rotate(-.5deg); box-shadow: 0 18px 30px -10px rgba(140,47,58,.9); }
.btn-cream { background: var(--cream); color: var(--ink); box-shadow: var(--shadow-soft); }
.btn-cream:hover { transform: translateY(-3px); }
.btn-ghost { border: 2px solid var(--cream); color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--ink); }
.btn-lg { font-size: 1.18rem; padding: 1.1rem 2.3rem; }

/* ---------- Doodles ---------- */
.doodle { position: absolute; opacity: .5; pointer-events: none; color: var(--lilac-soft); z-index: 0; }
.doodle.gold { color: var(--gold-soft); }
.doodle.cream { color: rgba(247,241,226,.55); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(86,74,140,.82), rgba(86,74,140,.45));
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; gap: 1rem; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand b { font-family: var(--serif); font-size: 1.18rem; color: var(--cream); letter-spacing: .3px; }
.brand span { font-size: .72rem; color: var(--lilac-mist); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--cream); font-size: .98rem; opacity: .9; transition: opacity .15s; }
.nav-links a:hover { opacity: 1; }
.nav-links .btn { padding: .6rem 1.3rem; font-size: .95rem; }
.nav-toggle { display: none; color: var(--cream); font-size: 1.6rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 9vw, 7rem); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  color: var(--cream);
  text-shadow: 0 3px 0 rgba(86,74,140,.45);
  margin: .8rem 0 1.1rem;
}
.hero-copy h1 .script { color: var(--gold-soft); font-size: 1.25em; display: inline-block; transform: rotate(-3deg); }
.hero-copy .lead { color: var(--lilac-mist); font-size: clamp(1.08rem, 2.4vw, 1.32rem); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.9rem; }
.hero-trust { margin-top: 1.6rem; display: flex; align-items: center; gap: .6rem; color: var(--lilac-mist); font-size: .95rem; }
.hero-trust b { color: var(--cream); }

/* Foto da hero — moldura polaroid */
.hero-photo { position: relative; z-index: 1; justify-self: center; }
.polaroid {
  background: var(--cream-2);
  padding: 14px 14px 58px;
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
  border-radius: 4px;
  position: relative;
  max-width: 420px;
}
.polaroid img { border-radius: 2px; aspect-ratio: 4 / 5; object-fit: cover; background: var(--lilac-mist); }
.polaroid .cap { font-family: var(--hand); font-size: 1.5rem; color: var(--ink-soft); text-align: center; margin-top: .5rem; }
.polaroid::before { /* fita no topo */
  content: ""; position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 120px; height: 30px; background: var(--tape); border: 1px dashed rgba(255,255,255,.45);
}
.photo-ph {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 2px;
  background:
    repeating-linear-gradient(45deg, rgba(110,96,171,.18) 0 12px, rgba(110,96,171,.28) 12px 24px),
    var(--lilac-soft);
  display: grid; place-content: center; text-align: center; color: var(--lilac-darker);
  font-family: var(--hand); font-size: 1.2rem; padding: 1rem;
}

/* Film strip decoração */
.filmstrip {
  position: absolute; height: 54px; left: -4%; right: -4%;
  background:
    linear-gradient(#1d1830, #1d1830) padding-box,
    repeating-linear-gradient(90deg, #1d1830 0 8px, transparent 8px 22px) border-box;
  background: #221b38;
  opacity: .25; z-index: 0;
}
.filmstrip::before, .filmstrip::after {
  content: ""; position: absolute; left: 0; right: 0; height: 10px;
  background-image: radial-gradient(circle, var(--cream) 38%, transparent 42%);
  background-size: 22px 100%;
}
.filmstrip::before { top: 4px; } .filmstrip::after { bottom: 4px; }
.filmstrip.f1 { top: 8%; transform: rotate(-4deg); }
.filmstrip.f2 { bottom: 6%; transform: rotate(3deg); }

/* =========================================================
   RECONHECIMENTO ("Você se reconhece aqui?")
   ========================================================= */
.recognize { background: linear-gradient(180deg, transparent, rgba(86,74,140,.25)); }
.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.note {
  background: var(--cream-2); color: var(--ink);
  padding: 1.4rem 1.5rem; border-radius: 8px;
  box-shadow: var(--shadow-soft);
  position: relative;
  font-size: 1.06rem;
}
.note:nth-child(odd)  { transform: rotate(-1.3deg); }
.note:nth-child(even) { transform: rotate(1.1deg); background: var(--cream); }
.note::before {
  content: ""; position: absolute; top: -11px; left: 50%; transform: translateX(-50%) rotate(-4deg);
  width: 70px; height: 22px; background: var(--tape); border: 1px dashed rgba(255,255,255,.5);
}
.note b { font-family: var(--serif); color: var(--wine); }
.recognize-foot { margin-top: 2.4rem; text-align: center; color: var(--lilac-mist); font-size: 1.12rem; }
.recognize-foot .hand { color: var(--gold-soft); font-size: 1.5rem; }

/* =========================================================
   SOBRE
   ========================================================= */
.about { background: rgba(253,249,239,.06); }
.about .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo { position: relative; justify-self: center; }
.about-photo .polaroid { transform: rotate(-2.4deg); max-width: 380px; }
.about-card {
  background: var(--cream-2); color: var(--ink);
  border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow); position: relative;
}
.about-card h2 { font-size: clamp(1.8rem, 4.4vw, 2.7rem); color: var(--ink); }
.about-card .crp {
  display: inline-block; margin: .5rem 0 1.1rem;
  font-family: var(--hand); font-size: 1.25rem; color: var(--wine);
}
.about-card p { margin-bottom: 1rem; color: var(--ink-soft); }
.about-card .sign { font-family: var(--script); font-size: 2.2rem; color: var(--wine); line-height: 1; margin-top: .4rem; }
.creds { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0; }
.creds li {
  background: var(--lilac-mist); color: var(--lilac-darker);
  font-family: var(--serif); font-weight: 700; font-size: .85rem;
  padding: .35rem .9rem; border-radius: 999px;
}

/* =========================================================
   ABORDAGEM (3 pilares)
   ========================================================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 1rem; }
.pillar {
  background: linear-gradient(180deg, rgba(253,249,239,.96), rgba(247,241,226,.92));
  color: var(--ink); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-soft);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar .ic {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--lilac-mist); color: var(--lilac-darker);
  display: grid; place-content: center; margin-bottom: 1rem;
}
.pillar .ic svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 1.4rem; color: var(--wine); margin-bottom: .5rem; }
.pillar p { color: var(--ink-soft); font-size: 1rem; }
.pillar .num {
  position: absolute; top: -10px; right: 6px; font-family: var(--serif); font-weight: 800;
  font-size: 5rem; color: rgba(143,129,201,.14);
}
.approach-quote {
  margin-top: 2.6rem; text-align: center;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.3rem, 3.4vw, 2rem); color: var(--cream);
  max-width: 30ch; margin-inline: auto; text-shadow: 0 2px 0 rgba(86,74,140,.4);
}

/* =========================================================
   COMO FUNCIONA (passos)
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  background: rgba(29,24,48,.28); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 1.6rem 1.3rem; color: var(--cream);
  position: relative;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-weight: 800; font-size: 1.6rem; color: var(--gold-soft);
  display: block; margin-bottom: .6rem;
}
.step h3 { font-size: 1.18rem; color: var(--cream); margin-bottom: .35rem; }
.step p { color: var(--lilac-mist); font-size: .98rem; }
.format-tags { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 2.2rem; }
.format-tags span {
  background: var(--cream); color: var(--ink); font-family: var(--serif); font-weight: 700;
  padding: .5rem 1.1rem; border-radius: 999px; font-size: .95rem; box-shadow: var(--shadow-soft);
}

/* =========================================================
   INVESTIMENTO
   ========================================================= */
.pricing .wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; max-width: 880px; }
.price-card {
  background: var(--cream-2); color: var(--ink); border-radius: 18px;
  padding: 2.2rem 2rem; box-shadow: var(--shadow); position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured { background: linear-gradient(165deg, var(--lilac-deep), var(--lilac-darker)); color: var(--cream); }
.price-card .ribbon {
  position: absolute; top: 1.2rem; right: -6px;
  background: var(--gold); color: #2a2342; font-family: var(--serif); font-weight: 800;
  font-size: .78rem; letter-spacing: .5px; padding: .3rem .9rem; border-radius: 4px 0 0 4px;
  box-shadow: var(--shadow-soft);
}
.price-card h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.price-card.featured h3 { color: var(--cream); }
.price-card .price { font-family: var(--serif); font-weight: 800; font-size: 2.8rem; line-height: 1.1; margin: .6rem 0; }
.price-card .price small { font-size: 1rem; font-weight: 600; opacity: .8; }
.price-card .save { font-family: var(--hand); font-size: 1.3rem; color: var(--gold-soft); }
.price-card.featured .save { color: var(--gold-soft); }
.price-card ul { margin: 1.2rem 0 1.6rem; display: grid; gap: .6rem; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; font-size: 1rem; }
.price-card li svg { width: 1.2em; height: 1.2em; flex: none; margin-top: .25em; color: var(--wine); }
.price-card.featured li svg { color: var(--gold-soft); }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }
.pricing-note { text-align: center; margin-top: 1.8rem; color: var(--lilac-mist); font-size: .98rem; }

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.testi {
  background: var(--cream-2); color: var(--ink); border-radius: 10px;
  padding: 1.8rem 1.7rem; box-shadow: var(--shadow-soft); position: relative;
}
.testi:nth-child(2) { transform: rotate(-1.2deg); }
.testi:nth-child(3) { transform: rotate(1deg); }
.testi .quote { font-family: var(--serif); font-weight: 800; font-size: 2.4rem; color: var(--lilac-soft); line-height: 0; display: block; height: 1.2rem; }
.testi p { font-style: italic; color: var(--ink-soft); margin: .6rem 0 1rem; }
.testi .who { font-family: var(--hand); font-size: 1.2rem; color: var(--wine); }
.testi-disclaimer { text-align: center; margin-top: 1.6rem; color: var(--lilac-mist); font-size: .85rem; opacity: .8; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item { background: var(--cream-2); border-radius: 12px; box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 1.4rem; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--ink);
}
.faq-q .chev { transition: transform .25s ease; color: var(--wine); flex: none; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta { text-align: center; }
.final-cta .card {
  background: linear-gradient(160deg, var(--cream-2), var(--cream));
  border-radius: 22px; padding: clamp(2.5rem, 6vw, 4rem); box-shadow: var(--shadow);
  position: relative; overflow: hidden; max-width: 820px; margin-inline: auto;
}
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--ink); }
.final-cta h2 .script { color: var(--wine); font-size: 1.2em; display: block; }
.final-cta p { color: var(--ink-soft); font-size: 1.15rem; max-width: 50ch; margin: 1rem auto 1.8rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 3rem 0 2.2rem; border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; }
.footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.6rem; align-items: center; }
.footer .brand b { color: var(--cream); }
.footer .f-links { display: flex; gap: 1.4rem; }
.footer a { color: var(--lilac-mist); transition: color .15s; }
.footer a:hover { color: var(--cream); }
.footer .legal { width: 100%; text-align: center; color: var(--lilac-mist); font-size: .82rem; opacity: .7; margin-top: 1rem; }

/* =========================================================
   WHATSAPP / FORM MODAL
   ========================================================= */
.float-cta {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 60;
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--wine), var(--wine-soft)); color: var(--cream-2);
  padding: .9rem 1.4rem; border-radius: 999px; box-shadow: 0 14px 30px -10px rgba(140,47,58,.9);
  font-family: var(--serif); font-weight: 700;
  animation: floaty 3s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-6px); } }
.float-cta svg { width: 1.3em; height: 1.3em; }

.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(29,24,48,.65); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1.2rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--cream-2); color: var(--ink); border-radius: 20px;
  width: min(100%, 460px); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow);
  position: relative; animation: pop .25s ease;
}
@keyframes pop { from { transform: scale(.94) translateY(10px); opacity: 0; } }
.modal h3 { font-size: 1.7rem; color: var(--ink); }
.modal .script { color: var(--wine); font-size: 1.4em; }
.modal p.sub { color: var(--ink-soft); margin: .4rem 0 1.4rem; }
.modal label { display: block; font-family: var(--serif); font-weight: 700; font-size: .92rem; margin-bottom: .3rem; }
.modal .field { margin-bottom: 1.1rem; }
.modal input {
  width: 100%; padding: .85rem 1rem; border-radius: 10px; font-family: var(--body); font-size: 1rem;
  border: 2px solid var(--lilac-mist); background: #fff; color: var(--ink); transition: border-color .15s;
}
.modal input:focus { outline: none; border-color: var(--lilac); }
.modal .btn { width: 100%; justify-content: center; margin-top: .3rem; }
.modal .close { position: absolute; top: 1rem; right: 1.1rem; font-size: 1.5rem; color: var(--ink-soft); line-height: 1; }
.modal .ok { text-align: center; display: none; }
.modal .ok .check { width: 64px; height: 64px; margin: 0 auto 1rem; color: var(--wine); }
.modal.success .form-body { display: none; }
.modal.success .ok { display: block; }

/* ---------- Scroll reveal (progressive enhancement) ----------
   Conteúdo visível por padrão; só esconde se o JS marcar <html class="js">. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RAÍZES / CARROSSEL DE FENOMENÓLOGOS
   ========================================================= */
.roots { background: linear-gradient(180deg, rgba(86,74,140,.28), transparent 60%); }
.carousel { position: relative; display: flex; align-items: center; gap: .6rem; }
.car-viewport { overflow: hidden; flex: 1; border-radius: var(--radius); touch-action: pan-y; }
.car-track { display: flex; transition: transform .45s cubic-bezier(.4, 0, .2, 1); }
.car-slide { min-width: 100%; padding: .4rem; }

.philo-card {
  background: var(--cream-2); color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 280px 1fr;
  gap: clamp(1.2rem, 3.5vw, 2.6rem);
  padding: clamp(1.4rem, 3.5vw, 2.4rem); align-items: center;
}
.philo-photo {
  position: relative; margin: 0; background: #fff;
  padding: 12px 12px 42px; box-shadow: var(--shadow-soft); transform: rotate(-2deg);
}
.philo-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: grayscale(100%) contrast(1.05); background: var(--lilac-mist); }
.philo-photo figcaption { font-family: var(--hand); font-size: 1.25rem; color: var(--ink-soft); text-align: center; margin-top: .35rem; }
.philo-photo::before {
  content: ""; position: absolute; top: -13px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 96px; height: 25px; background: var(--tape); border: 1px dashed rgba(255,255,255,.45);
}
.philo-tag { font-family: var(--hand); font-size: 1.35rem; color: var(--wine); }
.philo-text h3 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); color: var(--ink); margin: .15rem 0 .7rem; }
.philo-text h3 small { font-family: var(--body); font-weight: 500; font-size: .92rem; color: var(--ink-soft); margin-left: .35rem; white-space: nowrap; }
.philo-text p { color: var(--ink-soft); font-size: 1.06rem; }

.car-arrow {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream); color: var(--ink); box-shadow: var(--shadow-soft);
  display: grid; place-content: center; transition: transform .15s, background .15s;
}
.car-arrow:hover { transform: scale(1.08); background: #fff; }
.car-arrow svg { width: 24px; height: 24px; }
.car-dots { display: flex; gap: .55rem; justify-content: center; margin-top: 1.7rem; }
.car-dots button { width: 11px; height: 11px; border-radius: 50%; background: rgba(247,241,226,.4); transition: background .2s, transform .2s; cursor: pointer; }
.car-dots button.active { background: var(--cream); transform: scale(1.3); }

@media (max-width: 720px) {
  .philo-card { grid-template-columns: 1fr; text-align: center; gap: 1.2rem; }
  .philo-photo { max-width: 230px; margin-inline: auto; transform: rotate(-1.5deg); }
  .philo-text h3 small { display: block; margin: .2rem 0 0; }
  .car-arrow { position: absolute; top: 32%; z-index: 3; width: 42px; height: 42px; }
  .car-arrow.prev { left: -2px; }
  .car-arrow.next { right: -2px; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 940px) {
  .hero .wrap, .about .wrap { grid-template-columns: 1fr; }
  .hero-photo, .about-photo { order: -1; }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .notes { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
    position: absolute; top: 100%; left: 0; right: 0; padding: 1.2rem 1.4rem;
    background: var(--lilac-darker); border-bottom: 1px solid rgba(255,255,255,.12);
  }
}
@media (max-width: 560px) {
  .pricing .wrap, .testi-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .notes { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .float-cta span { display: none; }
  .float-cta { padding: 1rem; }
}

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