/* ═══════════════════════════════════════════════
   LETÂNIA BUSATTO — ESTÉTICA PASTEL REFINADA
   Paleta: rosé pó, creme, sálvia claro, terracota
═══════════════════════════════════════════════ */

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

:root {
  /* Paleta principal — pasteis mais ricos e presentes */
  --cream: #f5ede0;
  --cream-deep: #ede0cf;
  --rose-dust: #dec0b5;
  --rose-soft: #edd5ca;
  --blush: #c98f88;
  --sage-mist: #b5c4af;
  --sage-soft: #c8d5c2;
  --sage-deep: #6e8c65;
  --terracotta: #a86552;
  --gold: #bf9660;

  /* Neutros */
  --ink: #2e2820;
  --ink-soft: #5a5248;
  --ink-whisper: #8a837a;
  --porcelain: #fbf7f2;

  /* Semânticas */
  --primary: var(--sage-deep);
  --accent: var(--terracotta);
  --bg: #f7f0e6;
  --surface: var(--cream);

  --shadow-sm:
    0 1px 3px rgba(58, 53, 48, 0.06), 0 1px 2px rgba(58, 53, 48, 0.04);
  --shadow-md:
    0 4px 24px rgba(58, 53, 48, 0.09), 0 2px 8px rgba(58, 53, 48, 0.05);
  --shadow-lg:
    0 12px 48px rgba(58, 53, 48, 0.13), 0 4px 16px rgba(58, 53, 48, 0.07);
  --shadow-soft:
    0 20px 60px -20px rgba(138, 154, 130, 0.35),
    0 8px 24px rgba(138, 154, 130, 0.15);
  --shadow-card:
    0 2px 8px rgba(58, 53, 48, 0.06), 0 8px 32px rgba(58, 53, 48, 0.08);
  --shadow-hover:
    0 8px 40px rgba(58, 53, 48, 0.14), 0 2px 12px rgba(58, 53, 48, 0.08);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Outfit",
    -apple-system,
    sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--rose-dust);
  color: var(--ink);
}

/* ═══════════════════════════ NAVIGATION ═══════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 237, 224, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(181, 196, 175, 0.4);
  transition:
    padding 0.3s ease,
    background 0.3s ease;
}

nav.scrolled {
  padding: 0.9rem 5%;
  background: rgba(245, 237, 224, 0.98);
  box-shadow: 0 4px 24px rgba(58, 53, 48, 0.1);
}

.nav-logo {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 180px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
  margin: -40px 0;
}

#navbar.scrolled .nav-logo img {
  height: 130px;
  margin: -28px 0;
}

.nav-logo span {
  color: var(--sage-deep);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--sage-deep);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--sage-deep);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--sage-deep) !important;
  color: var(--porcelain) !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 100px;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  flex-shrink: 0;
  display: inline-block;
  line-height: 1.2;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--ink) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 120;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 252, 249, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  text-decoration: none;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  padding: 0.6rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile.open a:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-mobile.open a:nth-child(2) {
  transition-delay: 0.15s;
}
.nav-mobile.open a:nth-child(3) {
  transition-delay: 0.2s;
}
.nav-mobile.open a:nth-child(4) {
  transition-delay: 0.25s;
}
.nav-mobile.open a:nth-child(5) {
  transition-delay: 0.3s;
}
.nav-mobile a:hover {
  color: var(--sage-deep);
}

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--sage-deep);
  color: var(--porcelain);
}

.btn-primary1 {
  margin-left: 30%;
  background: var(--sage-deep);
  color: var(--porcelain);
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rose-dust);
}

.btn-outline:hover {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
  background: var(--cream);
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-deep);
  border: none;
  padding: 0;
  border-radius: 100px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(110, 140, 101, 0.32), 0 1px 4px rgba(110, 140, 101, 0.18);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.btn-google::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-google a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--porcelain);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  
}

.btn-google a::before {
  content: "★";
  font-size: 0.9rem;
  color: #fbdc6e;
  line-height: 1;
}

.btn-google:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168, 101, 82, 0.38), 0 2px 8px rgba(168, 101, 82, 0.2);
}

.btn-google:hover a {
  color: var(--porcelain);
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at top left, #e8c9bc 0%, transparent 55%),
    radial-gradient(
      ellipse 60% 55% at bottom right,
      #bacdb3 0%,
      transparent 55%
    ),
    radial-gradient(ellipse 40% 40% at 60% 20%, #edd5ca 0%, transparent 45%),
    #f0e6d8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(110, 140, 101, 0.18) 1px,
    transparent 0
  );
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-flowers {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-flowers-1 {
  width: 55%;
  max-width: 680px;
  right: -8%;
  top: -10%;
  opacity: 0.38;
  transform: rotate(-5deg);
}

.hero-flowers-2 {
  width: 40%;
  max-width: 480px;
  left: -10%;
  bottom: -15%;
  opacity: 0.28;
  transform: scaleX(-1) rotate(12deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: 100vh;
  padding: 120px 5% 4rem;
  gap: 4rem;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.75rem;
  letter-spacing: -0.015em;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait {
  width: 100%;
  margin-top: 35px;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: 280px 280px 60px 60px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 8px solid var(--porcelain);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(138, 154, 130, 0.15);
  border-radius: inherit;
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--porcelain);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 170px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-dust);
  z-index: 2;
}

.hero-badge::before {
  content: "●";
  color: var(--sage-deep);
  margin-right: 0.4rem;
  font-size: 0.6rem;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ═══════════════════════════ SECTION LABELS ═══════════════════════════ */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}

.section-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-h2 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}

/* ═══════════════════════════ SOBRE ═══════════════════════════ */
.about {
  padding: 8rem 5%;
  background: linear-gradient(
    160deg,
    var(--cream) 0%,
    #edd5ca 50%,
    var(--cream-deep) 100%
  );
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text {
  max-width: 560px;
}

.about-photo-inline {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--porcelain);
}

.about-photo-inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-photo-inline:hover img {
  transform: scale(1.04);
}

.about-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-visual {
  position: sticky;
  top: 120px;
}

.about-card {
  background: linear-gradient(145deg, var(--porcelain) 0%, #edd5ca 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--rose-dust);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

#destaque-sobremim h1 {
  font-family: "Fraunces";
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--ink);
  margin-bottom: 1.75rem;
  font-style: italic;
}

#destaque-sobremim p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 700;
  padding: 10px;
  border-bottom: var(--blush) 1px solid;
}

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

.about-card-title {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  color: var(--ink);
  font-style: italic;
}

.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.credential-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rose-dust);
}

.credential-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.credential-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 300;
}

.credential-text strong {
  display: block;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}

/* ═══════════════════════════ SERVIÇOS ═══════════════════════════ */
.services {
  padding: 8rem 5%;
  background: linear-gradient(175deg, #f0e6d8 0%, #e8d8c8 40%, #d8e2d2 100%);
}

.services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4.5rem;
}

.services-header .section-label {
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.service-card {
  background: var(--porcelain);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rose-dust);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-self: start;
}

.service-card:hover {
  border-color: var(--sage-mist);
  background: white;
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--sage-soft);
  flex-shrink: 0;
  position: relative;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

/* Carrossel de imagens dentro do service-card */
.service-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.service-slides.is-carousel {
  display: flex;
  overflow: hidden;
}

.service-slides.is-carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.service-slides.is-carousel img.active {
  opacity: 1;
  pointer-events: auto;
}

.service-card:hover .service-slides.is-carousel img.active {
  transform: scale(1.05);
}

.service-slides-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1.4rem;
  font-family: "Fraunces", serif;
  line-height: 1;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.service-card:hover .service-slides-arrow {
  opacity: 1;
}

.service-slides-arrow:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.service-slides-arrow.prev { left: 12px; }
.service-slides-arrow.next { right: 12px; }

.service-slides-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}

.service-slides-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.service-slides-dots button.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

.service-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--ink);
  flex-shrink: 0;
}

.service-body > p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0;
}

.service-body > p + p {
  margin-top: 0.85rem;
}

.service-tag {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  background: var(--rose-soft);
  border-radius: 100px;
  align-self: flex-start;
  border: 1px solid var(--rose-dust);
  flex-shrink: 0;
}

/* Expansão simples via display: nenhuma animação, zero chance de bug */
.service-extra {
  display: none;
}
.service-extra.open {
  display: block;
}
.service-extra p {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
}

.service-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 0 0;
  text-align: left;
  font-family: inherit;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.service-toggle:hover {
  color: var(--blush);
}

/* ═══════════════════════════ ABORDAGEM ═══════════════════════════ */
.approach {
  padding: 8rem 5%;
  background: linear-gradient(160deg, #edd5ca 0%, #e2d0c5 40%, #c8d5c2 100%);
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.approach-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.approach-header .section-label {
  justify-content: center;
}

.approach-header p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 300;
}

/* Method Tabs (Infantil / Adolescente / Adulto) */
.method-tabs {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 4rem;
  flex-wrap: wrap;
  max-width: 800px;
}

.method-tab {
  flex: 1 1 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.75rem 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid var(--rose-dust);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: "Outfit", sans-serif;
  color: var(--ink-soft);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(168, 101, 82, 0.08);
}

.method-tab:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta);
  color: var(--terracotta);
  box-shadow: 0 10px 28px rgba(168, 101, 82, 0.18);
}

.method-tab.active {
  background: linear-gradient(135deg, var(--porcelain) 0%, var(--rose-soft) 100%);
  border-color: var(--terracotta);
  color: var(--terracotta);
  box-shadow: 0 12px 32px rgba(168, 101, 82, 0.22);
  transform: translateY(-2px);
}

.method-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--terracotta);
  margin-bottom: 0.4rem;
  transition: all 0.35s ease;
}

.method-tab.active .method-tab-icon {
  background: var(--terracotta);
  color: var(--porcelain);
}

.method-tab-label {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
}

.method-tab-age {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}

.steps.method-steps {
  display: none;
  animation: methodFade 0.5s ease;
}

.steps.method-steps.active {
  display: grid;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--terracotta),
    transparent
  );
  z-index: 0;
  opacity: 0.4;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--porcelain) 0%,
    var(--rose-soft) 100%
  );
  border: 1.5px solid var(--rose-dust);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--terracotta);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(168, 101, 82, 0.15);
}

.step:hover .step-num {
  background: var(--terracotta);
  color: var(--porcelain);
  border-color: var(--terracotta);
  transform: scale(1.08);
}

.step h4 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══════════════════════════ CLÍNICAS ═══════════════════════════ */
.clinics {
  padding: 8rem 5%;
  background: linear-gradient(170deg, #e8d8c8 0%, #f0e6d8 50%, #c8d5c2 100%);
}

.clinics-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4.5rem;
}

.clinics-header .section-label {
  justify-content: center;
}

.clinics-subtitle {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.clinics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.clinic-card {
  background: var(--porcelain);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rose-dust);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sage-mist);
}

.clinic-gallery {
  padding: 1rem;
}

.clinic-gallery-main {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--sage-soft);
}

.clinic-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.clinic-card:hover .clinic-gallery-main img {
  transform: scale(1.04);
}

/* Carrossel na imagem principal da clínica */
.clinic-gallery-main.has-carousel {
  position: relative;
}
.clinic-gallery-main.has-carousel .cg-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.clinic-gallery-main.has-carousel .cg-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.clinic-gallery-main.has-carousel .cg-slides img.active {
  opacity: 1;
  pointer-events: auto;
}
.clinic-card:hover .clinic-gallery-main.has-carousel .cg-slides img.active {
  transform: scale(1.04);
}
.cg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.cg-arrow.prev { left: 12px; }
.cg-arrow.next { right: 12px; }
.clinic-gallery-main.has-carousel:hover .cg-arrow { opacity: 1; }
.cg-arrow:hover { background: #fff; }
.cg-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.cg-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cg-dots button.active {
  background: #fff;
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .cg-arrow { opacity: 1; width: 34px; height: 34px; font-size: 1.4rem; }
}

.clinic-gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.clinic-thumb {
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sage-soft);
}

.clinic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clinic-info {
  padding: 1.5rem 2rem 2rem;
}

.clinic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.clinic-info h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.clinic-info p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.clinic-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.clinic-detail-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.clinic-detail-item svg {
  flex-shrink: 0;
  stroke: var(--sage-deep);
}

/* ═══════════════════════════ DEPOIMENTOS ═══════════════════════════ */
.testimonials {
  padding: 8rem 5%;
  background: linear-gradient(
    150deg,
    #edd5ca 0%,
    var(--cream) 50%,
    #e0eada 100%
  );
}

.testimonials-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4.5rem;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--porcelain);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--rose-dust);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Fraunces", serif;
  font-size: 4rem;
  color: var(--rose-dust);
  line-height: 1;
  font-style: italic;
}

.testimonial-card:hover {
  border-color: var(--rose-dust);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.testimonial-text {
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--terracotta);
}

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq {
  padding: 8rem 5%;
  background: linear-gradient(165deg, #d8e2d2 0%, #e8d8c8 60%, #edd5ca 100%);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header .section-label {
  justify-content: center;
}

.faq-item {
  border-bottom: 1px solid var(--rose-dust);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  color: var(--sage-deep);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-soft);
  border: 1px solid var(--rose-dust);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.faq-icon svg path {
  stroke: var(--terracotta);
}

.faq-item.open .faq-icon {
  background: var(--terracotta);
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg path {
  stroke: var(--porcelain);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  padding: 0;
  font-weight: 300;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.75rem;
}

/* FAQ com botão WhatsApp */
.faq-answer--whatsapp p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
}

.btn-faq-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: fit-content;
  margin: 0 auto;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
}

/* ═══════════════════════════ CONTATO ═══════════════════════════ */
.contact {
  padding: 8rem 5%;
  background: linear-gradient(160deg, #e8d8c8 0%, #edd5ca 40%, #c8d5c2 100%);
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-label {
  justify-content: center;
}
.contact-inner .section-h2 {
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ═══════════════════════════ JUNG QUOTE ═══════════════════════════ */
.jung-quote {
  position: relative;
  margin: 0 0 2.5rem;
  padding: 1.75rem 2rem 1.75rem 2.5rem;
  background: linear-gradient(135deg, #edd5ca 0%, #dec0b5 100%);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--terracotta);
  box-shadow: var(--shadow-card);
}

.jung-quote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: "Fraunces", serif;
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.18;
  line-height: 1;
}

.jung-quote p {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 0.75rem !important;
}

.jung-quote cite {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
  font-style: normal;
}

/* ═══════════════════════════ CLINIC WHATSAPP BTN ═══════════════════════════ */
.btn-whatsapp-clinic {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: #25d366;
  border: 1.5px solid #25d366;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 1.25rem 1.5rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.1);
}

.btn-whatsapp-clinic:hover {
  background: #25d366;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ═══════════════════════════ CONTACT CARDS ═══════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
  text-align: left;
}

.contact-card {
  background: var(--porcelain);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  border: 1px solid var(--rose-dust);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sage-mist);
}

.contact-card--primary {
  background: linear-gradient(135deg, #e0eada 0%, var(--sage-soft) 100%);
  border-color: var(--sage-mist);
}

.contact-card--clinic {
  background: linear-gradient(135deg, var(--porcelain) 0%, #edd5ca 100%);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(138, 154, 130, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--sage-deep);
  transition: all 0.3s ease;
}

.contact-card-icon--rose {
  background: rgba(216, 165, 160, 0.15);
  color: var(--blush);
}

.contact-card-icon--sage {
  background: rgba(138, 154, 130, 0.12);
  color: var(--sage-deep);
}

.contact-card-icon--terracotta {
  background: rgba(182, 126, 111, 0.12);
  color: var(--terracotta);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.08);
}

.contact-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
  font-style: italic;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 300;
  flex: 1;
}

/* WhatsApp buttons */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  align-self: flex-start;
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp--soft {
  background: var(--blush);
  box-shadow: 0 4px 16px rgba(216, 165, 160, 0.25);
}

.btn-whatsapp--soft:hover {
  background: var(--terracotta);
  box-shadow: 0 10px 28px rgba(182, 126, 111, 0.35);
}

.btn-whatsapp--sage {
  background: var(--sage-deep);
  box-shadow: 0 4px 16px rgba(138, 154, 130, 0.25);
}

.btn-whatsapp--sage:hover {
  background: #6e7e68;
  box-shadow: 0 10px 28px rgba(138, 154, 130, 0.35);
}

.btn-whatsapp--terracotta {
  background: var(--terracotta);
  box-shadow: 0 4px 16px rgba(182, 126, 111, 0.25);
}

.btn-whatsapp--terracotta:hover {
  background: #a0705f;
  box-shadow: 0 10px 28px rgba(182, 126, 111, 0.35);
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(254, 252, 249, 0.6);
  padding: 4rem 5% 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--porcelain);
  margin-bottom: 0.75rem;
}

.footer-brand span {
  color: var(--sage-mist);
  font-weight: 300;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(254, 252, 249, 0.45);
  font-weight: 300;
}

.footer-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(254, 252, 249, 0.55);
  font-size: 0.9rem;
  transition: color 0.25s ease;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--sage-mist);
}

.footer-bottom {
  background: #2a2520;
  padding: 1.25rem 5%;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(254, 252, 249, 0.3);
  font-weight: 300;
}

/* ═══════════════════════════ ANIMATIONS ═══════════════════════════ */

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */

/* ═══════════════════════════ FLOATING WHATSAPP ═══════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 0.85rem 1.4rem 0.85rem 1.1rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  box-shadow:
    0 6px 28px rgba(37, 211, 102, 0.45),
    0 2px 8px rgba(37, 211, 102, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.whatsapp-float:hover {
  background: #1db954;
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 12px 40px rgba(37, 211, 102, 0.5),
    0 4px 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-float-label {
  white-space: nowrap;
}

/* ═══════════════════════════ GOOGLE REVIEWS ═══════════════════════════ */
.google-reviews {
  padding: 6rem 5%;
  background: linear-gradient(160deg, var(--cream-deep) 0%, #e8d8c8 100%);
}

.google-reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.gr-left {
  flex-shrink: 0;
  text-align: center;
  min-width: 160px;
}

.gr-rating-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.gr-stars {
  font-size: 2.2rem;
  color: #fbbc05;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gr-base {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.gr-base strong {
  color: var(--ink);
  font-weight: 500;
}

.gr-logo {
  display: flex;
  justify-content: center;
}

.gr-carousel-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
}

.gr-carousel {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gr-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  background: var(--porcelain);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--rose-dust);
  box-shadow: var(--shadow-card);
  
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.gr-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.gr-card-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gr-card-meta strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.gr-card-meta span {
  font-size: 0.75rem;
  color: var(--ink-whisper);
  font-weight: 300;
}

.gr-g {
  flex-shrink: 0;
}

.gr-stars-sm {
  color: #fbbc05;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.gr-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

.gr-nav {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  justify-content: flex-end;
}

.gr-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rose-dust);
  background: var(--porcelain);
  color: var(--ink-soft);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.gr-btn:hover {
  background: var(--sage-deep);
  color: white;
  border-color: var(--sage-deep);
  transform: scale(1.08);
}

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */



.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0.5rem;
  line-height: 0;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.nav-mobile-close:hover {
  color: var(--terracotta);
  transform: rotate(90deg);
}

/* ═══════════════════════════ MEDIA QUERIES ═══════════════════════════ */

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.8s ease,
      transform 0.8s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up:nth-child(2) {
    transition-delay: 0.1s;
  }
  .fade-up:nth-child(3) {
    transition-delay: 0.2s;
  }
  .fade-up:nth-child(4) {
    transition-delay: 0.3s;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Navbar: reduzir espaçamento em telas médias para evitar overflow */
@media (max-width: 1180px) {
  nav {
    padding: 1.5rem 3%;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }
  .nav-cta {
    padding: 0.55rem 1.15rem !important;
  }
  .nav-logo img {
    height: 150px;
    margin: -32px 0;
  }
}

/* Abaixo de 1024px já vira menu hamburger para garantir espaço */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
    min-height: auto;
    padding-bottom: 4rem;
    gap: 3rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }

  .hero-portrait {
    max-width: 320px;
  }
  .hero-badge {
    left: 0;
    bottom: 15px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 5%;
  }
  .about-visual {
    position: static;
  }
  .about-text {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
  .clinics-grid {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
  .google-reviews-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .gr-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: auto;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
  }
  .gr-card {
    flex: 0 0 calc(50% - 0.63rem);
  }
  .gr-carousel-wrap {
    width: 100%;
  }
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 120px;
    margin: -25px 0;
  }
  #navbar.scrolled .nav-logo img {
    height: 95px;
    margin: -20px 0;
  }
  .service-slides-arrow {
    opacity: 1;
    width: 34px;
    height: 34px;
  }
  .method-tabs {
    gap: 0.75rem;
  }
  .method-tab {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: row;
    text-align: left;
    padding: 1rem 1.25rem;
  }
  .method-tab-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .method-tab-icon svg {
    width: 28px;
    height: 28px;
  }
  .method-tab-label {
    font-size: 1.05rem;
  }
  .service-card{
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 3rem;
  }
  .hero-portrait {
    max-width: 260px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.6rem 0.9rem;
    max-width: 140px;
  }

  .about {
    padding: 4.5rem 5%;
    gap: 2.5rem;
  }
  .about-card {
    padding: 2rem;
  }
  .services {
    padding: 4.5rem 5%;
  }

  .service-card{
    min-height: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-img {
    height: 350px;
  }
  .approach {
    padding: 4.5rem 5%;
  }
  .clinics {
    padding: 4.5rem 5%;
  }
  .clinic-gallery-main {
    height: 220px;
  }
  .clinic-thumb {
    height: 130px;
  }
  .clinic-info {
    padding: 1.25rem 1.5rem 1.75rem;
  }
  .testimonials {
    padding: 4.5rem 5%;
  }
  .testimonial-card {
    padding: 1.75rem;
  }
  .faq {
    padding: 4.5rem 5%;
  }
  .faq-question {
    font-size: 0.92rem;
    padding: 1.5rem 0;
  }
  .contact {
    padding: 4.5rem 5%;
  }
  .whatsapp-card {
    padding: 2.5rem 1.75rem;
  }
  footer {
    padding: 3rem 5% 2rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.9rem 1.8rem;
    font-size: 0.78rem;
  }

  .hero-flowers-1 {
    opacity: 0.25;
  }
  .hero-flowers-2 {
    opacity: 0.18;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .btn-whatsapp-clinic {
    margin: 1rem 1.25rem 1.25rem;
  }
  .jung-quote {
    padding: 1.25rem 1.25rem 1.25rem 1.75rem;
  }
  .jung-quote p {
    font-size: 0.95rem;
  }
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.85rem;
  }
  .whatsapp-float-label {
    display: none;
  }
  .google-reviews {
    padding: 4.5rem 5%;
  }
  .google-reviews-inner {
    gap: 1.5rem;
  }
  .gr-left {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.5rem;
  }
  .gr-card {
    flex: 0 0 80vw;
  }
  .gr-nav {
    justify-content: center;
  }
  /* Hero */
  .hero-content {
    padding-top: 100px;
    padding-bottom: 3rem;
  }
  .hero-portrait {
    max-width: 260px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.6rem 0.9rem;
    max-width: 140px;
  }
  .hero-flowers-1 {
    opacity: 0.15;
  }
  .hero-flowers-2 {
    opacity: 0.1;
  }

  /* About */
  .about {
    padding: 4.5rem 5%;
    gap: 2.5rem;
  }
  .about-card {
    padding: 2rem;
  }

  /* Services */
  .services {
    padding: 4.5rem 5%;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  .service-img {
    height: 450px;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
  }

  /* Clinics */
  .approach {
    padding: 4.5rem 5%;
  }
  .clinics {
    padding: 4.5rem 5%;
  }
  .clinic-gallery-main {
    height: 220px;
  }
  .clinic-thumb {
    height: 130px;
  }
  .clinic-info {
    padding: 1.25rem 1.5rem 1.75rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 4.5rem 5%;
  }
  .testimonial-card {
    padding: 1.75rem;
  }

  /* FAQ */
  .faq {
    padding: 4.5rem 5%;
  }
  .faq-question {
    font-size: 0.92rem;
    padding: 1.5rem 0;
  }

  /* Contact */
  .contact {
    padding: 4.5rem 5%;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .whatsapp-card {
    padding: 2.5rem 1.75rem;
  }
  .btn-whatsapp-clinic {
    margin: 1rem 1.25rem 1.25rem;
  }

  /* Quote */
  .jung-quote {
    padding: 1.25rem 1.25rem 1.25rem 1.75rem;
  }
  .jung-quote p {
    font-size: 0.95rem;
  }

  /* Buttons */
  .btn-primary,
  .btn-outline {
    padding: 0.9rem 1.8rem;
    font-size: 0.78rem;
  }

  /* Footer */
  footer {
    padding: 3rem 5% 2rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Nav mobile links */
  .nav-mobile a {
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
  }
}

@media (max-width: 380px) {
  .hero-portrait {
    max-width: 220px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
  .gr-card {
    flex: 0 0 90vw;
  }

  .service-card{
    min-height: 0;
  }
}

@media (max-width: 320px) {
  .hero-portrait {
    max-width: 220px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
  .nav-mobile a {
    font-size: 1.3rem;
  }
  .service-card{
    min-height: 0;
  }
  
}
