/* ============================================================
   AURIDIANA — Personal Bride
   Editorial bridal luxury. Ivory canvas · champagne · blush ·
   dusty mauve-bordô accent · matte-gold hairlines.
   ============================================================ */

:root {
  /* Surfaces */
  --ivory:        #FBF7F0;
  --ivory-deep:   #F4ECE0;
  --champagne:    #EDE0CF;
  --blush:        #F0E1DB;
  --blush-deep:   #E7D2CB;
  --paper:        #FFFDFA;

  /* Ink */
  --ink:          #2E2823;   /* primary text */
  --ink-soft:     #6E635A;   /* secondary text */
  --ink-faint:    #A89C8F;   /* tertiary / captions */

  /* Accent — dusty mauve-bordô + matte gold */
  --mauve:        #8A6A6F;
  --mauve-deep:   #6B4A50;
  --gold:         #B89B6A;
  --gold-soft:    #CBB48A;

  /* Lines */
  --hair:         rgba(46,40,35,0.12);
  --hair-gold:    rgba(184,155,106,0.45);

  /* Type */
  --display: "Cormorant Garamond", Georgia, serif;
  --sans:    "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --section-y: clamp(5.5rem, 11vw, 11rem);
  --gutter:    clamp(1.4rem, 5vw, 7rem);
  --maxw:      1280px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--blush-deep); color: var(--mauve-deep); }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mauve);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: clamp(22px, 4vw, 46px);
  height: 1px;
  background: var(--hair-gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: clamp(22px, 4vw, 46px);
  height: 1px;
  background: var(--hair-gold);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.04;
  font-weight: 300;
}
.section-title em {
  font-style: italic;
  color: var(--mauve);
}

p { text-wrap: pretty; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.85;
  color: var(--ink-soft);
}

a { color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--mauve-deep);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  background: var(--b);
  padding: 1.15em 2.4em;
  border: 1px solid var(--b);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  cursor: pointer;
  transition: background .5s var(--ease), color .5s var(--ease),
              transform .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover { background: transparent; color: var(--mauve-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hair);
}
.btn--ghost:hover { border-color: var(--mauve); color: var(--mauve-deep); background: transparent; }

.textlink {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mauve-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  position: relative;
  padding-bottom: 4px;
}
.textlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--mauve);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.textlink:hover::after { transform: scaleX(1); }
.textlink .arrow { transition: transform .5s var(--ease); }
.textlink:hover .arrow { transform: translateX(5px); }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  transition: padding .5s var(--ease), background .5s var(--ease),
              box-shadow .5s var(--ease), border-color .5s var(--ease);
  background: rgba(251,247,240,0.72);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hair);
}
.brand {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--mauve);
  margin-top: 5px;
  padding-left: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  white-space: nowrap;
  transition: color .4s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--mauve);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .45s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; }

/* ---- Dropdown submenu (Teste de Estilo) ---- */
.has-sub { position: relative; }
.sub-toggle {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: color .4s var(--ease);
}
.sub-toggle .caret {
  font-size: 0.68em;
  color: var(--mauve);
  transition: transform .4s var(--ease);
}
.has-sub:hover .sub-toggle,
.has-sub.open .sub-toggle { color: var(--ink); }
.has-sub:hover .caret,
.has-sub.open .caret { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: 326px;
  background: var(--paper);
  border: 1px solid var(--hair);
  box-shadow: 0 38px 80px -44px rgba(46,40,35,0.55);
  padding: 1.7rem 1.7rem 1.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .42s var(--ease), transform .42s var(--ease), visibility .42s;
  z-index: 95;
}
.submenu::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--mauve));
}
.submenu::after {            /* invisible hover bridge across the gap */
  content: "";
  position: absolute;
  left: 0; right: 0; top: -20px;
  height: 20px;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu,
.has-sub.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.submenu-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
}
.submenu-title {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.08;
  color: var(--ink);
  margin: 0.5rem 0 0.6rem;
}
.submenu-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.3rem;
}
.nav-links a.submenu-btn {
  width: 100%;
  justify-content: center;
  --b: var(--ink);
  color: #fff;
}
.nav-links a.submenu-btn:hover { color: var(--ink); }
.submenu-note {
  display: block;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1rem;
}

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 30px; height: 22px;
  position: relative; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 3px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 17px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--gutter) 4rem;
}
.hero-text .eyebrow { margin-bottom: 2rem; }
.hero h1 {
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero h1 .script {
  display: block;
  font-style: italic;
  color: var(--mauve);
  font-weight: 400;
}
.hero-tag {
  max-width: 30ch;
  margin: 2rem 0 2.6rem;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.7;
  color: var(--ink-soft);
}
.hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }

.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}
.hero-media image-slot { width: 100%; height: 100%; }
.hero-media .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,40,35,0) 55%, rgba(46,40,35,0.34) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-media .frame-note {
  position: absolute;
  left: 1.6rem; bottom: 1.6rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ivory);
  letter-spacing: 0.02em;
  z-index: 3;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  left: var(--gutter); bottom: 2rem;
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint);
  z-index: 4;
}
.scroll-cue .line {
  width: 46px; height: 1px; background: var(--hair-gold);
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--mauve);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateX(-100%); }
  60%,100% { transform: translateX(100%); }
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal.settled { transition: none !important; opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { padding: var(--section-y) 0; }
.sobre .wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.sobre-media { position: relative; }
.sobre-media image-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
}
.sobre-media .sobre-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sobre-media .tag {
  position: absolute;
  bottom: -22px; right: -16px;
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 1.1rem 1.5rem;
  box-shadow: 0 26px 50px -30px rgba(46,40,35,0.4);
}
.sobre-media .tag b {
  font-family: var(--display); font-style: italic;
  font-size: 1.5rem; font-weight: 500; color: var(--mauve-deep);
  display: block; line-height: 1;
}
.sobre-media .tag span {
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint);
}
.sobre-body .section-title { margin: 1.6rem 0 1.8rem; }
.sobre-body p + p { margin-top: 1.2rem; }
.facets {
  list-style: none; margin: 2.4rem 0 0; padding: 1.8rem 0 0;
  border-top: 1px solid var(--hair);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}
.facets li {
  font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 0.7rem;
}
.facets li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex: none;
}
.signature {
  margin-top: 2.4rem;
  font-family: var(--display); font-style: italic;
  font-size: 2rem; color: var(--mauve-deep); line-height: 1;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  padding: var(--section-y) 0;
  background: var(--ivory-deep);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.sec-head { text-align: center; max-width: 44rem; margin: 0 auto clamp(3rem,6vw,5rem); }
.sec-head .eyebrow { justify-content: center; }
.sec-head .section-title { margin-top: 1.4rem; }
.sec-head p { margin: 1.4rem auto 0; max-width: 38rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.svc {
  background: var(--ivory);
  padding: clamp(2rem, 3.2vw, 3.2rem) clamp(1.6rem, 2.6vw, 2.6rem);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: background .6s var(--ease), transform .6s var(--ease);
  position: relative;
}
.svc:hover { background: var(--paper); }
.svc-num {
  font-family: var(--display);
  font-size: 0.95rem; font-style: italic;
  color: var(--gold); letter-spacing: 0.1em;
  margin-bottom: auto;
}
.svc-ico { color: var(--mauve); margin: 1.2rem 0 1.4rem; }
.svc-ico svg { width: 34px; height: 34px; }
.svc h3 {
  font-size: 1.7rem; line-height: 1.12; font-weight: 400;
  margin-bottom: 0.7rem;
}
.svc p { font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.svc::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--mauve);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.svc:hover::after { transform: scaleX(1); }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.processo { padding: var(--section-y) 0; }
.steps {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  position: relative;
}
.steps::before {
  content: ""; position: absolute;
  top: 21px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair-gold) 12%, var(--hair-gold) 88%, transparent);
}
.step { position: relative; padding-top: 0; }
.step-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--hair-gold);
  display: grid; place-items: center;
  font-family: var(--display); font-style: italic;
  font-size: 1.1rem; color: var(--mauve-deep);
  position: relative; z-index: 2; margin-bottom: 1.6rem;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.step:hover .step-dot { background: var(--mauve-deep); color: var(--ivory); border-color: var(--mauve-deep); }
.step h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 0.6rem; }
.step .when {
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem; display: block;
}
.step p { font-size: 0.92rem; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* ============================================================
   GALERIA — bastidores
   ============================================================ */
.galeria {
  padding: var(--section-y) 0;
  background: var(--ivory-deep);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.galeria .sec-head { margin-bottom: clamp(2.5rem,5vw,4rem); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.6rem, 1.2vw, 1rem);
  max-width: 1120px;
  margin: 0 auto;
}
.gal-grid figure { margin: 0; position: relative; overflow: hidden; background: var(--blush); aspect-ratio: 4 / 5; }
.gal-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.gal-grid figure:hover img { transform: scale(1.05); }
.gal-grid figure::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  pointer-events: none;
}

/* ============================================================
   TESTE DE ESTILO — convite
   ============================================================ */
.teste-cta { padding: var(--section-y) 0; background: var(--ivory); }
.teste-inner {
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(158deg, var(--blush) 0%, var(--champagne) 100%);
  border: 1px solid var(--hair-gold);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.6rem, 6vw, 5.5rem);
  position: relative;
}
.teste-inner::before,
.teste-inner::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--hair-gold);
}
.teste-inner::before { left: 16px; top: 16px; border-right: 0; border-bottom: 0; }
.teste-inner::after  { right: 16px; bottom: 16px; border-left: 0; border-top: 0; }
.teste-inner .eyebrow { justify-content: center; }
.teste-inner .section-title { margin: 1.4rem 0 1.6rem; }
.teste-inner .lead { max-width: 48ch; margin: 0 auto 2.4rem; }
.teste-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.teste-note {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--blush) 0%, var(--ivory-deep) 100%);
  border-top: 1px solid var(--hair);
}
.depo .sec-head { margin-bottom: clamp(2.5rem,5vw,4rem); }

/* rating badge */
.rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin: 1.8rem auto 0;
  padding: 1.3rem 2rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--hair);
}
.rating .stars { display: flex; gap: 0.28rem; color: var(--gold); }
.rating .stars svg { width: 18px; height: 18px; }
.rating .score {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.rating .score b { font-weight: 600; }
.rating a {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--hair-gold);
  padding-bottom: 2px;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.rating a:hover { color: var(--mauve); border-color: var(--mauve); }

.quote blockquote.short { font-size: 1.18rem; }
.depo-more { text-align: center; margin-top: clamp(2.2rem, 4vw, 3rem); }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
}
.quote {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: clamp(2rem, 3vw, 2.8rem);
  display: flex; flex-direction: column;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: 0 36px 60px -40px rgba(46,40,35,0.4); }
.quote .mark {
  font-family: var(--display); font-style: italic;
  font-size: 3.4rem; color: var(--blush-deep); line-height: 0.6; height: 0.5em;
}
.quote blockquote {
  margin: 1.2rem 0 1.8rem;
  font-family: var(--display);
  font-size: 1.32rem; line-height: 1.5; font-weight: 400;
  color: var(--ink);
}
.quote blockquote em { color: var(--mauve-deep); font-style: italic; }
.quote .who {
  margin-top: auto; display: flex; align-items: center; gap: 0.95rem;
  border-top: 1px solid var(--hair); padding-top: 1.3rem;
}
.quote .who .avatar {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blush);
  border: 1px solid var(--hair-gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--mauve-deep);
  line-height: 1;
}
.quote .who .who-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.quote .who b { font-family: var(--display); font-size: 1.15rem; font-weight: 500; display: block; line-height: 1.1; }
.quote .who span { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { padding: var(--section-y) 0 0; }
.contato .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contato-intro .section-title { margin: 1.5rem 0 1.6rem; }
.contato-intro .lead { max-width: 34ch; }
.contato-meta {
  margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid var(--hair);
  display: grid; gap: 1.4rem;
}
.contato-meta .row { display: grid; gap: 0.2rem; }
.contato-meta .k { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-faint); }
.contato-meta .v { font-family: var(--display); font-size: 1.4rem; color: var(--ink); }
.contato-meta a.v { text-decoration: none; transition: color .4s var(--ease); }
.contato-meta a.v:hover { color: var(--mauve-deep); }

form.card {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: clamp(1.8rem, 3.4vw, 3rem);
  box-shadow: 0 40px 70px -50px rgba(46,40,35,0.5);
}
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.7rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair);
  padding: 0.6rem 0;
  transition: border-color .4s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--mauve); }
.field textarea { resize: vertical; min-height: 84px; line-height: 1.6; }
.field.invalid input, .field.invalid textarea { border-color: #B5524F; }
.field .err {
  font-size: 0.7rem; color: #B5524F; margin-top: 0.4rem;
  height: 0; overflow: hidden; opacity: 0; transition: opacity .3s, height .3s;
}
.field.invalid .err { height: auto; opacity: 1; }
form.card .btn { width: 100%; justify-content: center; margin-top: 0.6rem; }
.form-ok {
  display: none;
  text-align: center; padding: 2rem 0;
}
.form-ok.show { display: block; animation: fadeIn .8s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.form-ok .mk { font-family: var(--display); font-style: italic; font-size: 2rem; color: var(--mauve-deep); }
.form-ok p { color: var(--ink-soft); margin: 0.6rem 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: var(--section-y);
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.2rem;
}
.footer .wrap { display: grid; gap: 2.4rem; }
.footer-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.14); padding-bottom: 2.4rem;
}
.footer-brand { font-family: var(--display); font-size: clamp(2.6rem,6vw,4.6rem); font-weight: 300; line-height: 0.95; letter-spacing: 0.04em; }
.footer-brand span { font-style: italic; color: var(--gold-soft); }
.footer-nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,0.6); transition: color .4s var(--ease);
}
.footer-nav a:hover { color: var(--gold-soft); }

.footer-social { display: flex; gap: 0.9rem; }
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  transition: color .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.footer-social a svg { width: 19px; height: 19px; }
.footer-social a:hover {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-3px);
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.42);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa {
  position: fixed;
  right: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 2.2rem);
  z-index: 90;
  display: inline-flex; align-items: center; gap: 0;
  background: #2E2823;
  color: var(--ivory);
  border-radius: 999px;
  padding: 0.95rem;
  text-decoration: none;
  box-shadow: 0 0 0 4px var(--ivory), 0 16px 38px -14px rgba(46,40,35,0.7);
  transition: gap .5s var(--ease), padding .5s var(--ease), background .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
  overflow: hidden;
}
.wa svg { width: 26px; height: 26px; flex: none; }
.wa .wa-label {
  max-width: 0; opacity: 0;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap;
  transition: max-width .55s var(--ease), opacity .4s var(--ease), margin .5s var(--ease);
}
.wa:hover { background: var(--mauve-deep); gap: 0.7rem; transform: translateY(-3px); box-shadow: 0 0 0 4px var(--ivory), 0 22px 46px -14px rgba(46,40,35,0.8); }
.wa:hover .wa-label { max-width: 200px; opacity: 1; }
.wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 1px solid rgba(203,180,138,0.5);
  animation: pulse 3s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%,100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa::before, .scroll-cue .line::after { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; max-width: 40rem; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.6rem 2rem; }
  .steps::before { display: none; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
}
@media (max-width: 920px) {
  /* tablet: ease the hero type before it stacks */
  .hero h1 { font-size: clamp(3.4rem, 8vw, 6rem); }
}
@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    background: var(--ivory-deep);
    padding: 4rem 2.4rem;
    transform: translateX(100%);
    transition: transform .55s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(46,40,35,0.4);
    overflow-y: auto;
  }
  body.menu-open .nav-links { transform: none; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.12em; }
  .nav-links .nav-cta { margin-top: 1rem; }
  .nav-toggle { display: block; z-index: 85; }

  /* submenu becomes an inline expander inside the drawer */
  .has-sub { width: 100%; }
  .sub-toggle {
    font-size: 1rem;
    letter-spacing: 0.12em;
    width: 100%;
    justify-content: space-between;
  }
  .submenu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 1rem 0 0.3rem;
    display: none;
  }
  .has-sub.open .submenu { display: block; }
  .submenu::before, .submenu::after { display: none; }
  .submenu-title { font-size: 1.35rem; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding-top: 7.5rem; padding-bottom: 3rem; order: 2; }
  .hero-media { order: 1; min-height: 56vh; }
  .hero-media image-slot { aspect-ratio: auto; }
  .scroll-cue { display: none; }

  .sobre .wrap { grid-template-columns: 1fr; gap: 3.5rem; }
  .sobre-media { max-width: 26rem; }
  .contato .wrap { grid-template-columns: 1fr; }

  /* footer stacks cleanly */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.8rem; }
  .footer-nav { gap: 1.1rem 1.4rem; }
}
@media (max-width: 560px) {
  :root { --gutter: 1.3rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; max-width: 26rem; }
  .facets { grid-template-columns: 1fr; }
  .footer-top { align-items: flex-start; }
  .svc { min-height: 0; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }

  /* hero type + spacing for phones */
  .hero h1 { font-size: clamp(3rem, 13vw, 4.2rem); }
  .hero-tag { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
  .hero-actions .textlink { justify-content: center; }

  /* testimonials + rating badge */
  .rating { width: 100%; padding: 1.2rem 1.2rem 1.3rem; }
  .rating .score { font-size: 0.98rem; text-align: center; white-space: normal; }
  .quote blockquote { font-size: 1.2rem; }
  .quote blockquote.short { font-size: 1.12rem; }

  /* contato meta links wrap */
  .contato-meta .v { font-size: 1.25rem; }
  .contato-meta .v[style] { flex-direction: column; gap: 0.6rem !important; align-items: flex-start; }

  /* whatsapp: keep it compact, never expand label off-screen */
  .wa:hover .wa-label { max-width: 0; opacity: 0; }
  .wa:hover { gap: 0; }

  .footer-brand { font-size: clamp(2.4rem, 14vw, 3.4rem); }
}
@media (max-width: 380px) {
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.4rem); }
  .section-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .submenu { width: 100%; }
}
