/* ============================================================
   CLEANE — Dra. Cleane Almeida · Harmonização Facial
   Warm-gold luxury aesthetic-clinic system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* surfaces */
  --cream:    #FBF6EE;
  --cream-2:  #F5ECDD;
  --paper:    #FFFFFF;
  --paper-2:  #FDFAF4;

  /* ink */
  --ink:      #2B2118;
  --ink-2:    #4A3D2E;
  --ink-soft: #847666;
  --line:     #EBE0CE;
  --line-2:   #E0D2BA;

  /* gold */
  --gold:      #BE9748;
  --gold-2:    #D9B772;
  --gold-3:    #EBD5A0;
  --gold-deep: #99722B;
  --gold-grad: linear-gradient(118deg, #E7CD8C 0%, #C89E51 52%, #A37C34 100%);
  --gold-grad-soft: linear-gradient(120deg, #F0E2BD 0%, #E4CC8E 100%);

  /* brown (dark bands) */
  --brown:    #3A2A19;
  --brown-2:  #54381F;
  --brown-grad: linear-gradient(125deg, #3A2A19 0%, #5A3D20 60%, #3A2917 100%);

  --shadow-sm: 0 4px 18px -8px rgba(80, 55, 20, .22);
  --shadow:    0 18px 50px -22px rgba(80, 55, 20, .32);
  --shadow-lg: 0 40px 90px -40px rgba(70, 48, 18, .45);

  --r:    18px;
  --r-lg: 28px;
  --maxw: 1180px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- type ---------- */
.serif { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 400;
}

em.g, .gold-ital {
  font-style: italic;
  color: var(--gold-deep);
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
section { position: relative; }
.pad { padding-block: clamp(72px, 9vw, 140px); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--gold-grad);
  display: inline-flex; align-items: center; gap: .6em;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg);
  border: none;
  padding: 17px 34px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 34px -14px rgba(160, 120, 40, .7);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(118deg, #F3DFA8, #D2A95C 55%, #B68A3D);
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -16px rgba(160, 120, 40, .85); }
.btn:hover::after { opacity: 1; }
.btn .arw { transition: transform .4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn.ghost {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--line-2);
  box-shadow: none;
}
.btn.ghost::after { display: none; }
.btn.ghost:hover { border-color: var(--gold); color: var(--ink); background: var(--paper); }

.btn.light {
  background: #fff; color: var(--gold-deep);
  box-shadow: 0 16px 40px -18px rgba(0,0,0,.4);
}
.btn.light::after { background: #fff7e8; }

/* ---------- nav ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding-block: 22px;
}
header.nav.scrolled {
  background: rgba(251, 246, 238, .85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(80,55,20,.4);
  padding-block: 12px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  color: #fff; font-size: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), var(--shadow-sm);
}
.brand .bn { line-height: 1.05; }
.brand .bn b { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.32rem; letter-spacing: .02em; color: var(--ink); display: block; }
.brand .bn span { font-size: .6rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--ink-2); text-decoration: none; position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav .btn { white-space: nowrap; padding: 14px 26px; font-size: .76rem; }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- hero ---------- */
.hero { padding-top: 150px; padding-bottom: 60px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.6rem); }
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero .lead { margin-top: 26px; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 40px; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars image-slot, .hero-trust .avatars .av {
  width: 46px; height: 46px; border-radius: 50%; margin-left: -12px; object-fit: cover;
  border: 3px solid var(--cream); box-shadow: var(--shadow-sm);
  background: var(--cream-2);
}
.hero-trust .avatars > :first-child { margin-left: 0; }
.hero-trust .tx { font-size: .86rem; color: var(--ink-soft); line-height: 1.4; }
.hero-trust .tx b { color: var(--ink); font-weight: 700; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .8rem; }

.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: 220px 220px 26px 26px;
  overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
}
.hero-photo image-slot, .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
.hero-badge {
  position: absolute; background: var(--paper); border-radius: 16px;
  box-shadow: var(--shadow); padding: 16px 20px; display: flex; gap: 13px; align-items: center;
  border: 1px solid var(--line);
}
.hero-badge .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--gold-grad-soft); display: grid; place-items: center; color: var(--gold-deep); }
.hero-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; line-height: 1; color: var(--ink); }
.hero-badge .lb { font-size: .68rem; letter-spacing: .04em; color: var(--ink-soft); }
.hb-1 { bottom: 36px; left: -34px; }
.hb-2 { top: 40px; right: -28px; }

/* decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.blob.g { background: radial-gradient(circle, rgba(216,183,114,.6), transparent 70%); }

/* ---------- generic section heading ---------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.sec-head h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-top: 16px; }
.sec-head p { margin-top: 18px; color: var(--ink-soft); }

/* ---------- intro cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.icard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 38px 32px; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  position: relative; overflow: hidden;
}
.icard::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.icard:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-2); }
.icard:hover::before { transform: scaleX(1); }
.icard .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--gold-grad-soft); color: var(--gold-deep); margin-bottom: 22px;
}
.icard h3 { font-size: 1.55rem; margin-bottom: 10px; }
.icard p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- gold band: o que é ---------- */
.band-gold {
  background: var(--gold-grad); color: #fff; overflow: hidden;
}
.band-gold::before, .band-gold::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
}
.band-gold::before { width: 460px; height: 460px; right: -160px; top: -160px; }
.band-gold::after  { width: 300px; height: 300px; left: -120px; bottom: -150px; }
.band-gold .eyebrow { color: #fff6e2; }
.band-gold .eyebrow::before { background: linear-gradient(90deg, transparent, #fff6e2); }
.band-gold .eyebrow.center::after { background: linear-gradient(90deg, #fff6e2, transparent); }
.band-gold h2 { color: #fff; }
.band-gold .lead { color: rgba(255,255,255,.86); }
.feat-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.fcard {
  background: rgba(255,255,255,.96); border-radius: var(--r); padding: 34px 28px;
  color: var(--ink); box-shadow: 0 30px 60px -30px rgba(110,75,20,.6);
  transition: transform .5s var(--ease);
}
.fcard:hover { transform: translateY(-8px); }
.fcard .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-grad); color:#fff; display: grid; place-items: center; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.fcard h3 { font-size: 1.45rem; margin-bottom: 8px; }
.fcard p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr) 1.3fr; gap: 22px; }
.benefit-grid .bcol { display: grid; gap: 22px; }
.bcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bcard .n { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-2); line-height: 1; font-weight: 600; }
.bcard h3 { font-size: 1.3rem; margin: 12px 0 8px; }
.bcard p { font-size: .9rem; color: var(--ink-soft); }
.bcard.tall { display: flex; flex-direction: column; justify-content: flex-end; padding: 0; overflow: hidden; min-height: 320px; position: relative; border: none; }
.bcard.tall image-slot, .bcard.tall img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.bcard.tall .cap { position: relative; z-index: 2; padding: 28px; color: #fff; background: linear-gradient(to top, rgba(40,28,15,.86), transparent); }
.bcard.tall .cap h3 { color: #fff; }
.bcard.tall .cap p { color: rgba(255,255,255,.85); }

/* ---------- philosophy quote ---------- */
.philo { text-align: center; }
.philo .big {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.18; max-width: 18ch; margin: 24px auto 0;
  text-wrap: balance;
}
.philo .qmark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold-2); line-height: .4; }
.philo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.pcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 24px; text-align: center; transition: transform .5s var(--ease), box-shadow .5s; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard .ic { width: 50px; height: 50px; margin: 0 auto 16px; border-radius: 50%; background: var(--gold-grad-soft); color: var(--gold-deep); display: grid; place-items: center; }
.pcard h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 6px; }
.pcard p { font-size: .85rem; color: var(--ink-soft); }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba {
  margin: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 16px; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s;
}
.ba:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ba-img { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 277 / 360; background: var(--cream-2); }
.ba-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .7s var(--ease); }
.ba:hover .ba-img img { transform: scale(1.04); }
.ba-img .tag {
  position: absolute; top: 12px; z-index: 3;
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ba-img .tag.before { left: 12px; background: rgba(60,42,25,.7); }
.ba-img .tag.after { right: 12px; background: var(--gold-grad); }
.ba-meta { display: flex; align-items: center; justify-content: space-between; padding: 16px 10px 6px; }
.ba-meta h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; }
.ba-meta span { font-size: .78rem; color: var(--gold-deep); font-weight: 600; letter-spacing: .04em; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 14px; overflow: hidden; transition: box-shadow .4s, border-color .4s;
}
.faq.open { box-shadow: var(--shadow); border-color: var(--line-2); }
.faq button {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--ink);
}
.faq .pl { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: var(--gold-grad-soft); color: var(--gold-deep); display: grid; place-items: center; position: relative; transition: transform .4s var(--ease); }
.faq.open .pl { transform: rotate(135deg); }
.faq .pl::before, .faq .pl::after { content:""; position: absolute; background: var(--gold-deep); border-radius: 2px; }
.faq .pl::before { width: 12px; height: 2px; }
.faq .pl::after { width: 2px; height: 12px; }
.faq .ans { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq .ans p { padding: 0 28px 26px; color: var(--ink-soft); font-size: .96rem; max-width: 60ch; }

/* ---------- about specialist ---------- */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo .ring { position: absolute; inset: -22px; border: 1px solid var(--line-2); border-radius: 50%; }
.about-photo .disc { aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); border: 6px solid var(--paper); }
.about-photo image-slot, .about-photo .disc img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.about-photo .chip {
  position: absolute; bottom: 18px; right: -10px; background: var(--paper); padding: 14px 20px;
  border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--line); text-align: center;
}
.about-photo .chip b { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--gold-deep); display: block; line-height: 1; }
.about-photo .chip span { font-size: .68rem; letter-spacing: .06em; color: var(--ink-soft); }
.about-grid h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 14px 0 20px; }
.about-grid p { color: var(--ink-soft); margin-bottom: 16px; }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 30px; }
.credentials li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.credentials .ck { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-grad); color: #fff; display: grid; place-items: center; font-size: .7rem; margin-top: 2px; }

/* ---------- dark emotional band ---------- */
.band-dark { background: var(--brown-grad); color: #fff; text-align: center; overflow: hidden; }
.band-dark::before { content:""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(216,183,114,.22), transparent 60%); }
.band-dark .wrap { position: relative; z-index: 2; }
.band-dark .eyebrow { color: var(--gold-3); justify-content: center; }
.band-dark .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-3)); }
.band-dark .eyebrow::after { content:""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--gold-3), transparent); }
.band-dark h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.4rem); margin: 18px auto; max-width: 18ch; }
.band-dark p { color: rgba(255,255,255,.78); max-width: 60ch; margin: 0 auto 34px; }

/* ---------- method steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .num {
  width: 70px; height: 70px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line-2); display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--gold-deep);
  box-shadow: var(--shadow-sm); position: relative; z-index: 2;
}
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 35px; left: 60%; width: 80%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px);
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--ink-soft); }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s;
  display: flex; flex-direction: column; gap: 18px;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tcard .stars { font-size: .95rem; }
.tcard p { font-size: .98rem; color: var(--ink-2); line-height: 1.7; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tcard .who image-slot, .tcard .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.tcard .who b { display: block; font-family: 'Manrope'; font-size: .9rem; font-weight: 700; }
.tcard .who span { font-size: .76rem; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-item .ic { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 14px; background: var(--gold-grad-soft); color: var(--gold-deep); display: grid; place-items: center; }
.cinfo-item h4 { font-family: 'Manrope'; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 3px; }
.cinfo-item p { font-size: 1rem; color: var(--ink); }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: 12px;
  font-family: 'Manrope'; font-size: .96rem; color: var(--ink); background: var(--paper-2);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(216,183,114,.22); }
.field textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: .76rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* ---------- footer ---------- */
footer.ft { background: var(--brown-grad); color: rgba(255,255,255,.7); padding-block: 64px 28px; }
.ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.ft .brand .bn b { color: #fff; }
.ft p { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: 18px; max-width: 34ch; }
.ft h5 { font-family: 'Manrope'; color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.ft ul { list-style: none; display: grid; gap: 11px; }
.ft a { color: rgba(255,255,255,.66); text-decoration: none; font-size: .9rem; transition: color .3s; }
.ft a:hover { color: var(--gold-3); }
.ft .socials { display: flex; gap: 12px; margin-top: 20px; }
.ft .socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; }
.ft .socials a:hover { background: var(--gold-grad); border-color: transparent; }
.ft-base { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; text-align: center; font-size: .78rem; color: rgba(255,255,255,.5); }

/* ---------- floating whatsapp ---------- */
.wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 34px -10px rgba(37,211,102,.7);
  text-decoration: none; transition: transform .4s var(--ease);
  animation: wa-pulse 2.6s infinite;
}
.wa:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0%,100%{ box-shadow:0 14px 34px -10px rgba(37,211,102,.7),0 0 0 0 rgba(37,211,102,.5);} 50%{ box-shadow:0 14px 34px -10px rgba(37,211,102,.7),0 0 0 14px rgba(37,211,102,0);} }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
[data-reveal].settled { transition: none !important; opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; margin-inline: auto; }
  .cards-3, .feat-3, .philo-row, .steps, .testi-grid, .ba-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 360px; margin-inline: auto; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .cards-3, .feat-3, .philo-row, .steps, .testi-grid, .ba-grid, .benefit-grid, .form-row, .credentials { grid-template-columns: 1fr; }
  .steps .step::after { display: none; }
  .hb-1 { left: 8px; } .hb-2 { right: 8px; }
  .wrap { padding-inline: 20px; }
}
