/* =========================================================================
   Renata Samezima — Nutricionista
   Design system + componentes
   Identidade visual: pasta "Branding RS"
   Paleta oficial .... #f1e7dc (nude) · #b78c83 (rosé) · #805835 / #d4a96b / #f9edb4 (dourado)
   Tipografia ........ Cormorant Garamond (substituta livre de "The Seasons Light") + Montserrat
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Cores da marca */
  --rs-cream: #f1e7dc;
  --rs-cream-soft: #f8f2ec;
  --rs-cream-pale: #fcf9f6;
  --rs-white: #ffffff;

  --rs-rose: #b78c83;          /* oficial — uso decorativo */
  --rs-rose-text: #8e6259;     /* derivada — legível sobre claro (5.2:1) */
  --rs-rose-soft: #e7d5cf;

  --rs-gold-deep: #805835;     /* oficial */
  --rs-gold: #d4a96b;          /* oficial */
  --rs-gold-light: #f9edb4;    /* oficial */
  --rs-gold-gradient: linear-gradient(103deg, #a97a42 0%, #d4a96b 26%, #f9edb4 52%, #d4a96b 76%, #a97a42 100%);
  --rs-gold-gradient-soft: linear-gradient(103deg, #c79a57 0%, #e6c88c 30%, #f9edb4 55%, #d9b478 80%, #c79a57 100%);

  /* Texto */
  --rs-ink: #2a211d;           /* títulos — 15.7:1 no branco */
  --rs-body: #4e413a;          /* corpo   —  9.2:1 no branco */
  --rs-muted: #6e5c53;         /* apoio   —  6.3:1 no branco */

  /* Linhas e superfícies */
  --rs-line: rgba(128, 88, 53, .18);
  --rs-line-soft: rgba(128, 88, 53, .1);
  --rs-surface: #ffffff;

  /* Sombras — quentes, discretas */
  --rs-shadow-xs: 0 1px 2px rgba(74, 49, 32, .05);
  --rs-shadow-sm: 0 2px 10px rgba(74, 49, 32, .06);
  --rs-shadow-md: 0 12px 30px -12px rgba(74, 49, 32, .18);
  --rs-shadow-lg: 0 28px 60px -28px rgba(74, 49, 32, .3);

  /* Tipografia */
  --rs-font-display: "Cormorant Garamond", "Times New Roman", serif;
  --rs-font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--2: clamp(.6875rem, .67rem + .08vw, .75rem);
  --step--1: clamp(.8125rem, .79rem + .12vw, .875rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.0625rem);
  --step-1:  clamp(1.0625rem, 1.02rem + .24vw, 1.1875rem);
  --step-2:  clamp(1.25rem, 1.14rem + .48vw, 1.5rem);
  --step-3:  clamp(1.5rem, 1.29rem + .95vw, 2rem);
  --step-4:  clamp(1.875rem, 1.5rem + 1.7vw, 2.875rem);
  --step-5:  clamp(2.375rem, 1.8rem + 2.6vw, 4rem);

  /* Espaçamento e medidas */
  --space-2xs: .375rem;
  --space-xs: .625rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --section-y: clamp(4.5rem, 3rem + 6.5vw, 8rem);
  --container: 74rem;         /* 1184px */
  --container-narrow: 46rem;  /* 736px  */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 4.25rem;

  /* Formas */
  --radius-xs: .5rem;
  --radius-sm: .875rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;

  /* Movimento */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur-fast: .18s;
  --dur: .32s;
  --dur-slow: .7s;
}

@media (min-width: 60em) {
  :root { --header-h: 5.5rem; }
}

/* -------------------------------------------------------------------------
   2. Reset enxuto
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  background: var(--rs-white);
  color: var(--rs-body);
  font-family: var(--rs-font-body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--rs-font-display);
  color: var(--rs-ink);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .002em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; padding: 0; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--rs-gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

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

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

.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }

.section--cream { background: var(--rs-cream); }
.section--pale { background: var(--rs-cream-pale); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }

.stack > * + * { margin-top: var(--flow, 1.25rem); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 999;
  background: var(--rs-ink);
  color: var(--rs-cream);
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  font-size: var(--step--1);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* -------------------------------------------------------------------------
   4. Tipografia da marca
   ------------------------------------------------------------------------- */

/* Eyebrow — herdado do "NUTRICIONISTA" entre fios dourados do lockup */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-family: var(--rs-font-body);
  font-size: var(--step--2);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rs-gold-deep);
  margin-bottom: var(--space-sm);
}

.eyebrow::before {
  content: "";
  width: clamp(1.75rem, 5vw, 3rem);
  height: 1px;
  flex: none;
  background: var(--rs-gold-gradient);
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: clamp(1.75rem, 5vw, 3rem);
  height: 1px;
  flex: none;
  background: var(--rs-gold-gradient);
}

.headline {
  font-size: var(--step-4);
  font-weight: 300;
  line-height: 1.08;
}

.headline--hero { font-size: var(--step-5); }
.headline--sm { font-size: var(--step-3); }

.headline em {
  font-style: italic;
  color: var(--rs-rose-text);
}

.lede {
  font-size: var(--step-1);
  color: var(--rs-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 46ch;
}

.lede--center { margin-inline: auto; text-align: center; }

.section-head { margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section-head--center { text-align: center; }
.section-head--center .lede { margin-inline: auto; text-align: center; }

.rule {
  width: 5rem;
  height: 2px;
  border: 0;
  border-radius: 2px;
  background: var(--rs-gold-gradient);
  margin-block: var(--space-md);
}
.rule--center { margin-inline: auto; }

/* -------------------------------------------------------------------------
   5. Botões
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  min-height: 3rem;
  padding: .9375rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--rs-font-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  will-change: transform;
}

.btn svg { flex: none; }

/* Primário — o dourado metálico da marca, texto tinta (7.3:1) */
.btn--primary {
  color: var(--rs-ink);
  background-image: var(--rs-gold-gradient-soft);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow: var(--rs-shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-position var(--dur-slow) var(--ease);
}
.btn--primary:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: var(--rs-shadow-lg); }
.btn--primary:active { transform: translateY(0); }

/* Secundário — contorno dourado sobre claro */
.btn--outline {
  color: var(--rs-ink);
  border: 1px solid var(--rs-gold-deep);
  background: transparent;
}
.btn--outline:hover { background: var(--rs-cream); transform: translateY(-2px); }
.btn--outline:active { transform: translateY(0); }

/* Sobre fotografia — vidro claro */
.btn--glass {
  color: var(--rs-ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--rs-shadow-sm);
}
.btn--glass:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--rs-shadow-md); }
.btn--glass:active { transform: translateY(0); }

/* Sobre fundo escuro */
.btn--ghost-light {
  color: var(--rs-cream);
  border: 1px solid rgba(241, 231, 220, .45);
}
.btn--ghost-light:hover { background: rgba(241, 231, 220, .12); border-color: var(--rs-cream); }

.btn--sm { min-height: 2.625rem; padding: .6875rem 1.375rem; font-size: var(--step--2); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.btn-row--center { justify-content: center; }

/* Link de apoio */
.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.75rem;
  color: var(--rs-rose-text);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .04em;
  box-shadow: inset 0 -1px 0 var(--rs-rose-soft);
  transition: color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.link-quiet:hover { color: var(--rs-gold-deep); box-shadow: inset 0 -1px 0 var(--rs-gold); }

/* -------------------------------------------------------------------------
   6. Onda dourada — grafismo da papelaria da marca
   ------------------------------------------------------------------------- */
.wave {
  display: block;
  width: 100%;
  height: clamp(2.75rem, 5.5vw, 5rem);
  pointer-events: none;
}

.wave__fill { fill: var(--wave-fill, var(--rs-cream)); }

.wave__line {
  fill: none;
  stroke: url(#rsGoldStroke);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.wave-divider { background: var(--wave-from, var(--rs-white)); line-height: 0; }

.wave--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
}

/* Espelha a curva horizontalmente (a área preenchida continua embaixo),
   para que dois divisores seguidos não fiquem idênticos. */
.wave--mirror { transform: scaleX(-1); }

/* Marca d'água do monograma */
.watermark { position: relative; isolation: isolate; }
.watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../brand/padrao-monograma.png");
  background-size: 17.5rem;
  opacity: .05;
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   7. Cabeçalho e navegação
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(252, 249, 246, .72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(252, 249, 246, .95);
  border-bottom-color: var(--rs-line-soft);
  box-shadow: var(--rs-shadow-xs);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: var(--header-h);
  transition: height var(--dur) var(--ease);
}

.brand { display: inline-flex; align-items: center; flex: none; }

.brand img {
  height: 2.75rem;
  width: auto;
  transition: height var(--dur) var(--ease);
}

@media (min-width: 60em) {
  .brand img { height: 3.75rem; }
  .site-header.is-scrolled .site-header__inner { height: 4.5rem; }
  .site-header.is-scrolled .brand img { height: 3rem; }
}

.site-nav { display: none; }

@media (min-width: 60em) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.2vw, 2.25rem);
  }
}

.site-nav a {
  position: relative;
  font-size: var(--step--2);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rs-muted);
  padding-block: .625rem;
  transition: color var(--dur) var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .375rem;
  height: 1px;
  background: var(--rs-gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.site-nav a:hover { color: var(--rs-ink); }
.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after { transform: scaleX(1); }
.site-nav a[aria-current="true"] { color: var(--rs-ink); }

.header-cta { display: none; }
@media (min-width: 60em) { .header-cta { display: inline-flex; } }

/* Botão do menu mobile */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  border-radius: var(--radius-pill);
  flex: none;
}
@media (min-width: 60em) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 1.375rem;
  height: 1.5px;
  border-radius: 2px;
  background: var(--rs-ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Painel mobile */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: var(--rs-cream-pale);
  border-bottom: 1px solid var(--rs-line-soft);
  box-shadow: var(--rs-shadow-md);
  padding: var(--space-md) var(--gutter) var(--space-lg);
  display: grid;
  gap: .25rem;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-.75rem);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}

.mobile-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }

@media (min-width: 60em) { .mobile-nav { display: none; } }

.mobile-nav a:not(.btn) {
  display: block;
  padding: .875rem .25rem;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rs-ink);
  border-bottom: 1px solid var(--rs-line-soft);
}

.mobile-nav .btn { margin-top: var(--space-md); }

/* -------------------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------------------- */
/* Mobile: fotografia em bloco + painel creme, unidos pela onda dourada.
   Desktop: fotografia em sangria total com o painel sobreposto à esquerda. */
.hero {
  position: relative;
  margin-top: var(--header-h);
  background: var(--rs-cream);
  isolation: isolate;
}

.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 6;
  background-image: url("https://i.imgur.com/jzpRnKZ.jpeg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.hero__panel {
  position: relative;
  z-index: 2;
  background: var(--rs-cream);
  padding-block: clamp(1.25rem, 4vw, 2rem) clamp(3rem, 9vw, 4.5rem);
}

.hero__content { max-width: 34rem; }

/* No mobile o logotipo do cabeçalho fica logo acima — evitamos repetir a marca */
.hero__mark { display: none; }

@media (min-width: 48em) {
  .hero__mark {
    display: block;
    width: clamp(3.5rem, 6vw, 4.5rem);
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(74, 49, 32, .14));
  }
}

.hero .headline { color: var(--rs-ink); }

.hero__text {
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--rs-body);
  line-height: 1.75;
  max-width: 33ch;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.25rem;
  font-size: var(--step--2);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rs-gold-deep);
  font-weight: 500;
}

.hero__meta li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__meta li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rs-gold);
  flex: none;
}

/* Os dois CTAs da primeira dobra empilham com a mesma largura */
.hero .btn-row { flex-direction: column; align-items: stretch; max-width: 23rem; }

/* Tablet: mesma composição empilhada, com a fotografia panorâmica.
   A profissional está à direita do enquadramento — por isso ancoramos a
   imagem à direita, garantindo que ela nunca seja cortada. */
@media (min-width: 48em) {
  .hero__media {
    aspect-ratio: 16 / 9;
    background-image: url("https://i.imgur.com/OhenjLP.jpeg");
    background-position: right center;
  }
  .hero__panel { padding-block: clamp(2rem, 4vw, 3rem) clamp(4rem, 8vw, 5.5rem); }
}

/* Desktop: fotografia em sangria total com o painel creme sobreposto */
@media (min-width: 62em) {
  .hero { display: grid; min-height: min(86vh, 46rem); }

  .hero__media {
    grid-area: 1 / 1;
    aspect-ratio: auto;
    height: 100%;
  }

  /* Véu creme discreto: a própria fotografia já tem fundo nude à esquerda,
     então basta unificar o tom e assegurar a leitura do texto. */
  .hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
      rgba(241, 231, 220, .84) 0%,
      rgba(241, 231, 220, .74) 42%,
      rgba(241, 231, 220, .34) 60%,
      rgba(241, 231, 220, 0) 78%);
  }

  .hero__panel {
    grid-area: 1 / 1;
    background: transparent;
    display: flex;
    align-items: center;
    padding-block: clamp(3.5rem, 7vw, 6rem) clamp(5rem, 9vw, 7.5rem);
  }
}

/* -------------------------------------------------------------------------
   9. Sobre
   ------------------------------------------------------------------------- */
.about__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 60em) {
  .about__grid { grid-template-columns: minmax(0, 21rem) minmax(0, 1fr); gap: clamp(3rem, 6vw, 6rem); }
}

/* Moldura em arco — a curva orgânica da marca, preservando o retrato
   de corpo inteiro sem cortes bruscos. */
.portrait {
  position: relative;
  width: min(21rem, 76vw);
  margin-inline: auto;
  aspect-ratio: 4 / 5;
}

.portrait__img {
  width: 100%;
  height: 100%;
  border-radius: 999px 999px var(--radius-md) var(--radius-md);
  object-fit: cover;
  object-position: center 20%;
  box-shadow: var(--rs-shadow-lg);
}

/* Fio dourado que acompanha o arco */
.portrait::before {
  content: "";
  position: absolute;
  inset: -.875rem;
  border-radius: 999px 999px calc(var(--radius-md) + .875rem) calc(var(--radius-md) + .875rem);
  border: 1px solid var(--rs-gold);
  opacity: .5;
}

.portrait__seal {
  position: absolute;
  right: -1.25rem;
  bottom: -1rem;
  width: clamp(5rem, 15vw, 6.5rem);
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(74, 49, 32, .18));
}

.about__body { --flow: 1.125rem; }
.about__body p { color: var(--rs-body); }
.about__body p:first-of-type {
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--rs-ink);
}

.about__signature {
  font-family: var(--rs-font-display);
  font-size: var(--step-2);
  font-style: italic;
  color: var(--rs-rose-text);
}

/* -------------------------------------------------------------------------
   10. Pilares
   ------------------------------------------------------------------------- */
.pillars {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  counter-reset: pillar;
}

@media (min-width: 48em) {
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2.5rem, 5vw, 4.5rem); }
}

.pillar {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rs-line);
  counter-increment: pillar;
}

.pillar::after {
  content: "0" counter(pillar);
  position: absolute;
  top: 1.4rem;
  right: 0;
  font-family: var(--rs-font-display);
  font-size: var(--step-2);
  color: var(--rs-gold-deep);
  opacity: .85;
  line-height: 1;
}

.pillar__icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--rs-gold-deep);
  flex: none;
}

.pillar__icon svg { width: 100%; height: 100%; }

.pillar h3 {
  font-size: var(--step-2);
  margin-bottom: .5rem;
  padding-right: 2.5rem;
}

.pillar p { color: var(--rs-muted); font-size: var(--step-0); }

/* -------------------------------------------------------------------------
   11. Cards de benefícios
   ------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 40em) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68em) { .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--rs-white);
  border: 1px solid var(--rs-line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--rs-shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rs-shadow-md);
  border-color: var(--rs-gold);
}

.card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rs-cream);
  color: var(--rs-gold-deep);
  margin-bottom: .5rem;
}

.card__icon svg { width: 1.5rem; height: 1.5rem; }

.card h3 { font-size: var(--step-2); }
.card p { color: var(--rs-muted); font-size: var(--step--1); line-height: 1.7; }

/* -------------------------------------------------------------------------
   12. Depoimentos
   ------------------------------------------------------------------------- */
.testimonials { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); }

@media (min-width: 56em) { .testimonials { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--rs-cream-pale);
  border: 1px solid var(--rs-line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.testimonial:hover { transform: translateY(-3px); box-shadow: var(--rs-shadow-md); }

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -1.25rem;
  right: .75rem;
  font-family: var(--rs-font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--rs-rose);
  opacity: .16;
  pointer-events: none;
}

.testimonial blockquote {
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.75;
  color: var(--rs-body);
  font-style: italic;
}

.testimonial figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem .75rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--rs-line-soft);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rs-ink);
}

.stars { display: inline-flex; gap: .1875rem; color: var(--rs-gold); }
.stars svg { width: .875rem; height: .875rem; fill: currentColor; }

/* -------------------------------------------------------------------------
   13. Localização
   ------------------------------------------------------------------------- */
.location__grid {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}

@media (min-width: 60em) { .location__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--rs-shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--rs-cream);
}

@media (min-width: 60em) { .map-frame { aspect-ratio: 3 / 4; max-height: 34rem; } }

.map-frame iframe { width: 100%; height: 100%; border: 0; }

.office-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius-lg);
  box-shadow: var(--rs-shadow-md);
}

.info-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.125rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--rs-cream-pale);
  border: 1px solid var(--rs-line-soft);
  border-radius: var(--radius-md);
}

.info-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  color: var(--rs-gold-deep);
  flex: none;
}
.info-card__icon svg { width: 1.25rem; height: 1.25rem; }

.info-card h3 { font-size: var(--step-2); margin-bottom: .5rem; }
.info-card p { color: var(--rs-muted); font-size: var(--step--1); line-height: 1.75; }
.info-card address { font-style: normal; color: var(--rs-body); font-size: var(--step--1); line-height: 1.7; }
.info-card address strong { color: var(--rs-ink); font-weight: 600; }

/* -------------------------------------------------------------------------
   14. Faixa de conversão
   ------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--rs-ink);
  color: var(--rs-cream);
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../brand/padrao-monograma.png");
  background-size: 15rem;
  opacity: .06;
}

.cta-band .container { position: relative; }
.cta-band h2 { color: var(--rs-cream); }
.cta-band p { color: rgba(241, 231, 220, .78); }
.cta-band .eyebrow { color: var(--rs-gold); justify-content: center; }
.cta-band .eyebrow::before,
.cta-band .eyebrow::after { background: var(--rs-gold-gradient); }

/* -------------------------------------------------------------------------
   15. Rodapé
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--rs-cream);
  padding-block: clamp(3.5rem, 5vw, 5rem) 2rem;
}

.footer__grid {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3.5rem);
}

@media (min-width: 48em) { .footer__grid { grid-template-columns: 1.3fr 1fr 1.2fr; } }

.footer__logo { height: auto; width: clamp(11rem, 24vw, 14rem); margin-bottom: 1.25rem; }

.site-footer h2 {
  font-size: var(--step--2);
  font-family: var(--rs-font-body);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rs-gold-deep);
  margin-bottom: 1.25rem;
}

.site-footer p { color: var(--rs-body); font-size: var(--step--1); line-height: 1.8; }

.footer__links { display: grid; gap: .125rem; }

.footer__links a,
.footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-height: 2.75rem;
  color: var(--rs-body);
  font-size: var(--step--1);
  transition: color var(--dur) var(--ease);
  width: fit-content;
}

.footer__links a:hover,
.footer__contacts a:hover { color: var(--rs-gold-deep); }

.footer__contacts { display: grid; gap: .375rem; }
.footer__contacts svg { width: 1.125rem; height: 1.125rem; color: var(--rs-gold-deep); flex: none; }

.footer__bottom {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rs-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  text-align: center;
  font-size: var(--step--2);
  color: var(--rs-muted);
  letter-spacing: .04em;
}

/* -------------------------------------------------------------------------
   16. Botão flutuante do WhatsApp
   ------------------------------------------------------------------------- */
.fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  height: 3.5rem;
  padding-inline: 1.125rem;
  border-radius: var(--radius-pill);
  background: var(--rs-ink);
  color: var(--rs-cream);
  box-shadow: var(--rs-shadow-lg);
  font-size: var(--step--2);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem) scale(.94);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
              visibility var(--dur), background-color var(--dur) var(--ease);
}

.fab.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab:hover { background: var(--rs-gold-deep); }
.fab svg { width: 1.375rem; height: 1.375rem; flex: none; }
.fab span { display: none; }

@media (min-width: 40em) { .fab span { display: inline; } }

/* -------------------------------------------------------------------------
   17. Microinterações de entrada
   ------------------------------------------------------------------------- */
/* Só escondemos o conteúdo quando há JS para revelá-lo de novo */
.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js .reveal.is-in { opacity: 1; transform: none; }

.js .reveal-group > * {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal-group.is-in > * { opacity: 1; transform: none; }
.reveal-group.is-in > *:nth-child(2) { transition-delay: .09s; }
.reveal-group.is-in > *:nth-child(3) { transition-delay: .18s; }
.reveal-group.is-in > *:nth-child(4) { transition-delay: .27s; }

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

/* -------------------------------------------------------------------------
   18. Impressão
   ------------------------------------------------------------------------- */
@media print {
  .site-header, .mobile-nav, .fab, .wave, .map-frame { display: none !important; }
  body { color: #000; }
  .hero__media::before { background: none; }
}
