/* =================================================
   DRA. FERNANDA ANDRADE — Ginecologista e Obstetra
   Landing page · moderna, aconchegante e minimalista

   ▼ PALETA (extraída da logo) ▼
   Rosé (wordmark) + Dourado (símbolo) + Marrom quente
   As variáveis abaixo controlam o site inteiro.

   ▼ FONTES ▼
   Cormorant Garamond (serifa elegante) + Outfit (sans moderna)
   ================================================= */

@font-face { font-family: 'Font Awesome 6 Free'; font-display: swap; }
@font-face { font-family: 'Font Awesome 6 Brands'; font-display: swap; }

:root {
  /* Cores da marca */
  --color-rose: #c08a8a;          /* rosé principal (botões, destaques) */
  --color-rose-dark: #a76e6f;     /* rosé escuro (hover) */
  --color-rose-soft: #e9cfcb;     /* rosé claro (bordas, detalhes) */
  --color-gold: #b8914a;          /* dourado do símbolo */
  --color-dark: #3a2e2b;          /* marrom quente (títulos, footer) */

  /* Fundos */
  --color-bg: #fffdfb;            /* branco quente */
  --color-bg-alt: #faf3f0;        /* blush suave */
  --color-bg-dark: var(--color-dark);

  /* Texto */
  --color-text: #4b403d;
  --color-text-light: #8b7d78;

  /* WhatsApp */
  --color-whatsapp: #25d366;

  /* Fontes */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --container: 1240px;
  --radius: 14px;
  --arch: 200px;                  /* raio do arco das fotos (assinatura visual) */
  --shadow: 0 14px 40px rgba(58, 46, 43, 0.10);
  --transition: 0.3s ease;
}

/* ===== 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 { transition: none !important; animation: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 3px;
}

/* ===== UTILITÁRIOS ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section { padding: 5.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* Fotos em arco (assinatura visual: arco = acolhimento da logo) */
.arch-frame {
  overflow: hidden;
  border-radius: var(--arch) var(--arch) var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-rose);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-rose-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--color-dark);
  border: 1px solid var(--color-rose-soft);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--color-rose);
  color: var(--color-rose-dark);
}

.btn-outline {
  border: 1px solid var(--color-rose);
  color: var(--color-rose-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-rose);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--color-dark);
}

.btn-light:hover {
  background: var(--color-bg-alt);
  transform: translateY(-2px);
}

/* =================================================
   HEADER
   ================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-rose-soft);
  box-shadow: 0 6px 24px rgba(58, 46, 43, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.logo img {
  width: 150px;
  height: auto;
}

.main-nav .menu {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-dark);
  padding: 0.4rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-rose);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--color-dark);
  padding: 0.4rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-rose-soft);
  color: var(--color-rose-dark);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-icons a:hover {
  background: var(--color-rose);
  border-color: var(--color-rose);
  color: #fff;
}

/* =================================================
   HERO
   ================================================= */
.hero {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 0;
  min-height: min(88vh, 760px);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 3.7rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.02;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  letter-spacing: 0.06em;
  color: var(--color-rose-dark);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  max-width: 480px;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-crm {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
}

.hero-photo {
  position: relative;
  align-self: end;
  max-width: 430px;
  justify-self: center;
  width: 100%;
}

.hero-photo .arch-frame {
  border-radius: var(--arch) var(--arch) 0 0;
  box-shadow: none;
}

.hero-motif {
  position: absolute;
  width: 130%;
  top: -6%;
  left: -22%;
  color: var(--color-gold);
  z-index: 0;
}

.hero-photo .arch-frame {
  position: relative;
  z-index: 1;
}

/* =================================================
   DESTAQUES RÁPIDOS
   ================================================= */
.quick-benefits {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 3rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.benefit-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose-soft);
}

.benefit-icon svg { width: 26px; height: 26px; }

.benefit-item h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  color: #fff;
}

.benefit-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

/* =================================================
   SOBRE A DOUTORA
   ================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  position: relative;
  max-width: 440px;
}

.about-photo-accent {
  position: absolute;
  inset: 2rem -2rem -2rem 2rem;
  border: 1px solid var(--color-rose-soft);
  border-radius: var(--arch) var(--arch) var(--radius) var(--radius);
  z-index: -1;
}

.about-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--color-gold);
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0.5rem 0 0.4rem;
}

.about-role {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.4;
  color: var(--color-rose-soft);
  margin-top: 1.5rem;
}

.about-headline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-rose-dark);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.about-text p { margin-bottom: 1rem; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.75rem 0 2rem;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-badge i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-rose-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about-badge-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--color-dark);
}

/* =================================================
   ÁREAS DE CUIDADO
   ================================================= */
.section-care { background: var(--color-bg-alt); }

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.care-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.25rem 1.9rem;
  border: 1px solid rgba(233, 207, 203, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.care-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.care-icon {
  width: 56px;
  height: 56px;
  border-radius: 50% 50% var(--radius) var(--radius);
  background: var(--color-bg-alt);
  color: var(--color-rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.care-icon svg { width: 30px; height: 30px; }

.care-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.care-desc {
  font-size: 0.93rem;
  color: var(--color-text-light);
}

.care-card-cta {
  grid-column: 1 / -1;
  background: var(--color-rose);
  border-color: var(--color-rose);
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 2.5rem;
  padding: 2.25rem 2.5rem;
}

.care-cta-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.care-cta-desc {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.9);
}

.care-card-cta .btn-primary {
  background: #fff;
  color: var(--color-rose-dark);
}

.care-card-cta .btn-primary:hover {
  background: var(--color-bg-alt);
}

/* =================================================
   MATERNAR
   ================================================= */
.section-maternar {
  background: var(--color-bg-dark);
  color: #fff;
}

.maternar-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.maternar-photo { max-width: 430px; }

.maternar-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--color-rose-soft);
}

.maternar-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
  margin: 0.5rem 0 1.25rem;
}

.maternar-lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.maternar-list { margin-bottom: 2.25rem; }

.maternar-list li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem;
}

.maternar-list i {
  color: var(--color-gold);
  font-size: 0.8rem;
}

/* =================================================
   JORNADA
   ================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
  list-style: none;
}

.step { text-align: center; }

.step-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--color-rose-dark);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--color-rose-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: var(--color-bg);
}

.step-content h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--color-text-light);
}

/* =================================================
   CONTATO
   ================================================= */
.section-contact { background: var(--color-bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details { margin-bottom: 1.5rem; }

.contact-details li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  margin-bottom: 0.9rem;
  font-size: 0.97rem;
}

.contact-details i {
  color: var(--color-rose-dark);
  width: 20px;
  text-align: center;
}

.contact-details a:hover { color: var(--color-rose-dark); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-dark);
  margin-bottom: 1.75rem;
}

.field { margin-bottom: 1.25rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-rose-soft);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-rose);
}

/* =================================================
   FOOTER
   ================================================= */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand a {
  display: inline-block;
}

.footer-brand img { width: 190px; height: auto; }

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a:hover { color: var(--color-rose-soft); }

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.93rem;
}

.footer-contact i { color: var(--color-rose-soft); width: 18px; text-align: center; }

.footer-col .social-icons { margin-top: 1.25rem; }

.footer-col .social-icons a {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.footer-col .social-icons a:hover {
  background: var(--color-rose);
  border-color: var(--color-rose);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover { color: var(--color-rose-soft); }

/* =================================================
   WIDGET WHATSAPP (JOINCHAT)
   ================================================= */
.joinchat {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
}

.joinchat-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.joinchat-button:hover { transform: scale(1.08); }

.joinchat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e53e3e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.joinchat.is-open .joinchat-badge { display: none; }

.joinchat-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--color-dark);
  font-size: 0.85rem;
  font-weight: 400;
  white-space: nowrap;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.joinchat-button:hover .joinchat-tooltip { opacity: 1; }

.joinchat.is-open .joinchat-tooltip { display: none; }

.joinchat-box {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(58, 46, 43, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all var(--transition);
}

.joinchat.is-open .joinchat-box {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.joinchat-header {
  background: var(--color-rose);
  color: #fff;
  padding: 0.9rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.joinchat-close { color: #fff; font-size: 1rem; padding: 0.2rem; }

.joinchat-body { padding: 1.1rem; }

.joinchat-bubble {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.joinchat-open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-whatsapp);
  color: #fff;
  font-weight: 500;
  padding: 0.8rem;
  border-radius: 50px;
  transition: filter var(--transition);
}

.joinchat-open:hover { filter: brightness(0.94); }

/* =================================================
   PÁGINA: POLÍTICA DE PRIVACIDADE
   ================================================= */
.policy-hero {
  background: var(--color-bg-alt);
  text-align: center;
  padding: 4rem 0 3rem;
}

.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-dark);
}

.policy-update {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.container-narrow { max-width: 800px; }

.policy-content .lead {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.policy-block { margin-bottom: 2.25rem; }

.policy-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.policy-block p { margin-bottom: 0.75rem; }

.policy-block a { color: var(--color-rose-dark); text-decoration: underline; }

.policy-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0.5rem 0 0.75rem;
}

.policy-list li { margin-bottom: 0.5rem; }

.policy-contact-list {
  list-style: none;
  padding-left: 0;
}

.policy-contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
}

.policy-contact-list i { color: var(--color-rose-dark); }

.policy-back { margin-top: 1.5rem; }

/* =================================================
   RESPONSIVO
   ================================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2.5rem;
    min-height: 0;
  }

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo { max-width: 360px; margin-top: 1rem; }

  .benefits-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 520px; margin: 0 auto; }

  .about-grid,
  .maternar-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-photo, .maternar-photo { margin: 0 auto; }
  .about-photo-accent { display: none; }

  .care-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 4rem 0; }

  .menu-toggle { display: block; }

  .main-nav .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-rose-soft);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }

  .main-nav .menu.is-open { display: flex; }

  .main-nav .menu a {
    display: block;
    padding: 0.9rem 1.5rem;
  }

  .main-nav .menu a::after { display: none; }

  .header-inner .social-icons { display: none; }

  .logo img { width: 120px; }

  .care-grid { grid-template-columns: 1fr; }

  .care-card-cta {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.9rem;
    text-align: left;
  }

  .steps { grid-template-columns: 1fr; gap: 2.25rem; }

  .field-row { grid-template-columns: 1fr; gap: 0; }

  .contact-form { padding: 1.75rem 1.4rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }

  .footer-bottom { justify-content: center; text-align: center; }
}

/* =================================================
   ANIMAÇÕES — entrada do hero, scroll reveal e motivo
   ================================================= */

/* Entrada do hero no carregamento */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroPhotoIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: heroFadeUp 0.8s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }
.hero-content > *:nth-child(6) { animation-delay: 0.55s; }

.hero-photo .arch-frame {
  animation: heroPhotoIn 1s 0.3s ease both;
}

/* Círculos dourados "respirando" atrás da foto */
@keyframes motifBreathe {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.04); opacity: 1; }
}

.hero-motif {
  animation: motifBreathe 7s ease-in-out infinite;
  transform-origin: center;
}

/* Scroll reveal (classe aplicada via JS) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sem animações pra quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .hero-content > *,
  .hero-photo .arch-frame,
  .hero-motif {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
