/* ============================================================
   HARMONIZZE CENTRO ESTÉTICO — Design System
   Serif: Cormorant Garamond · Sans: Plus Jakarta Sans
   Palette derived directly from the brand logo (warm terracotta/blush)
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* ---------- Design Tokens ---------- */
:root {
  /* Color — sampled and derived directly from the Harmonizze logo card */
  --cream: #FBF5EF;
  --cream-deep: #F2E4D6;
  --surface: #FFFFFF;

  --blush: #C89F83;        /* exact logo background tone */
  --blush-mid: #96684A;    /* accent / links / gradient start */
  --blush-deep: #7A5239;   /* footer, gradient end, hover */
  --blush-pale: #EAD9CB;   /* borders, subtle tints */

  --ink: #3A281D;          /* primary text */
  --ink-soft: #6B5646;     /* secondary text */
  --stone: #7D6555;        /* tertiary / labels */

  --border: rgba(58, 40, 29, 0.12);
  --border-strong: rgba(150, 104, 74, 0.45);

  --white: #FFFFFF;
  --gradient-blush: linear-gradient(135deg, var(--blush-mid) 0%, var(--blush-deep) 100%);
  --gradient-blush-panel: linear-gradient(155deg, var(--blush) 0%, var(--blush-mid) 100%);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1240px;
  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --gutter: clamp(1.5rem, 5vw, 3rem);
}

/* ---------- Base ---------- */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

:focus-visible {
  outline: 1.5px solid var(--blush-mid);
  outline-offset: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

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

h1 { font-size: clamp(2.75rem, 6.2vw, 5.4rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { color: var(--ink-soft); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 46ch;
}

/* Eyebrow label — echoes the logo's own wide-tracked caps typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85em;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--blush-mid);
}

.italic-accent {
  font-style: italic;
  color: var(--blush-mid);
}

/* ---------- Signature motif: the Symmetry Axis ----------
   A thin line representing facial/proportional balance — the founding
   idea behind "harmonização". Used as a quiet divider between sections. */
.axis-divider {
  position: relative;
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.axis-divider::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
  transform-origin: center;
  transition: transform 1.1s var(--ease);
}
.js .axis-divider::before { transform: scaleY(0); }
.js .axis-divider.in-view::before { transform: scaleY(1); }
.axis-divider .axis-mark {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--blush-mid);
  background: var(--cream);
  transition: opacity 0.6s var(--ease) 0.4s;
}
.js .axis-divider .axis-mark { opacity: 0; }
.js .axis-divider.in-view .axis-mark { opacity: 1; }

.section-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.section-rule::after {
  content: '';
  position: absolute;
  top: 0; left: calc(50% - 70px);
  height: 1px; width: 140px;
  background: var(--gradient-blush);
  transition: width 1.2s var(--ease), left 1.2s var(--ease);
}
.js .section-rule::after { left: 50%; width: 0; }
.js .section-rule.in-view::after { width: 140px; left: calc(50% - 70px); }

/* ---------- Buttons ---------- */
.btn {
  --btn-h: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: var(--btn-h);
  padding-inline: 1.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease), color 0.45s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--gradient-blush);
  color: var(--white);
  box-shadow: 0 10px 28px -10px rgba(122, 82, 57, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(122, 82, 57, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--blush-mid);
  color: var(--blush-mid);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush-mid);
  position: relative;
  padding-bottom: 3px;
}
.text-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--blush-mid);
  transform: scaleX(0.3);
  transform-origin: left;
  opacity: 0.5;
  transition: transform 0.4s var(--ease);
}
.text-link:hover::after { transform: scaleX(1); opacity: 1; }
.text-link svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.25rem;
  background: rgba(251, 245, 239, 0.88);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  padding-block: 0.85rem;
  background: rgba(251, 245, 239, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px -16px rgba(58, 40, 29, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img { width: 40px; height: auto; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.brand-type span {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--stone);
  margin-top: 0.35rem;
}

.main-nav { display: flex; align-items: center; gap: 2.4rem; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-soft);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--blush-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--ink);
}
.nav-toggle span { position: relative; width: 16px; height: 10px; }
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 1px; background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span::before { top: 0; }
.nav-toggle span::after { top: 9px; }
.nav-toggle[aria-expanded="true"] span::before { top: 4.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 4.5px; transform: rotate(-45deg); }

/* ---------- Hero (centered, image-free) ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, var(--blush-pale) 0%, transparent 62%),
    radial-gradient(ellipse 55% 50% at 15% 100%, rgba(200, 159, 131, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 85% 100%, rgba(150, 104, 74, 0.14) 0%, transparent 60%),
    var(--cream);
}

.hero-content { max-width: 760px; margin-inline: auto; text-align: center; }

.hero h1 { margin-bottom: 1.7rem; }
.hero h1 em {
  font-style: italic;
  color: var(--blush-mid);
  font-weight: 400;
}

.hero .lede { max-width: 52ch; margin-inline: auto; margin-bottom: 2.6rem; }

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3.6rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 640px;
  margin-inline: auto;
}
.hero-meta-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
.hero-meta-item strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--blush-mid); font-weight: 500; }
.hero-meta-item span { font-size: 0.76rem; color: var(--stone); letter-spacing: 0.04em; max-width: 16ch; }

.scroll-cue {
  position: absolute;
  bottom: 2.4rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; letter-spacing: 0.28em; color: var(--stone);
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--blush-mid), transparent); animation: scrollPulse 2.2s var(--ease-soft) infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Page Hero (inner pages, centered) ---------- */
.page-hero {
  position: relative;
  padding-top: 11rem;
  padding-bottom: var(--section-pad);
  border-bottom: 1px solid var(--border);
  text-align: center;
  background:
    radial-gradient(ellipse 55% 60% at 50% 0%, var(--blush-pale) 0%, transparent 65%),
    var(--cream);
}
.page-hero .eyebrow, .page-hero h1, .page-hero .lede { margin-inline: auto; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-top: 1.4rem; max-width: 56ch; }
.page-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

/* ---------- Trust bar (centered) ---------- */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream-deep);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2.4rem 1.6rem;
  border-left: 1px solid var(--border);
}
.trust-item:first-child { border-left: none; }
.trust-item svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--blush-mid); }
.trust-item span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.35; font-weight: 400; max-width: 22ch; }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-pad); }
.section-alt { background: var(--cream-deep); }
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  margin-bottom: 3.6rem;
}
.section-head .lede { margin-inline: auto; margin-bottom: 0; }
.section-head-center { text-align: center; align-items: center; flex-direction: column; }
.section-head-center .lede { margin-inline: auto; }

/* ---------- Service Cards (index preview, centered) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.5s var(--ease);
}
.service-card:hover { background: var(--cream-deep); }
.service-card .tag {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-bottom: 1.4rem;
}
.service-card h3 { margin-bottom: 0.9rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 1.6rem; flex-grow: 1; }

/* full services listing (servicos.html), centered content */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-row {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2.4rem;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), background 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
.service-row:hover {
  border-color: var(--border-strong);
  background: var(--cream-deep);
  transform: translateY(-4px);
}
.service-row-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.service-row .tag {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--border-strong);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.service-row p { font-size: 0.93rem; margin-bottom: 1.5rem; flex-grow: 1; max-width: 42ch; }

.service-lead {
  grid-column: 1 / -1;
  background: var(--cream-deep);
  border-color: var(--border-strong);
}
.service-lead .lede { font-size: 1rem; margin-inline: auto; }

.service-group-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
}
.service-group-title .rule { width: 60px; height: 1px; background: var(--gradient-blush); margin-top: 0.4rem; }
.service-group-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--blush-mid); font-style: italic; }

/* ---------- About teaser / split blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.split-media::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--border-strong);
  transform: translate(16px, 16px);
  z-index: -1;
}
.split-media-frame { position: relative; }
.split-panel {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-blush-panel);
  border: 1px solid var(--border);
}
.split-panel .monogram-watermark { width: 46%; opacity: 0.95; }

.split p { margin-bottom: 1.2rem; }
.split p:last-of-type { margin-bottom: 2rem; }

/* ---------- Values / Pillars (centered) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}
.value-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.value-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--blush-mid);
  display: block;
  margin-bottom: 1.2rem;
}
.value-card h3 { margin-bottom: 0.8rem; }
.value-card p { font-size: 0.9rem; max-width: 26ch; }

/* ---------- Timeline (real sequence: client journey, centered) ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.journey::before {
  content: '';
  position: absolute;
  top: 13px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.journey-step { padding-inline: 1rem; position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.journey-step .dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--blush-mid);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: var(--blush-mid);
  margin-bottom: 1.6rem;
  position: relative; z-index: 1;
}
.journey-step h4 { margin-bottom: 0.7rem; }
.journey-step p { font-size: 0.88rem; max-width: 24ch; }

/* ---------- Testimonials (centered) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.testimonial-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-card .stars { display: flex; gap: 0.25rem; margin-bottom: 1.4rem; }
.testimonial-card .stars svg { width: 14px; height: 14px; color: var(--blush-mid); }
.testimonial-card p { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 1.6rem; flex-grow: 1; }
.testimonial-card cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.05em; color: var(--stone); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding-block: 5.5rem;
  text-align: center;
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-band h2 { margin-bottom: 1.2rem; }
.cta-band .lede { margin-inline: auto; margin-bottom: 2.4rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { padding-top: var(--section-pad); background: var(--blush-deep); color: var(--cream); }
.site-footer h4, .site-footer .brand-type strong { color: var(--cream); }
.site-footer .brand-type span { color: rgba(251, 245, 239, 0.6); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(251, 245, 239, 0.16);
}
.footer-brand .brand { margin-bottom: 1.3rem; }
.footer-brand p { font-size: 0.88rem; max-width: 32ch; margin-bottom: 1.6rem; color: rgba(251, 245, 239, 0.72); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(251, 245, 239, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { border-color: var(--cream); background: rgba(251, 245, 239, 0.1); }

.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251, 245, 239, 0.55); font-family: var(--font-sans); margin-bottom: 1.4rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col a, .footer-col address { font-size: 0.9rem; color: rgba(251, 245, 239, 0.82); font-style: normal; transition: color 0.3s var(--ease-soft); }
.footer-col a:hover { color: var(--cream); }
.footer-col .addr-block { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.8rem;
  font-size: 0.78rem;
  color: rgba(251, 245, 239, 0.55);
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom a { color: rgba(251, 245, 239, 0.55); }
.footer-bottom a:hover { color: var(--cream); }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gradient-blush);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(122, 82, 57, 0.55);
  transition: transform 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 26px; height: 26px; color: var(--white); }

/* ---------- Forms (contato.html) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}
.form-card {
  border: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3.2rem);
  background: var(--surface);
}
.form-card h3, .form-card > p { text-align: center; }
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.65rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--ink);
  padding: 0.75rem 0.1rem;
  font-size: 0.98rem;
  transition: border-color 0.35s var(--ease-soft);
}
.field select { cursor: pointer; }
.field select option { background: var(--surface); color: var(--ink); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--blush-mid);
}
.field input::placeholder, .field textarea::placeholder { color: var(--stone); opacity: 0.75; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field-error {
  font-size: 0.76rem;
  color: #A1402A;
  margin-top: 0.5rem;
  min-height: 1em;
  display: block;
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-bottom-color: #A1402A; }

.form-note { font-size: 0.78rem; color: var(--stone); margin-top: 1.2rem; display: flex; gap: 0.6rem; align-items: flex-start; justify-content: center; text-align: left; }
.form-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--blush-mid); }

.form-status {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border-strong);
  background: var(--blush-pale);
  font-size: 0.86rem;
  color: var(--blush-deep);
  margin-bottom: 1.4rem;
}
.form-status.visible { display: flex; }
.form-status svg { width: 18px; height: 18px; flex-shrink: 0; }

.info-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
  text-align: center;
}
.info-card h4 { margin-bottom: 1.1rem; }
.info-row { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem; text-align: center; }
.info-row:last-child { margin-bottom: 0; }
.info-row svg { width: 19px; height: 19px; color: var(--blush-mid); flex-shrink: 0; }
.info-row span, .info-row address { font-size: 0.92rem; color: var(--ink-soft); font-style: normal; line-height: 1.5; }

.map-embed { width: 100%; aspect-ratio: 16 / 11; border: 1px solid var(--border); filter: sepia(0.15) saturate(0.85) contrast(1.02); }

/* ---------- Reveal animation (JS-controlled) ----------
   Hidden-by-default states only apply once html.js is present (set by an
   inline head script). If JS fails or is blocked, everything below stays
   fully visible instead of disappearing — progressive enhancement, not a
   dependency. */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }

/* ---------- Mobile Nav Drawer ---------- */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(251, 245, 239, 0.98);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-soft), visibility 0.45s;
}
.nav-drawer.open { opacity: 1; visibility: visible; }
.nav-drawer a:not(.btn) { font-family: var(--font-display); font-size: 2rem; font-style: italic; color: var(--ink); }
.nav-drawer .btn { margin-top: 1rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 2.6rem; }
  .journey { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .journey::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2.6rem; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: 2.8rem; }
  .split-media { order: -1; aspect-ratio: 16/10; }
  .split .eyebrow { justify-content: center; }
  .split h2 { text-align: center; }
  .page-hero-grid { gap: 1.5rem; }
  .service-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: clamp(3.5rem, 12vw, 5rem); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: none !important; border-top: 1px solid var(--border); }
  .trust-item:first-child { border-top: none; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-meta { gap: 1.6rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .wa-float { width: 52px; height: 52px; right: 1.1rem; bottom: 1.1rem; }
}
