/* ==================================================================
   DESIGN SYSTEM — RAQUEL SANTOS (RS) · v6.0
   ==================================================================
   Origem da identidade:
   · Cores extraídas dos globals do Elementor (site-antigo):
     primary #4F5644 · secondary #F6F3EE · accent #A5A893
     text/detalhe #E6C6B4 · apoio #FFEFEF · CTA #34AF23
     quentes #F2BC66 / #FFBC7D
   · Tipografia extraída do site-antigo: Montserrat (fonte única).
   Modernizações aplicadas:
   · Verde CTA original (#34AF23) REPROVA contraste WCAG AA com
     texto branco (≈2.5:1). Criado --color-cta acessível (#2E7A1E,
     ≥4.5:1 com branco). O tom original vive em --color-cta-bright
     apenas para usos decorativos (ícones grandes, ilustração).
   · Preto puro e branco puro abolidos: texto = olive, fundo = cream.
   · Escala tipográfica fluida com clamp() — zero media queries
     para tamanho de fonte, zero layout shift.
   ==================================================================
   ESTRUTURA DESTE CSS (pronta para separação futura em arquivos):
     1. Design Tokens (:root)          → tokens.css
     2. Reset + Base                   → base.css
     3. Tipografia                     → typography.css
     4. Layout / utilitários           → layout.css
     5. Componentes                    → components.css
     6. Animações e micro-interações   → motion.css
     7. Estilos da página de docs      → (não vai p/ produção)
   ================================================================== */

/* ==================================================================
   1. DESIGN TOKENS — CSS CUSTOM PROPERTIES
   ================================================================== */
:root {
  /* ---------- Paleta primitiva (identidade RS) ---------- */
  --rs-cream:        #F6F3EE;  /* fundo principal (nunca branco puro) */
  --rs-cream-deep:   #EFEAE1;  /* fundo alternado de seção */
  --rs-olive:        #4F5644;  /* texto primário / marca */
  --rs-olive-deep:   #3B4133;  /* hover de olive / headings de alto contraste */
  --rs-olive-soft:   #6B7360;  /* texto secundário (contraste AA em cream) */
  --rs-rose:         #E6C6B4;  /* acento suave, superfícies quentes */
  --rs-rose-soft:    #F3E2D7;  /* fundo de destaque delicado */
  --rs-blush:        #FFEFEF;  /* apoio rosado (badges, avisos suaves) */
  --rs-sage:         #A5A893;  /* apoio, separadores, ícones decorativos */
  --rs-sage-soft:    #D5D7C9;  /* bordas, linhas divisórias */
  --rs-peach:        #FFBC7D;  /* acento quente, highlights */
  --rs-amber:        #F2BC66;  /* hover quente, detalhes */
  --rs-green-bright: #34AF23;  /* verde original — SÓ decorativo */
  --rs-green-deep:   #2E7A1E;  /* verde acessível (AA c/ branco)  */

  /* ---------- Tokens semânticos: cor ---------- */
  --color-bg:            var(--rs-cream);
  --color-bg-alt:        var(--rs-cream-deep);
  --color-surface:       #FDFBF8;              /* cards sobre cream */
  --color-text:          var(--rs-olive);
  --color-text-soft:     var(--rs-olive-soft);
  --color-text-inverse:  var(--rs-cream);
  --color-heading:       var(--rs-olive-deep);
  --color-primary:       var(--rs-olive);
  --color-primary-hover: var(--rs-olive-deep);
  --color-accent:        var(--rs-rose);
  --color-accent-soft:   var(--rs-rose-soft);
  --color-muted:         var(--rs-sage);
  --color-border:        var(--rs-sage-soft);
  --color-cta:           var(--rs-green-deep);
  --color-cta-hover:     #256317;
  --color-cta-bright:    var(--rs-green-bright); /* decorativo apenas */
  --color-warm:          var(--rs-peach);
  --color-warm-hover:    var(--rs-amber);
  --color-link:          #5C6A45;               /* olive esverdeado, AA em cream */
  --color-link-hover:    var(--rs-olive-deep);

  /* ---------- Tokens semânticos: feedback ---------- */
  --color-success:     #2E7A1E;
  --color-success-bg:  #E8F2E4;
  --color-error:       #A13B2E;
  --color-error-bg:    #F9E9E5;
  --color-warning:     #8A6A1F;
  --color-warning-bg:  #FBF3DF;
  --color-info:        #4E5F6B;
  --color-info-bg:     #E9EEF1;

  /* ---------- Tipografia ---------- */
  --font-brand: 'Montserrat', 'Segoe UI', Tahoma, sans-serif; /* fonte única RS */
  --font-body:  var(--font-brand);

  /* Escala fluida (mobile → desktop) via clamp() */
  --fs-display: clamp(2.75rem, 1.8rem + 4.2vw, 5.5rem);   /* 44 → 88px */
  --fs-h1:      clamp(2.25rem, 1.6rem + 2.8vw, 4rem);     /* 36 → 64px */
  --fs-h2:      clamp(1.75rem, 1.35rem + 1.8vw, 2.75rem); /* 28 → 44px */
  --fs-h3:      clamp(1.375rem, 1.15rem + 1vw, 2rem);     /* 22 → 32px */
  --fs-h4:      clamp(1.185rem, 1.05rem + 0.6vw, 1.5rem); /* 19 → 24px */
  --fs-h5:      clamp(1.06rem, 1rem + 0.3vw, 1.25rem);    /* 17 → 20px */
  --fs-h6:      1rem;                                      /* 16px, caps */
  --fs-lead:    clamp(1.185rem, 1.08rem + 0.5vw, 1.5rem); /* 19 → 24px */
  --fs-body:    clamp(1rem, 0.96rem + 0.2vw, 1.125rem);   /* 16 → 18px */
  --fs-small:   0.875rem;                                  /* 14px */
  --fs-label:   0.8125rem;                                 /* 13px, caps */

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --lh-tight: 1.15;
  --lh-snug:  1.3;
  --lh-body:  1.65;

  --ls-tight: -0.02em;  /* headings grandes */
  --ls-wide:   0.08em;  /* labels / eyebrows em caps */

  /* ---------- Espaçamento (escala base 4px) ---------- */
  --space-1:  0.25rem;   /*  4px */
  --space-2:  0.5rem;    /*  8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.5rem;    /* 24px */
  --space-6:  2rem;      /* 32px */
  --space-7:  3rem;      /* 48px */
  --space-8:  4rem;      /* 64px */
  --space-9:  6rem;      /* 96px */
  --space-10: 8rem;      /* 128px */
  --space-section: clamp(var(--space-8), 5vw + 2rem, var(--space-10));

  /* ---------- Raios (identidade orgânica: cantos suaves) ---------- */
  --radius-sm:   0.375rem;  /* 6px — inputs, badges */
  --radius-md:   1rem;      /* 16px — cards */
  --radius-lg:   2rem;      /* 32px — seções destacadas, imagens */
  --radius-pill: 100px;     /* CTAs */
  --radius-organic: 58% 42% 55% 45% / 52% 48% 55% 45%; /* blobs decorativos */

  /* ---------- Sombras (suaves, tingidas de olive — nunca preto) ---------- */
  --shadow-sm: 0 1px 4px rgba(79, 86, 68, 0.08);
  --shadow-md: 0 2px 12px rgba(79, 86, 68, 0.10);
  --shadow-lg: 0 12px 32px rgba(79, 86, 68, 0.14);
  --shadow-focus: 0 0 0 3px rgba(165, 168, 147, 0.45);

  /* ---------- Z-index ---------- */
  --z-base:     0;
  --z-raised:   10;
  --z-sticky:   100;
  --z-overlay:  1000;
  --z-modal:    1100;
  --z-toast:    1200;

  /* ---------- Motion ---------- */
  --ease-organic: cubic-bezier(0.33, 1, 0.68, 1);
  --transition-fast: 0.18s var(--ease-organic);
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.55s var(--ease-organic);

  /* ---------- Medidas ---------- */
  --container-max: 72rem;    /* 1152px */
  --content-max:   42rem;    /* 672px — largura ideal de leitura */
}

/* ==================================================================
   2. RESET + BASE
   ================================================================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

input, button, textarea, select { font: inherit; color: inherit; }

/* Acessibilidade: respeitar preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Foco visível global (navegação por teclado) */
:focus-visible {
  outline: 3px solid var(--rs-sage);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background: var(--rs-rose); color: var(--rs-olive-deep); }

/* ==================================================================
   3. TIPOGRAFIA
   ================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-brand);
  color: var(--color-heading);
  line-height: var(--lh-tight);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); font-weight: var(--fw-bold);     letter-spacing: var(--ls-tight); }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-semibold); letter-spacing: -0.01em; }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-medium);   line-height: var(--lh-snug); }
h5 { font-size: var(--fs-h5); font-weight: var(--fw-medium);   line-height: var(--lh-snug); }
h6 {
  font-size: var(--fs-h6);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.display {
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Eyebrow: rótulo curto acima de headings (padrão de seção) */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-3);
}

p { max-width: var(--content-max); }

.lead {
  font-size: var(--fs-lead);
  font-weight: var(--fw-light);
  line-height: 1.5;
  color: var(--color-text-soft);
}

small, .text-small { font-size: var(--fs-small); }

strong { font-weight: var(--fw-semibold); color: var(--color-heading); }

a {
  color: var(--color-link);
  text-decoration: underline;
  text-decoration-color: var(--rs-sage);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  transition: color var(--transition-base), text-decoration-color var(--transition-base);
}
a:hover {
  color: var(--color-link-hover);
  text-decoration-color: var(--color-link-hover);
  text-decoration-thickness: 2px;
}

blockquote {
  position: relative;
  max-width: var(--content-max);
  padding: var(--space-5) var(--space-6);
  background: var(--color-accent-soft);
  border-left: 4px solid var(--rs-rose);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--fs-lead);
  font-weight: var(--fw-light);
  font-style: italic;
  color: var(--color-heading);
}
blockquote footer {
  margin-top: var(--space-3);
  font-size: var(--fs-small);
  font-style: normal;
  font-weight: var(--fw-medium);
  color: var(--color-text-soft);
}

ul.list-organic { padding-left: 0; list-style: none; max-width: var(--content-max); }
ul.list-organic li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
}
ul.list-organic li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5em;
  height: 0.5em;
  background: var(--rs-sage);
  border-radius: var(--radius-organic);
}

hr {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: var(--space-6) 0;
}

/* ==================================================================
   4. LAYOUT / UTILITÁRIOS
   ================================================================== */
.container {
  width: min(100% - 2 * var(--space-5), var(--container-max));
  margin-inline: auto;
}

.section { padding-block: var(--space-section); }
.section--alt { background: var(--color-bg-alt); }

.stack    > * + * { margin-top: var(--space-4); }
.stack-lg > * + * { margin-top: var(--space-6); }

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: var(--space-5);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

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

/* Link "pular para conteúdo" — obrigatório em todas as páginas */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-toast);
  padding: var(--space-3) var(--space-5);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top var(--transition-fast);
}
.skip-link:focus-visible { top: 0; color: var(--color-text-inverse); }

/* ==================================================================
   5. COMPONENTES
   ================================================================== */

/* ---------- 5.1 Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875em 2em;
  font-family: var(--font-brand);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  will-change: transform;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.08s; }
.btn:focus-visible { outline: 3px solid var(--rs-sage); outline-offset: 3px; }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
  transform: none;
}

/* Primário — olive (ações padrão) */
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-lg);
}

/* CTA — verde acessível (conversão: agendar, whatsapp) */
.btn--cta {
  background: var(--color-cta);
  color: #FFFFFF; /* exceção controlada: branco puro só dentro do CTA */
  box-shadow: var(--shadow-md);
}
.btn--cta:hover {
  background: var(--color-cta-hover);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

/* Secundário — rose (ações de apoio) */
.btn--secondary {
  background: var(--rs-rose);
  color: var(--rs-olive-deep);
}
.btn--secondary:hover { background: var(--rs-peach); color: var(--rs-olive-deep); }

/* Outline */
.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* Ghost — mínimo, para navegação e ações terciárias */
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding-inline: 1.25em;
}
.btn--ghost:hover { background: rgba(165, 168, 147, 0.18); color: var(--color-primary-hover); }

.btn--lg { font-size: var(--fs-lead); padding: 1em 2.5em; }
.btn--sm { font-size: var(--fs-small); padding: 0.6em 1.5em; }

/* ---------- 5.2 Formulários ---------- */
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }

.form-label {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-heading);
}
.form-label .required { color: var(--color-error); }

.form-hint { font-size: var(--fs-small); color: var(--color-text-soft); }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875em 1.125em;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--rs-sage); }

.form-input:hover, .form-textarea:hover, .form-select:hover {
  border-color: var(--rs-sage);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-focus);
}

.form-textarea { min-height: 8rem; resize: vertical; }

/* Estados de validação */
.form-field--error .form-input,
.form-field--error .form-textarea {
  border-color: var(--color-error);
  background: var(--color-error-bg);
}
.form-field--success .form-input {
  border-color: var(--color-success);
}

.form-message {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}
.form-message--error   { color: var(--color-error); }
.form-message--success { color: var(--color-success); }
.form-message::before  { font-size: 1em; line-height: 1; }
.form-message--error::before   { content: "⚠"; }
.form-message--success::before { content: "✓"; }

/* Checkbox e radio (accent-color: nativo, acessível e leve) */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--fs-body);
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2em;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

fieldset {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
legend {
  padding-inline: var(--space-3);
  font-weight: var(--fw-semibold);
  color: var(--color-heading);
}

/* ---------- 5.3 Cards ---------- */
.card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--rs-rose-soft), var(--rs-sage-soft));
  display: grid;
  place-items: center;
  color: var(--rs-sage);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  flex-grow: 1;
}

.card__title { font-size: var(--fs-h4); }
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--color-link-hover); }

/* Link do card cobre o card inteiro (área de toque generosa) */
.card--linked { position: relative; }
.card--linked .card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: var(--z-raised);
}

.card__footer {
  margin-top: auto;
  padding-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--fs-small);
  color: var(--color-text-soft);
}

/* Card de serviço — variante com fundo quente */
.card--service {
  background: var(--color-accent-soft);
  border-color: transparent;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  gap: var(--space-4);
}
.card--service .card__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  background: var(--rs-rose);
  color: var(--rs-olive-deep);
  border-radius: var(--radius-organic);
  font-size: 1.5rem;
}

/* ---------- 5.4 Badges e Tags ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.35em 0.9em;
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.badge--olive   { background: var(--rs-olive);      color: var(--rs-cream); }
.badge--sage    { background: var(--rs-sage-soft);  color: var(--rs-olive-deep); }
.badge--rose    { background: var(--rs-rose);       color: var(--rs-olive-deep); }
.badge--blush   { background: var(--rs-blush);      color: #8A4A3B; }
.badge--peach   { background: var(--rs-peach);      color: #6B4415; }
.badge--success { background: var(--color-success-bg); color: var(--color-success); }
.badge--error   { background: var(--color-error-bg);   color: var(--color-error); }

.tag {
  display: inline-block;
  padding: 0.3em 0.85em;
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  color: var(--color-text-soft);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--transition-base);
}
a.tag:hover {
  border-color: var(--rs-sage);
  background: var(--rs-sage-soft);
  color: var(--rs-olive-deep);
}

/* ==================================================================
   6. ANIMAÇÕES E MICRO-INTERAÇÕES
   ================================================================== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Entrada de página: aplicar .anim-fade-up nos blocos do hero,
   escalonando com .anim-delay-* (um momento bem orquestrado
   vale mais que micro-interações espalhadas) */
.anim-fade-up { animation: fade-up 0.7s var(--ease-organic) both; }
.anim-fade-in { animation: fade-in 0.9s ease-in-out both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.22s; }
.anim-delay-3 { animation-delay: 0.34s; }
.anim-delay-4 { animation-delay: 0.46s; }

/* Reveal on scroll — progressive enhancement via JS (IntersectionObserver).
   Sem JS, o conteúdo fica visível (nunca esconder conteúdo por padrão). */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-organic), transform 0.7s var(--ease-organic);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==================================================================
   7. ESTILOS DA PÁGINA — ds1.siteraquel (home)
   ================================================================== */

/* ---------- Header do site ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { width: auto; height: 2.75rem; }

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
  padding: 0;
}
.site-nav a:not(.btn) {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-decoration: none;
  color: var(--color-text-soft);
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}
.site-nav a:not(.btn):hover { color: var(--color-heading); border-bottom-color: var(--rs-rose); }

/* Menu mobile: sem JS obrigatório — <details> nativo */
.nav-toggle { display: none; }
@media (max-width: 56rem) {
  .site-nav { display: none; }
  .nav-toggle { display: block; position: relative; }
  .nav-toggle summary {
    list-style: none;
    cursor: pointer;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-heading);
  }
  .nav-toggle summary::-webkit-details-marker { display: none; }
  .nav-toggle[open] summary { background: var(--rs-cream-deep); }
  .nav-toggle ul {
    position: absolute;
    right: 0;
    top: calc(100% + var(--space-2));
    min-width: 14rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }
  .nav-toggle a {
    display: block;
    padding: var(--space-2) var(--space-3);
    text-decoration: none;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    font-weight: var(--fw-medium);
  }
  .nav-toggle a:hover { background: var(--rs-cream-deep); color: var(--color-heading); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; }
.hero .container {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 56rem) {
  .hero .container { grid-template-columns: 1fr; }
}
.hero-blob {
  position: absolute;
  inset-block-start: -12%;
  inset-inline-end: -6%;
  width: min(42vw, 32rem);
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--rs-rose-soft) 10%, var(--rs-sage-soft) 90%);
  border-radius: var(--radius-organic);
  pointer-events: none;
}
.hero-photo {
  width: min(100%, 26rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-organic);
  box-shadow: var(--shadow-lg);
  justify-self: center;
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 56rem) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-frame {
  background: var(--color-accent-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

/* ---------- Faixa de CTA final ---------- */
.cta-band {
  background: var(--rs-olive);
  color: var(--rs-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.cta-band h2 { color: var(--rs-cream); max-width: 28ch; }
.cta-band p { color: var(--rs-sage-soft); margin-inline: auto; }

/* ---------- Footer do site ---------- */
.site-footer {
  background: var(--rs-olive);
  color: var(--rs-cream);
  padding-block: var(--space-8);
  margin-top: var(--space-section);
}
.site-footer h2, .site-footer h3 { color: var(--rs-cream); }
.site-footer a { color: var(--rs-rose); text-decoration-color: var(--rs-sage); }
.site-footer a:hover { color: var(--rs-cream); }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-6);
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li + li { margin-top: var(--space-2); }
.site-footer .footer-note {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(246, 243, 238, 0.2);
  font-size: var(--fs-small);
  color: var(--rs-sage-soft);
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
}

/* Imagem real dentro de .card__media (o fallback gradiente fica para placeholders) */
img.card__media {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* strong dentro de superfícies escuras herda a cor clara do contexto */
.cta-band strong, .site-footer strong { color: inherit; }
