/* =====================================================================
   Elane Monteiro — Psicóloga Clínica
   Folha de estilos principal
   Organização: 1) Reset/base  2) Tokens  3) Tipografia  4) Layout util
   5) Componentes  6) Seções  7) Rodapé  8) Responsivo
   ===================================================================== */

/* ---------- 1. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
html, body { overflow-x: hidden; width: 100%; }

/* ---------- 2. Tokens de design ---------- */
:root {
  /* Paleta — bege / champagne / dourado */
  --cream: #FBF4EB;
  --cream-deep: #F3E5D3;
  --champagne: #EFE0CB;
  --gold: #B08D57;
  --gold-light: #D9C6A5;
  --terracotta: #BF8161;
  --sage: #8A9A7E;
  --rose: #C98B96;
  --brown: #3A2A21;
  --brown-soft: #5B4A3C;
  --white: #FFFFFF;

  /* Tons claros para acentos dos cards */
  --gold-tint: #F3E7D3;
  --terracotta-tint: #F6E2D8;
  --sage-tint: #E7ECE3;
  --rose-tint: #F5E3E8;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-script: 'Alex Brush', cursive;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -20px rgba(58, 42, 33, 0.25);
  --shadow-card: 0 10px 30px -14px rgba(58, 42, 33, 0.18);

  --header-h: 84px;
}

body {
  font-family: var(--font-body);
  color: var(--brown-soft);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-heading); color: var(--brown); line-height: 1.2; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 20px; height: 20px; stroke: currentColor; }
.icon--lg { width: 34px; height: 34px; }
.icon--menu, .icon--close { width: 24px; height: 24px; }

/* ---------- 3. Tipografia utilitária ---------- */
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-light); }

.section__title {
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 18px;
}

.section__lead {
  max-width: 620px;
  color: var(--brown-soft);
  font-size: 1.05rem;
}

.section__header { max-width: 680px; margin-bottom: 46px; }
.section--dark .section__header,
.instagram .section__header { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- 4. Layout util ---------- */
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section--alt { background: var(--champagne); }
.section--dark {
  background: linear-gradient(135deg, var(--brown) 0%, #4a362a 100%);
}
.section--dark .trust-item p { color: var(--cream); }
.section--dark .trust-item .icon { color: var(--gold-light); }

/* ---------- 5. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
  white-space: nowrap;
}
.btn .icon { width: 19px; height: 19px; }
.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(176, 141, 87, 0.55);
}
.btn--primary:hover { background: #9a7a49; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--gold);
}
.btn--ghost:hover { background: rgba(176, 141, 87, 0.1); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--brown);
  background: var(--white);
}
.btn--outline:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 244, 235, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.is-scrolled {
  background: rgba(251, 244, 235, 0.95);
  box-shadow: 0 8px 30px -18px rgba(58, 42, 33, 0.35);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo { display: flex; align-items: center; }
.logo__image { height: 62px; width: auto; }
.logo__floral { width: 40px; height: 40px; opacity: 0.9; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--gold);
}
.logo__subtitle {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

.nav__list { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brown-soft);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link:hover { color: var(--brown); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__whatsapp { background: #3f9d55; box-shadow: none; }
.header__whatsapp:hover { background: #35843f; }
.nav__toggle { display: none; color: var(--brown); }
.nav__toggle .icon--close { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--header-h) + 64px) 0 90px;
  background: radial-gradient(circle at 15% 15%, var(--champagne) 0%, var(--cream) 45%),
              linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}
.hero__title {
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.1rem);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero__title span { display: block; color: var(--terracotta); }
.hero__subtitle { font-size: 1.08rem; max-width: 520px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }
.hero__trust { font-size: 0.85rem; color: var(--gold); font-weight: 500; }

.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.hero__blob {
  position: absolute;
  width: 84%;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--champagne) 55%, var(--terracotta) 100%);
  border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
  opacity: 0.95;
  z-index: 0;
  animation: blobmove 11s ease-in-out infinite alternate;
}
@keyframes blobmove {
  from { border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%; }
  to   { border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%; }
}
.hero__cutout {
  position: relative;
  z-index: 2;
  max-width: 340px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 35px rgba(58, 42, 33, 0.28));
}
.hero__badge {
  position: absolute;
  z-index: 3;
  left: 4%;
  bottom: 6%;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brown);
  white-space: nowrap;
}
.hero__badge-stars { color: var(--gold); letter-spacing: 1px; }
.hero__floral {
  position: absolute;
  top: -10px;
  right: 0;
  width: 110px;
  opacity: 0.4;
  z-index: 1;
}
.photo-frame--empty .about__photo { display: none; }
.photo-frame--empty::after {
  content: 'EM';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-size: 4.5rem;
  color: var(--white);
  opacity: 0.85;
}

/* ---------- Sobre ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about__photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, var(--gold-light), var(--terracotta));
  position: relative;
}
.about__photo { width: 100%; height: 100%; object-fit: cover; }
.about__content p { margin-bottom: 16px; }
.about__content .btn { margin-top: 12px; }

/* ---------- Cards temáticos ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(176, 141, 87, 0.12);
  border-top: 4px solid var(--accent, var(--gold));
  min-width: 0;
}
.cards-grid .card:nth-child(4n+1) { --accent: var(--gold); --accent-tint: var(--gold-tint); }
.cards-grid .card:nth-child(4n+2) { --accent: var(--terracotta); --accent-tint: var(--terracotta-tint); }
.cards-grid .card:nth-child(4n+3) { --accent: var(--sage); --accent-tint: var(--sage-tint); }
.cards-grid .card:nth-child(4n+4) { --accent: var(--rose); --accent-tint: var(--rose-tint); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--accent-tint, var(--champagne));
  color: var(--accent, var(--gold));
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card__icon .icon--lg { width: 28px; height: 28px; }
.card__title { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; overflow-wrap: break-word; }
.card__text { font-size: 0.92rem; overflow-wrap: break-word; }

/* ---------- Psicoterapia ---------- */
.psi__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.psi__content p { margin-bottom: 16px; }
.psi__photo-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, var(--gold-light), var(--champagne));
}
.psi__photo { width: 100%; height: 100%; object-fit: cover; }
.check-list { margin-top: 26px; display: grid; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--brown);
}
.check-list .icon { color: var(--gold); flex-shrink: 0; }

/* ---------- Atendimento (formatos) ---------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.format-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
  min-width: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.format-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.format-card:nth-child(2) { border-top-color: var(--terracotta); }
.format-card__icon { color: var(--gold); display: inline-block; margin-bottom: 18px; }
.format-card:nth-child(2) .format-card__icon { color: var(--terracotta); }
.format-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.format-card__text { margin-bottom: 20px; overflow-wrap: break-word; }
.format-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--terracotta);
}
.format-card__link .icon { width: 17px; height: 17px; transition: transform 0.2s ease; }
.format-card__link:hover .icon { transform: translateX(4px); }

/* ---------- O que esperar da consulta ---------- */
.quote-block {
  position: relative;
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 50px 44px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  z-index: 1;
}
.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--champagne);
  z-index: 0;
  pointer-events: none;
}
.quote-block__icon { display: none; }
.quote-block p { position: relative; z-index: 1; font-family: var(--font-heading); font-size: 1.12rem; font-style: italic; color: var(--brown); line-height: 1.6; margin: 0; }
.quote-block span { position: relative; z-index: 1; display: block; margin-top: 14px; font-family: var(--font-body); font-style: normal; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terracotta); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--accent, var(--gold));
  min-width: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.steps-grid .step:nth-child(4n+1) { --accent: var(--gold); --accent-tint: var(--gold-tint); }
.steps-grid .step:nth-child(4n+2) { --accent: var(--terracotta); --accent-tint: var(--terracotta-tint); }
.steps-grid .step:nth-child(4n+3) { --accent: var(--sage); --accent-tint: var(--sage-tint); }
.steps-grid .step:nth-child(4n+4) { --accent: var(--rose); --accent-tint: var(--rose-tint); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-tint, var(--champagne));
  color: var(--accent, var(--gold));
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}
.step__title { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.step__text { font-size: 0.9rem; overflow-wrap: break-word; }

/* ---------- Banner editorial ---------- */
.banner {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.banner__img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 42, 33, 0.1) 0%, rgba(58, 42, 33, 0.8) 100%);
}
.banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: 56px;
  color: var(--white);
}
.banner__content .eyebrow { margin-bottom: 14px; }
.banner__quote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 1rem + 1.4vw, 1.85rem);
  max-width: 720px;
  line-height: 1.45;
}

/* ---------- Confiança ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 24px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 0; }
.trust-item .icon { color: var(--gold); }
.trust-item p { font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem; }

/* ---------- Depoimentos (carrossel infinito) ---------- */
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brown-soft);
}
.rating-badge__stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }

.testimonial-track-wrap {
  overflow: hidden;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 4px 24px 24px;
  animation: marquee 38s linear infinite;
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-card {
  flex: 0 0 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(176, 141, 87, 0.12);
  text-align: left;
}
.testimonial-card__quote { width: 32px; height: 24px; color: var(--gold-light); margin-bottom: 14px; }
.testimonial-card__text { font-size: 0.96rem; font-style: italic; color: var(--brown-soft); margin-bottom: 18px; overflow-wrap: break-word; }
.testimonial-card__footer { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--terracotta));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card__meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card__author { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--brown); }
.testimonial-card__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.testimonials-link {
  display: table;
  align-items: center;
  gap: 8px;
  margin: 34px auto 0;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--terracotta);
}
.testimonials-link svg { vertical-align: middle; margin-left: 6px; }
.testimonials-link .icon { width: 17px; height: 17px; }

/* ---------- Instagram ---------- */
.instagram { text-align: center; }
.instagram__inner { display: flex; flex-direction: column; align-items: center; position: relative; }
.instagram__floral { width: 90px; margin-bottom: 18px; opacity: 0.85; }
.instagram .section__lead { margin: 0 auto 30px; }

/* ---------- Contato ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-list { display: grid; gap: 16px; margin: 26px 0 34px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.contact-list .icon { color: var(--gold); flex-shrink: 0; }
.contact-list a:hover { color: var(--terracotta); }
.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 340px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------- Rodapé ---------- */
.footer {
  background: var(--brown);
  color: var(--cream-deep);
  padding: 64px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(251, 244, 235, 0.15);
}
.footer__logo { width: 210px; height: auto; }
.footer__brand p { margin-top: 6px; font-size: 0.9rem; opacity: 0.8; }
.footer__list { display: grid; gap: 12px; font-size: 0.92rem; }
.footer__list li { display: flex; align-items: center; gap: 10px; }
.footer__list .icon { color: var(--gold-light); width: 17px; height: 17px; }
.footer__list a:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 22px;
  font-size: 0.82rem;
  opacity: 0.75;
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  z-index: 90;
  animation: pulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.06); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 14px 30px -10px rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 14px 30px -10px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 14px 30px -10px rgba(37, 211, 102, 0.6); }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =====================================================================
   8. Responsivo
   ===================================================================== */
@media (max-width: 1024px) {
  .hero__inner { gap: 32px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--cream); padding: 36px 24px; transform: translateX(100%); transition: transform 0.35s ease; overflow-y: auto; }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav__link { font-size: 1.15rem; }
  .nav__toggle { display: inline-flex; }
  .nav__toggle.is-open .icon--menu { display: none; }
  .nav__toggle.is-open .icon--close { display: inline-block; }
  .header__whatsapp span { display: none; }
  .header__whatsapp { padding: 10px; }
  .header__whatsapp .icon { width: 20px; height: 20px; }

  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__media { order: -1; margin-bottom: 12px; min-height: 380px; }
  .hero__cutout { max-width: 280px; }
  .hero__blob { width: 78%; }
  .hero__actions { justify-content: flex-start; }

  .about__inner { grid-template-columns: 1fr; }
  .about__photo-frame { max-width: 340px; margin: 0 auto; }

  .psi__inner { grid-template-columns: 1fr; }
  .psi__media { order: -1; }
  .psi__photo-frame { max-width: 420px; margin: 0 auto; }

  .banner { height: 380px; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-block { padding: 44px 26px 34px; }
  .quote-block::before { font-size: 7rem; top: -26px; }

  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card { padding: 22px 16px; min-width: 0; }
  .format-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .quote-block { padding: 38px 20px 28px; }
  .quote-block::before { font-size: 5.5rem; top: -18px; }
  .quote-block p { font-size: 0.95rem; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn,
  .about__content > .btn,
  .contact__content > .btn,
  .instagram .btn { width: 100%; justify-content: center; }
  .logo__name { font-size: 1.55rem; }
  .logo__floral { width: 32px; height: 32px; }
  .logo__image { height: 46px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }

  .hero__media { min-height: 320px; }
  .hero__cutout { max-width: 230px; }
  .hero__badge { font-size: 0.72rem; padding: 9px 15px; left: 2%; }
  .hero__floral { width: 80px; }

  .banner { height: 320px; }
  .banner__content { padding-bottom: 36px; }

  .testimonial-card { flex: 0 0 260px; padding: 24px 20px; }
  .testimonial-track { animation-duration: 28s; gap: 16px; }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .hero__cutout { max-width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__blob { animation: none; }
  .testimonial-track { animation: none; }
  [data-reveal] { transition: none; opacity: 1; transform: none; }
}
