/* ==========================================================================
   Laís Maria — Folha de estilo principal
   Identidade visual baseada no Manual de Marca oficial.
   Cores, tipografia e formas seguem o brand book.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tipografia
   - Títulos: Hatton (premium). Fallback aproximado: Playfair Display.
     -> Para usar a fonte oficial, embuta Hatton via @font-face e troque
        a primeira família de --font-display.
   - Corpo: Glacial Indifference (gratuita). Fallback geométrico: Jost.
     -> Embuta Glacial Indifference via @font-face e coloque-a no início
        de --font-body assim que tiver os arquivos.
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* Exemplo de como embutir as fontes oficiais (descomente quando tiver os arquivos):
@font-face {
  font-family: 'Hatton';
  src: url('/assets/fonts/Hatton-Medium.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('/assets/fonts/GlacialIndifference-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
*/

/* --------------------------------------------------------------------------
   Tokens / variáveis de marca
   -------------------------------------------------------------------------- */
:root {
  /* Paleta oficial */
  --navy-deep: #184259;   /* Azul-marinho principal (2182 C) */
  --navy-mid:  #38596B;   /* Azul médio (2377 C) */
  --navy-soft: #6F96AD;   /* Azul claro (2157 C) */
  --terra:     #C96431;   /* Terracota destaque (7583 C) */
  --terra-soft:#D88665;   /* Terracota claro / salmão (2432 C) */

  /* Neutros */
  --white:     #ffffff;
  --offwhite:  #faf7f4;   /* off-white quente */
  --cream:     #f3ede7;   /* faixa alternada */
  --ink:       #1f3340;   /* texto corrido (cinza-azulado escuro) */
  --muted:     #5c7180;

  /* Tipografia */
  --font-display: 'Hatton', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Glacial Indifference', 'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 20px rgba(24, 66, 89, 0.06);
  --shadow-md: 0 14px 40px rgba(24, 66, 89, 0.10);
  --shadow-lg: 0 26px 60px rgba(24, 66, 89, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 78px;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--terra); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--terra-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.5em; }

:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   Utilitários de layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.2rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.bg-cream { background: var(--cream); }
.bg-offwhite { background: var(--offwhite); }
.bg-navy { background: var(--navy-deep); color: rgba(255,255,255,0.88); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.9rem;
}
.bg-navy .eyebrow { color: var(--terra-soft); }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin-bottom: 0.4em;
}

.lead { font-size: 1.18rem; color: var(--muted); }
.bg-navy .lead { color: rgba(255,255,255,0.78); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 60ch; }
.measure-narrow { max-width: 48ch; }

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.9em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(201, 100, 49, 0.28);
}
.btn--primary:hover { background: var(--terra-soft); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--navy-deep);
  border-color: rgba(24, 66, 89, 0.25);
}
.btn--ghost:hover { background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }

.bg-navy .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.bg-navy .btn--ghost:hover { background: var(--white); color: var(--navy-deep); }

.btn--light { background: var(--white); color: var(--navy-deep); }
.btn--light:hover { background: var(--offwhite); color: var(--navy-deep); }

.btn--lg { padding: 1em 2.4em; font-size: 1.05rem; }

.btn .icon { width: 1.1em; height: 1.1em; }

/* --------------------------------------------------------------------------
   Cabeçalho / navegação
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(24, 66, 89, 0.07);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(250, 247, 244, 0.96); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__symbol { width: 40px; height: 40px; color: var(--navy-deep); flex: none; }
.brand__symbol .accent { color: var(--terra); }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--terra);
  line-height: 1;
  font-weight: 600;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-top: 3px;
}
/* Logo horizontal oficial no cabeçalho */
.brand__logo { height: clamp(40px, 5.6vw, 50px); width: auto; display: block; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  font-weight: 500;
  color: var(--navy-deep);
  position: relative;
  padding-block: 0.4rem;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--terra);
  transition: width 0.3s var(--ease);
}
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--terra); }
.nav__menu a:hover::after, .nav__menu a[aria-current="page"]::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 1.4rem; }
.nav__social { display: flex; align-items: center; gap: 0.9rem; }
.nav__social a { color: var(--navy-deep); display: inline-flex; }
.nav__social a:hover { color: var(--terra); transform: translateY(-2px); }
.nav__social svg { width: 20px; height: 20px; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--navy-deep);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(216, 134, 101, 0.18), transparent 60%),
    linear-gradient(180deg, var(--offwhite), var(--cream));
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4rem); margin-bottom: 0.35em; }
.hero__subtitle { font-size: 1.3rem; color: var(--navy-mid); margin-bottom: 1.8rem; font-style: italic; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --------------------------------------------------------------------------
   Placeholders de imagem (substituir por fotos reais)
   -------------------------------------------------------------------------- */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(120% 120% at 25% 15%, rgba(216,134,101,0.55), transparent 55%),
    linear-gradient(150deg, var(--navy-mid), var(--navy-deep) 70%, var(--terra));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 320px;
  padding: 1.5rem;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url('/assets/img/pattern.svg');
  background-size: 150px;
  color: rgba(255,255,255,0.35);
  opacity: 0.18;
  pointer-events: none;
}
.ph__label {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.5em 1em;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(2px);
}
.ph--portrait { aspect-ratio: 4 / 5; min-height: 0; }
.ph--wide { aspect-ratio: 16 / 10; min-height: 0; }
.ph--card { aspect-ratio: 3 / 2; min-height: 0; border-radius: var(--radius); }
.ph--round { border-radius: 50%; aspect-ratio: 1; min-height: 0; }
.ph .ph__icon { position: relative; z-index: 1; width: 56px; height: 56px; opacity: 0.9; margin-bottom: 0.8rem; }

/* Foto/imagem real (substitui os placeholders .ph) */
.media-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Sobre
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse { grid-template-columns: 1.1fr 0.9fr; }
.split--reverse .split__media { order: 2; }

/* --------------------------------------------------------------------------
   Cartões / grades
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(24, 66, 89, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 1.3rem; }

.icon-badge {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(201,100,49,0.14), rgba(216,134,101,0.10));
  color: var(--terra);
  margin-bottom: 1.1rem;
}
.icon-badge svg { width: 28px; height: 28px; }

/* Lista de serviços (chips) */
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; list-style: none; padding: 0; }
.service-list li {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--white);
  border: 1px solid rgba(24,66,89,0.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--navy-deep);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.service-list li:hover { transform: translateY(-3px); border-color: rgba(201,100,49,0.4); }
.service-list .num {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy-deep); color: var(--white);
  font-family: var(--font-display); font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Depoimentos (carrossel)
   -------------------------------------------------------------------------- */
.testimonials { position: relative; }
.testi-track { overflow: hidden; }
.testi-slides { display: flex; transition: transform 0.5s var(--ease); }
.testi-slide { flex: 0 0 100%; padding: 0.5rem; }
.quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,100,49,0.25);
  position: absolute;
  top: 0.2em; left: 0.4em;
}
.quote p { font-size: 1.12rem; font-style: italic; color: var(--ink); position: relative; z-index: 1; }
.quote__author { margin-top: 1.6rem; }
.quote__author cite { font-style: normal; }
.quote__author cite strong { display: block; font-weight: 600; color: var(--navy-deep); font-size: 1.05rem; }
.quote__author .role { display: block; font-size: 0.9rem; color: var(--muted); }
.testi-controls { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.8rem; }
.testi-dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(24,66,89,0.22);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.testi-dot.is-active { background: var(--terra); transform: scale(1.25); }

/* --------------------------------------------------------------------------
   CTA destaque
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 400px at 85% 110%, rgba(216,134,101,0.30), transparent 60%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('/assets/img/pattern.svg');
  background-size: 170px;
  color: rgba(255,255,255,0.5);
  opacity: 0.12;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.82); }

/* faixa de destaque fina */
.highlight-strip {
  background: var(--terra);
  color: var(--white);
  text-align: center;
  padding: 1.4rem 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .ph--card { border-radius: 0; }
.post-card__body { padding: 1.6rem 1.6rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 0.7rem; }
.tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--terra);
  background: rgba(201,100,49,0.10);
  padding: 0.3em 0.8em; border-radius: var(--radius-pill);
}
.post-card h3 { font-size: 1.35rem; margin-top: 0.7rem; }
.post-card h3 a { color: var(--navy-deep); }
.post-card h3 a:hover { color: var(--terra); }
.post-card .read-more { margin-top: auto; font-weight: 600; }

/* Cabeçalho de página interna */
.page-hero {
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(216,134,101,0.16), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--offwhite));
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--terra); }

/* Artigo */
.article { max-width: 760px; margin-inline: auto; }
.article__lead { font-size: 1.2rem; color: var(--muted); }
.prose p { margin-bottom: 1.4em; }
.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.8;
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--terra);
}
.prose strong { color: var(--navy-deep); }
.prose blockquote {
  margin: 1.8em 0;
  padding: 0.4em 0 0.4em 1.4em;
  border-left: 4px solid var(--terra);
  font-style: italic;
  color: var(--navy-mid);
}
.signoff { font-family: var(--font-display); font-style: italic; color: var(--terra); font-size: 1.4rem; }

.post-nav { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; }

/* --------------------------------------------------------------------------
   FAQ (accordion)
   -------------------------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(24,66,89,0.08);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-deep);
  padding: 1.3rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q .chev { flex: none; transition: transform 0.3s var(--ease); color: var(--terra); }
.faq-item.is-open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a__inner { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Contato
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-method { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-method .icon-badge { margin-bottom: 0; flex: none; }
.contact-method strong { display: block; color: var(--navy-deep); font-size: 1.05rem; }
.contact-method a, .contact-method span { color: var(--muted); }

.form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 600; color: var(--navy-deep); margin-bottom: 0.45rem; font-size: 0.95rem; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.85em 1em;
  border: 1.5px solid rgba(24,66,89,0.15);
  border-radius: 14px;
  background: var(--offwhite);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(201,100,49,0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.form__note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.form-status { margin-top: 1rem; font-weight: 600; }
.form-status.is-ok { color: #2f7d4f; }

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */
.footer-cta { text-align: center; }
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.74); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer .brand__name { color: var(--terra-soft); }
.site-footer .brand__symbol { color: var(--white); }
.footer-about p { color: rgba(255,255,255,0.66); max-width: 34ch; }
/* Selo circular oficial (terracota) no rodapé */
.footer-seal { width: clamp(120px, 14vw, 150px); height: auto; display: block; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.74); }
.footer-col a:hover { color: var(--terra-soft); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: center; }
.footer-contact svg { width: 18px; height: 18px; color: var(--terra-soft); flex: none; }
.footer-social { display: flex; gap: 0.9rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--terra); transform: translateY(-3px); color: var(--white); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.6rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* --------------------------------------------------------------------------
   Botão flutuante de WhatsApp
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* --------------------------------------------------------------------------
   Animações ao rolar
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid, .split, .split--reverse, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .hero__media, .split__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__menu, .nav__social { display: none; }
  .nav__toggle { display: inline-flex; }

  /* Menu mobile */
  .nav__drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    background: var(--offwhite);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 200;
    padding: 5rem 2rem 2rem;
    display: flex; flex-direction: column; gap: 1.4rem;
  }
  body.menu-open .nav__drawer { transform: translateX(0); }
  .nav__drawer a { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy-deep); }
  .nav__drawer a:hover { color: var(--terra); }
  .nav__drawer .drawer-social { display: flex; gap: 1.2rem; margin-top: auto; }
  .nav__drawer .drawer-social a { color: var(--navy-deep); }
  .nav__drawer .drawer-social svg { width: 24px; height: 24px; }
  .drawer-close { position: absolute; top: 1.4rem; right: 1.4rem; background: none; border: 0; cursor: pointer; color: var(--navy-deep); }
  .drawer-close svg { width: 28px; height: 28px; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(24,66,89,0.4);
    opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease); z-index: 150;
  }
  body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }

  .grid--2, .grid--3, .grid--4, .service-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; }
}

/* Esconde drawer em telas grandes */
@media (min-width: 761px) {
  .nav__drawer, .nav-backdrop { display: none; }
}

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