/* ============================================================
   Dra. Lívia Laeny — Landing Page
   Paleta: verde sálvia, nude/creme, dourado, terracota suave
   ============================================================ */

:root {
  --blue-grey: #A6BAC6;
  --blue-grey-dark: #8a9aa8;
  --blue-grey-light: #c5d1da;
  --skin-tone: #e8c4b0;
  --skin-tone-light: #f5dfd1;
  --green-900: #2f3e35;
  --green-700: #4a6155;
  --green-500: #7c9885;
  --green-100: #dce6df;
  --sand-100: #f6f0e8;
  --sand-200: #ede2d3;
  --sand-300: #e0d0bb;
  --gold: #A6BAC6;
  --gold-soft: #8a9aa8;
  --ink: #33352f;
  --muted: #6d6f66;
  --white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -30px rgba(47, 62, 53, 0.45);
  --shadow-soft: 0 16px 40px -24px rgba(47, 62, 53, 0.4);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand-100);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.4rem; }

em {
  font-style: italic;
  color: var(--gold);
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green-500);
  margin-bottom: 1rem;
}

.section-head { margin-bottom: 3.2rem; max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p:last-child { color: var(--muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.95rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  border: 1px solid transparent;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--green-700);
  color: var(--sand-100);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--green-900); transform: translateY(-3px); }

.btn-ghost {
  background: transparent;
  border-color: var(--green-500);
  color: var(--green-700);
}
.btn-ghost:hover { background: var(--green-500); color: var(--white); transform: translateY(-3px); }

.btn-header {
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
}
.btn-header:hover { background: var(--gold-soft); transform: translateY(-2px); }

.link-cta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-cta:hover { color: var(--green-700); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 240, 232, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(124, 152, 133, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.brand { 
  display: flex; 
  align-items: center;
  gap: 0.85rem;
  transition: opacity 0.3s var(--ease);
}
.brand:hover { opacity: 0.8; }

.logo-symbol {
  height: 68px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0.55) saturate(1.3) contrast(1.1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--green-900);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-500);
}

.nav { display: flex; gap: 2rem; margin-left: auto; }
.nav a {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: var(--green-900);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.header-inner .btn-header { margin-left: 0.5rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--green-900);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% 0%, var(--green-100) 0%, transparent 45%),
    linear-gradient(180deg, var(--sand-100) 0%, var(--sand-200) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero-copy .eyebrow { color: var(--gold); }
.hero h1 { margin-bottom: 1.4rem; }
.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  list-style: none;
}
.hero-badges li {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--green-700);
  position: relative;
  padding-left: 1.2rem;
}
.hero-badges li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--gold);
}

.hero-image { position: relative; justify-self: center; }
.hero-image-frame {
  position: relative;
  border-radius: 240px 240px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  z-index: 2;
}
.hero-image-frame img {
  width: min(420px, 78vw);
  height: auto;
  object-fit: cover;
}
.hero-decor {
  position: absolute;
  inset: -22px -22px auto auto;
  width: 68%;
  aspect-ratio: 1;
  border: 1.5px solid var(--gold-soft);
  border-radius: 200px 200px 12px 12px;
  z-index: 1;
}

/* ============================================================
   WHY
   ============================================================ */
.why { padding-block: clamp(4rem, 8vw, 7rem); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 152, 133, 0.12);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.why-card p { font-size: 1rem; color: var(--muted); }
.why-card strong { color: var(--green-900); font-weight: 500; }

/* ============================================================
   EMOTION
   ============================================================ */
.emotion {
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  color: var(--sand-100);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.emotion-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.emotion-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid rgba(255,255,255,0.1);
}
.emotion-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.emotion-copy h2 { color: var(--white); margin-bottom: 1.4rem; }
.emotion-copy h2 em { color: var(--gold-soft); }
.emotion-copy p { color: rgba(246, 240, 232, 0.85); margin-bottom: 1rem; }
.emotion-copy strong { color: var(--white); font-weight: 500; }
.emotion-cta-line {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-soft) !important;
  margin: 1.6rem 0 2rem !important;
}
.emotion-copy .btn-primary { background: var(--gold); color: var(--white); }
.emotion-copy .btn-primary:hover { background: var(--gold-soft); }

/* ============================================================
   TREATMENTS
   ============================================================ */
.treatments { padding-block: clamp(4rem, 8vw, 7rem); }
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 152, 133, 0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.treatment-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.treatment-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.treatment-card:hover::before { transform: scaleX(1); }
.treatment-number {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.treatment-card h3 { margin-bottom: 1rem; }
.treatment-card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.6rem; flex: 1; }

.conditions {
  margin-top: 3.4rem;
  text-align: center;
  background: var(--sand-200);
  border-radius: var(--radius);
  padding: 2.4rem;
}
.conditions-highlight {
  background: linear-gradient(135deg, var(--blue-grey-light) 0%, var(--skin-tone-light) 100%);
  padding: 3.2rem 2.4rem;
}
.conditions-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 2rem;
}
.conditions-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-inline: auto;
}
.condition-highlight {
  background: var(--white);
  border: 2px solid var(--blue-grey);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.condition-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.condition-highlight h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}
.condition-highlight p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.conditions-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.conditions-list li {
  background: var(--white);
  border: 1px solid var(--blue-grey);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--green-700);
  font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, var(--sand-200), var(--sand-100));
}
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  position: relative;
}
.about-image-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; }
.about-copy h2 { margin-bottom: 1.4rem; }
.about-copy > p { color: var(--muted); margin-bottom: 1.8rem; }
.formations {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.8rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}
.formations h4 {
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  color: var(--green-900);
}
.formations ul { list-style: none; }
.formations li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.formations li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--gold);
}

/* ============================================================
   CLINIC
   ============================================================ */
.clinic { padding-block: clamp(4rem, 8vw, 7rem); }
.clinic-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.clinic-copy h2 { margin-bottom: 1.4rem; }
.clinic-copy p { color: var(--muted); margin-bottom: 2rem; max-width: 46ch; }
.clinic-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  max-width: 380px;
  margin-left: auto;
}
.clinic-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 32%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(160deg, var(--green-100), var(--sand-100));
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 152, 133, 0.12);
}
.stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--green-900);
  margin-bottom: 1.2rem;
}
.testimonial figcaption {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Área para o widget de avaliações do Google */
.reviews-embed { width: 100%; }
.reviews-placeholder {
  background: var(--white);
  border: 2px dashed var(--green-500);
  border-radius: var(--radius);
  padding: clamp(2rem, 6vw, 3.5rem) 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.reviews-icon {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}
.reviews-placeholder p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

/* ============================================================
   VÍDEO DEPOIMENTOS
   ============================================================ */
.video-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--sand-100);
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  background: var(--ink);
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: clamp(4rem, 8vw, 7rem); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq-note { color: var(--muted); }
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }
.faq-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  position: sticky;
  top: 100px;
}
.faq-image img { 
  width: 100%; 
  aspect-ratio: 3/4; 
  object-fit: cover; 
  object-position: center;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124, 152, 133, 0.16);
  padding: 0 1.6rem;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-900);
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted);
  padding-bottom: 1.4rem;
  margin-top: -0.3rem;
  font-size: 0.98rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--sand-100);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-copy .eyebrow { color: var(--gold-soft); }
.contact-copy h2 { color: var(--white); margin-bottom: 1.6rem; }
.contact-copy h2 em { color: var(--gold-soft); }
.contact-address, .contact-phone { color: rgba(246,240,232,0.85); margin-bottom: 1.4rem; line-height: 1.7; }
.contact-address strong, .contact-phone { color: var(--white); }
.contact-phone a {
  color: var(--gold-soft);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(166, 186, 198, 0.4);
  text-underline-offset: 3px;
}
.contact-phone a:hover { 
  color: var(--white); 
  text-decoration-color: var(--white);
}
.contact-copy .btn-primary { background: var(--gold); color: var(--white); margin-top: 0.6rem; }
.contact-copy .btn-primary:hover { background: var(--gold-soft); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid rgba(255,255,255,0.12);
  min-height: 340px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-900);
  color: rgba(246,240,232,0.7);
  padding-block: 2.6rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: var(--gold-soft); }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.85rem; color: rgba(246,240,232,0.75); transition: color 0.3s var(--ease); }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-legal { font-size: 0.75rem; line-height: 1.7; width: 100%; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.4rem; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.3s var(--ease);
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav, .header-inner > .btn-header { display: none; }
  .menu-toggle { display: flex; }

  /* Esconder texto em telas menores, deixar só o símbolo */
  .brand-text { display: none; }
  .logo-symbol { height: 44px; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--sand-100);
    padding: 1.4rem clamp(20px, 5vw, 48px) 2rem;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(124,152,133,0.2);
    box-shadow: var(--shadow-soft);
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-image { order: -1; }

  .emotion-inner,
  .about-inner,
  .clinic-inner,
  .faq-inner,
  .contact-inner { grid-template-columns: 1fr; }

  .emotion-image, .about-image, .clinic-image, .faq-image { max-width: 480px; margin-inline: auto; }
  .about-image { order: -1; }
  .faq-image { order: -1; position: relative; top: 0; }
  .faq-inner .section-head { text-align: left; }
}

@media (max-width: 640px) {
  .hero-image-frame img { width: min(320px, 72vw); }
  .hero-image-frame { border-radius: 180px 180px var(--radius) var(--radius); }
  .hero-badges { flex-direction: column; gap: 0.5rem; align-items: center; }
  .why-card, .treatment-card, .testimonial { padding: 1.8rem 1.5rem; }
  .conditions, .conditions-highlight { padding: 1.8rem 1.2rem; }
  .conditions-featured { gap: 1.5rem; }
  .condition-highlight { padding: 1.5rem 1.2rem; }
  .emotion-cta-line { font-size: 1.35rem !important; }
  .contact-map, .contact-map iframe { min-height: 280px; }
  .footer-nav { gap: 1rem 1.2rem; }
}

@media (max-width: 520px) {
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  
  /* Ajustar tamanho da logo em telas muito pequenas */
  .logo-symbol { height: 40px; }
  
  .brand-name { font-size: 1.2rem; }
  .section-head { margin-bottom: 2.4rem; }
  .faq-item summary { font-size: 1.1rem; }
}

