/* Ingrid Mariane — Lash Designer
   Sistema visual compartilhado com o Studio Yasmim Caetano, a pedido do cliente. */

:root {
  --bg: #FAF8F6;
  --bg-soft: #F1ECE8;
  --ink: #211E1D;
  --ink-soft: #706966;
  --accent: #9B7768;
  --accent-deep: #7C5B4D;
  --accent-tint: #EDE2DC;
  --white: #FFFFFF;
  --line: rgba(33, 30, 29, 0.13);

  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --radius: 10px;
  --radius-lg: 18px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html.intro-lock, html.intro-lock body { overflow: hidden; height: 100%; }

/* ---------- Intro ---------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  animation: intro-out 0.7s var(--ease) 1.55s forwards;
}

.intro-mark {
  position: relative;
  display: block;
  width: clamp(150px, 34vw, 210px);
  padding-bottom: 1.1rem;
}
.intro-mark img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  animation: intro-logo-in 1s var(--ease) 0.15s forwards;
}
.intro-mark::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: var(--accent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: intro-line 0.6s var(--ease) 0.75s forwards;
}

@keyframes intro-logo-in {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes intro-line { to { transform: translateX(-50%) scaleX(1); } }
@keyframes intro-out { to { opacity: 0; visibility: hidden; pointer-events: none; } }

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); letter-spacing: -0.01em; }

p { margin: 0; color: var(--ink-soft); }

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0.8rem 1.2rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 8px 22px -14px rgba(33, 30, 29, 0.9);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(124, 91, 77, 0.95);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-soft); transform: translateY(-2px); }

.btn-large { padding: 1.15rem 2.6rem; font-size: 1.05rem; }
.btn-small { padding: 0.65rem 1.35rem; font-size: 0.85rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 246, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -26px rgba(33, 30, 29, 0.8);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 1.5rem;
}

.wordmark { display: flex; align-items: center; padding: 0.4rem 0; }

.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.wordmark-text span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 0.35s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  padding: 5px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.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(-7.5px) rotate(-45deg); }

/* ---------- Reveal-on-scroll ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
html.js .reveal.in-view { opacity: 1; transform: none; }

/* ---------- Hero ---------- */

.hero { padding: clamp(1.5rem, 3.5vw, 2.5rem) 0 clamp(3.5rem, 9vw, 7rem); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: var(--gap);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(33, 30, 29, 0.1);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--accent); }

.hero h1 { margin-top: 1.25rem; }
.accent-line { color: var(--accent-deep); }

.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  max-width: 34ch;
  color: var(--ink-soft);
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-tags { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-photo { position: relative; }

.hero-chip {
  display: none;
  align-items: center;
  gap: 0.65rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.6rem 1.1rem 0.6rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(33, 30, 29, 0.4);
}
.hero-chip-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250, 248, 246, 0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-chip-icon svg { width: 20px; height: 20px; color: var(--accent-tint); }
.hero-chip-text { display: flex; flex-direction: column; line-height: 1.25; }
.hero-chip-text strong { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; }
.hero-chip-text em { font-style: italic; font-size: 0.76rem; color: var(--accent-tint); }

.hero-art {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-art-inner { width: 100%; height: 114%; will-change: transform; }
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  animation: photo-in 1.1s var(--ease) both;
}
@keyframes photo-in {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- Authority ---------- */

.authority { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--bg-soft); }

.authority-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: var(--gap);
  align-items: center;
}

.authority-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.authority-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.authority-content h2 { margin-bottom: 1.75rem; }

.authority-body p { font-size: 1.1rem; max-width: 62ch; color: var(--ink); }
.authority-body p + p { margin-top: 0.9rem; }

.authority-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.75rem 2.5rem;
}
.authority-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.authority-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 1px;
  background: var(--accent);
}

/* ---------- Section head ---------- */

.section-head { max-width: 52ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head p { margin-top: 0.75rem; font-size: 1.05rem; }

/* ---------- Efeitos ---------- */

.effects { padding: clamp(4rem, 9vw, 7rem) 0; }

.effect-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.effect-row { border-bottom: 1px solid var(--line); }

html.js .effect-row {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
html.js .effect-row.in-view { opacity: 1; transform: none; }

.effect-link {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 1.25rem;
  margin: 0 -1.25rem;
  border-radius: var(--radius-lg);
  transition: background-color 0.4s var(--ease);
}
.effect-link:hover { background: var(--bg-soft); }

.effect-photo {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-tint);
  flex-shrink: 0;
  box-shadow: 0 10px 24px -14px rgba(33, 30, 29, 0.75);
}
.effect-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(33, 30, 29, 0.12);
  transition: box-shadow 0.45s var(--ease);
}
.effect-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.effect-link:hover .effect-photo img,
.effect-link:focus-visible .effect-photo img { transform: scale(1.11); }
.effect-link:hover .effect-photo::after,
.effect-link:focus-visible .effect-photo::after {
  box-shadow: inset 0 0 0 1px rgba(155, 119, 104, 0.55), 0 0 0 4px var(--accent-tint);
}

.effect-body { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }

.effect-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.42rem;
  line-height: 1.2;
  color: var(--ink);
}
.effect-desc { font-size: 0.96rem; color: var(--ink-soft); max-width: 52ch; }

.effect-price {
  margin-top: 0.5rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.effect-price .pp { white-space: nowrap; }
.effect-price b { font-weight: 600; color: var(--accent-deep); font-size: 0.96rem; }
.effect-price small { font-size: 0.8rem; color: var(--ink-soft); opacity: 0.85; }

.effect-go {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  flex-shrink: 0;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
              transform 0.4s var(--ease), color 0.4s var(--ease);
}
.effect-go svg { width: 19px; height: 19px; }
.effect-link:hover .effect-go,
.effect-link:focus-visible .effect-go {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateX(4px);
}

.effect-extra {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}
.effect-extra-copy h3 { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; margin-bottom: 0.35rem; }
.effect-extra-copy p { font-size: 0.95rem; max-width: 56ch; }

.effect-note {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Why ---------- */

.why { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--bg-soft); }

.why-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--gap); }

.why-list { display: flex; flex-direction: column; gap: 2.25rem; }

.why-item { display: grid; grid-template-columns: 40px 1fr; gap: 1.25rem; align-items: start; }

.why-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.why-icon svg { width: 20px; height: 20px; }

.why-item h3 { margin-bottom: 0.35rem; }
.why-item p { font-size: 0.98rem; max-width: 56ch; }

/* ---------- FAQ ---------- */

.faq { padding: clamp(4rem, 9vw, 7rem) 0; }

.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--gap); align-items: start; }

.faq-intro p { margin-top: 1rem; font-size: 1.05rem; max-width: 34ch; }
.faq-intro .btn { margin-top: 1.75rem; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item h3 { margin: 0; font-size: inherit; font-weight: inherit; font-family: inherit; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--accent-deep); }

.faq-sign {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-sign::before,
.faq-sign::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--accent-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.faq-sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q[aria-expanded="true"] .faq-sign::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq-a > div { overflow: hidden; }
.faq-a p {
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 62ch;
  padding-bottom: 1.4rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a p { opacity: 1; transition-delay: 0.1s; }

/* ---------- Instagram ---------- */

.instagram { padding: clamp(4rem, 9vw, 6rem) 0; text-align: center; background: var(--bg-soft); }

.instagram-inner {
  max-width: 34rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.instagram-inner p { font-size: 1.05rem; max-width: 40ch; }

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent-deep);
  margin-top: 0.5rem;
  transition: color 0.3s var(--ease);
}
.instagram-handle:hover { color: var(--ink); }
.instagram-handle svg { width: 22px; height: 22px; }

.instagram-inner .btn { margin-top: 0.75rem; }

/* ---------- Final CTA ---------- */

.final-cta { background: var(--ink); color: var(--bg); padding: clamp(4.5rem, 10vw, 7.5rem) 0; }

.final-cta-inner {
  max-width: 46ch;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.final-cta h2 { color: var(--bg); }
.final-cta p { color: rgba(250, 248, 246, 0.7); font-size: 1.1rem; }
.final-cta .btn-primary { background: var(--accent); color: var(--white); box-shadow: none; }
.final-cta .btn-primary:hover { background: var(--accent-tint); color: var(--ink); box-shadow: none; }

/* ---------- Footer ---------- */

.site-footer { padding: 2.75rem 0 1.5rem; }

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.footer-sub { font-size: 0.85rem; margin-top: 0.3rem; }

.footer-links { display: flex; gap: 1.75rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.6rem 0;
  transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: var(--accent-deep); }

.footer-copy {
  max-width: var(--wrap);
  margin: 1.25rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---------- WhatsApp float ---------- */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.55);
  z-index: 90;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
              opacity 0.35s var(--ease), visibility 0.35s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); background: #1FBD5A; }
.whatsapp-float.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ---------- Barra fixa mobile ---------- */

.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  gap: 0.6rem;
  padding: 0.7rem clamp(1rem, 4vw, 1.5rem) calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 248, 246, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }

.mobile-bar-ghost {
  width: 52px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  background: var(--white);
}
.mobile-bar-ghost svg { width: 20px; height: 20px; }

.mobile-bar-cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.97rem;
  font-weight: 600;
}
.mobile-bar-cta svg { width: 20px; height: 20px; }

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid, .authority-grid, .why-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 0; }

  /* mobile: hero é só texto — a foto da Ingrid aparece na seção "Sobre" */
  .hero { padding: clamp(2.5rem, 9vw, 4rem) 0 clamp(3rem, 10vw, 4.5rem); }
  .hero-photo { display: none; }
  .hero h1 { margin-top: 1.1rem; }
  .hero-sub { max-width: 40ch; }

  .authority-list { grid-template-columns: 1fr; }

  .faq-intro p { max-width: 52ch; }
  .faq-list { margin-top: 2.25rem; }

  /* barra fixa entra no lugar do balão flutuante */
  .mobile-bar { display: flex; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 0; }
}

@media (max-width: 600px) {
  .effect-link {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "photo body"
      "photo price";
    gap: 0.35rem 1.1rem;
    padding: 1.35rem 0.9rem;
    margin: 0 -0.9rem;
    align-items: start;
  }
  .effect-photo { grid-area: photo; width: 64px; height: 64px; align-self: start; }
  .effect-body { grid-area: body; }
  .effect-go { display: none; }

  .effect-name { font-size: 1.22rem; }
  .effect-desc { font-size: 0.92rem; }
  .effect-price { font-size: 0.85rem; }

  .effect-extra { flex-direction: column; align-items: stretch; padding: 1.4rem; }
  .effect-extra .btn { width: 100%; }

  .footer-grid { align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 0.6rem; }

  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .faq-intro .btn { width: auto; }

  .faq-q { font-size: 0.98rem; gap: 1rem; }

  /* espaço pra barra fixa não cobrir o rodapé */
  .site-footer { padding-bottom: 6rem; }
}
