/* ═══════════════════════════════════════════
   ESPAÇO VIDA — style.css  (Awwwards Redesign)
   ═══════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────── */
:root {
  --bege-claro: #e8e3d8;
  --areia: #d6b98d;
  --terracota-medio: #bf7456;
  --terracota-escuro: #a95533;
  --verde-agua: #80b0aa;
  --verde-agua-escuro: #3d9e91;
  --verde-medio: #108777;
  --verde-profundo: #04574c;

  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #ffffff;

  --font-display: "Montserrat", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --header-h: 80px;
  --radius-card: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-w: 1280px;

  /* New tokens */
  --surface-dark: #0a1f1c;
  --surface-mid: #0f2d28;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.14);
  --easing-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ───────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bege-claro);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
svg {
  flex-shrink: 0;
}
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
}

:focus-visible {
  outline: 3px solid var(--verde-agua);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Scroll Progress Bar ────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--terracota-escuro),
    var(--terracota-medio)
  );
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Utilitários ────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.section-eyebrow {
  display: block;
  font-size: clamp(0.85rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--terracota-medio);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 0.85rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--verde-profundo);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.65;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── Split Text ─────────────────────────────── */
.line-wrap {
  overflow: hidden;
  display: block;
}
.line-inner {
  display: block;
}

/* ── Botões ─────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-hero-cta,
.btn-header-cta,
.btn-whatsapp-grande {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracota-escuro);
  color: white;
  padding: 0.9rem 2.2rem;
  font-size: 0.875rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--terracota-medio);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(169, 85, 51, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--verde-profundo);
  border: 1.5px solid var(--verde-profundo);
  padding: 0.8rem 1.9rem;
  font-size: 0.875rem;
  border-radius: 50px;
}
.btn-secondary:hover {
  background: var(--verde-profundo);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.9rem;
  font-size: 0.875rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  gap: 0.6rem;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-2px);
}

.btn-hero-cta {
  background: rgba(4, 87, 76, 0.75);
  color: white;
  padding: 0.9rem 1.9rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}
.btn-hero-cta:hover {
  background: var(--verde-medio);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 87, 76, 0.3);
}

.btn-header-cta {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
  white-space: nowrap;
  border-color: var(--text-dark);
}
#site-header.scrolled .btn-header-cta {
  color: var(--terracota-medio);
  border-color: var(--terracota-medio);
  background: transparent;
}

.btn-header-cta:hover,
#site-header.scrolled .btn-header-cta:hover {
  background: #00e667;
  border-color: #00e667;
  color: white;
}

.btn-whatsapp-grande {
  background: #25d366;
  color: white;
  padding: 1.15rem 3rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  max-width: 380px;
  width: 100%;
  animation: wa-glow 2.5s ease-in-out infinite;
}
.btn-whatsapp-grande:hover {
  background: #1ebe59;
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5);
}

@keyframes wa-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

/* ── Magnetic Button ────────────────────────── */
.magnetic-btn {
  position: relative;
  will-change: transform;
}

/* ══════════════════════════════════════════════
   HEADER — Glass Pill Flutuante
══════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px clamp(1.5rem, 5vw, 4rem);
  pointer-events: none;
  transition: padding var(--transition);
}

#site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

#site-header.scrolled .header-pill {
  background: rgba(4, 20, 18, 0.88);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* ── Header topo: textos terracota antes do scroll ── */
#site-header:not(.scrolled) #main-nav a {
  color: var(--verde-profundo);
}
#site-header:not(.scrolled) #main-nav a:hover {
  color: var(--terracota-medio);
}
#site-header:not(.scrolled) .btn-header-cta {
  color: var(--verde-profundo);
  border-color: var(--verde-profundo);
}
#site-header:not(.scrolled) .hamburger {
  border-color: var(--terracota-escuro);
}
#site-header:not(.scrolled) .ham-line {
  background: var(--terracota-escuro);
}

.header-logo {
  flex-shrink: 0;
  display: block;
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: filter 0.4s ease;
}

#site-header.scrolled .header-logo img {
  filter: brightness(20) saturate(0);
}

#main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

#main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

#main-nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 2px;
  transition: color 0.35s ease;
}

#main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--terracota-medio);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--easing-expo);
}

#main-nav a:hover {
  color: white;
}

#main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color var(--transition);
}

.hamburger:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

.ham-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition:
    transform 0.35s var(--easing-expo),
    opacity 0.25s ease;
}

.hamburger.active .ham-line:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.hamburger.active .ham-line:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Mobile Nav — Full Screen Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--verde-profundo);
  z-index: 999;
  padding: 2rem clamp(1.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.55s var(--easing-expo);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.mobile-nav-close:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-close [data-lucide] {
  width: 20px;
  height: 20px;
}

.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 2rem;
}

.mobile-nav nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.8rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1.15;
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition:
    color 0.25s ease,
    opacity 0.4s ease,
    transform 0.4s var(--easing-expo);
}

.mobile-nav.open nav a {
  opacity: 1;
  transform: translateY(0);
  color: white;
}

.mobile-nav nav li:nth-child(1) a {
  transition-delay: 0.08s;
}
.mobile-nav nav li:nth-child(2) a {
  transition-delay: 0.14s;
}
.mobile-nav nav li:nth-child(3) a {
  transition-delay: 0.2s;
}
.mobile-nav nav li:nth-child(4) a {
  transition-delay: 0.26s;
}
.mobile-nav nav li:nth-child(5) a {
  transition-delay: 0.32s;
}

.mobile-nav nav a:hover {
  color: var(--terracota-medio);
}

.mobile-nav-cta {
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terracota-medio);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s ease 0.38s;
}

.mobile-nav.open .mobile-nav-cta {
  opacity: 1;
}

.mobile-nav-social {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  opacity: 0;
  transition: opacity 0.4s ease 0.44s;
}

.mobile-nav.open .mobile-nav-social {
  opacity: 1;
}

.mobile-nav-social a {
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--transition);
}

.mobile-nav-social a:hover {
  color: var(--verde-agua);
}

/* ── Liquid-glass utility ───────────────────── */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   HERO — Full Background (Mobile-first)
══════════════════════════════════════════════ */

/* ── Base ───────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: var(--bege-claro);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 26px;
}

/* Overlay escuro sobre a foto para legibilidade */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--areia), transparent);
  z-index: 2;
  opacity: 0.5;
  pointer-events: none;
}

/* Imagem de fundo */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

@media (max-width: 440px) {
  .hero-bg-wrap {
    display: none;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

/* Imagem inline mobile */
/* ── Imagem de fundo mobile ─────────────────── */
.hero-mobile-img {
  display: none;
}

@media (max-width: 440px) {
  .hero-bg-img {
    display: none;
  }

  .hero-mobile-img {
    display: block;
    position: absolute;
    top: 19%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 100svh;
    height: 100svh;
    object-fit: none;
    object-position: center top;
    z-index: 0;
  }
}

/* Container de conteúdo */
.hero-split {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex: 1;
  width: 100%;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(5.5rem, 12vh, 7rem) clamp(1.5rem, 5vw, 4rem) 2.5rem;
  position: relative;
  z-index: 2;
  justify-content: center;
  position: relative;
}

.logotipo-hero {
  position: relative;
  width: clamp(70px, 18vw, 70px);
  right: auto;
  top: auto;
  align-self: flex-start;
  margin-bottom: 1rem;
}

/* Desktop ≥900px: logo flutua no canto superior direito */
@media screen and (min-width: 900px) {
  .logotipo-hero {
    position: absolute;
    width: clamp(140px, 12vw, 200px);
    right: 5rem;
    top: 7rem;
    margin-bottom: 0;
    align-self: auto;
    width: 260px;
  }
}

@media screen and (max-width: 706px) {
  .hero-bg-img {
    object-position: center top;
  }

  #hero {
    min-height: 100svh;
    justify-content: flex-start;
  }

  #hero::before {
    background: linear-gradient(180deg, var(--areia), transparent);
  }

  .logotipo-hero {
    position: relative;
    width: 70px;
    right: auto;
    top: auto;
    align-self: center;
    margin-top: 70px;
    margin-bottom: 0.3rem;
  }

  .hero-split {
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 20px;
    margin-bottom: 300px;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }
}

/* ── Círculos decorativos ────────────────────── */
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
}

.hero-circle--green {
  width: clamp(380px, 52vw, 680px);
  top: -18%;
  right: -8%;
  animation: circle-spin 40s linear infinite;
}

.hero-circle--terra {
  width: clamp(220px, 30vw, 420px);
  bottom: 0%;
  left: -6%;
  animation: circle-spin 55s linear infinite reverse;
}

@keyframes circle-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 706px) {
  .hero-circle--green {
    width: clamp(220px, 70vw, 320px);
    top: 5%;
    right: -30%;
    left: auto;
  }

  .hero-circle--terra {
    width: clamp(160px, 55vw, 240px);
    bottom: 8%;
    left: -32%;
    right: auto;
  }
}

/* ── Coluna de texto ─────────────────────────── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  margin-top: 30px;
  width: 100%;
}

.hero-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--terracota-medio);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  color: var(--verde-profundo);
  line-height: 1.08;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.267);
}

.hero-h1 em {
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--verde-agua-escuro);
  line-height: 1.35;
}

.hero-h1 strong {
  font-size: 45px;
  font-weight: 700;
  color: var(--verde-profundo);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-h1 span {
  color: var(--verde-medio);
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--terracota-medio);
  border-radius: 2px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 520px;
}

/* ── CTAs ────────────────────────────────────── */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 0.4rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s ease 0.25s,
    transform 0.9s ease 0.25s;
}

.hero-cta-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Info strip ──────────────────────────────── */
.hero-info {
  list-style: none;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-info-item,
.hero-info-item a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 15px;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.76);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-info-item a:hover {
  color: var(--terracota-medio);
}

.hero-info-item [data-lucide],
.hero-info-item .fa-brands {
  width: 14px;
  height: 14px;
  font-size: 14px;
  stroke: var(--terracota-medio);
  color: var(--terracota-medio);
  stroke-width: 2;
  flex-shrink: 0;
}

@media screen and (max-width: 706px) {
  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .hero-h1 {
    font-size: 25px;
    line-height: 1.25;
    gap: 0.05rem;
  }

  .hero-h1 strong {
    font-size: 20px;
  }

  .hero-h1 em {
    font-size: 16px;
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-divider {
    width: 28px;
    height: 2px;
    margin: 0.3rem auto;
  }

  .hero-info {
    margin: 0.5rem 0 0;
    padding: 0.4rem 0 0;
    gap: 0.3rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    border-top: 1px solid rgba(30, 30, 30, 0.08);
  }

  .hero-info-item,
  .hero-info-item a {
    font-size: 10px;
    gap: 0.25rem;
  }

  .hero-info-item [data-lucide],
  .hero-info-item .fa-brands {
    width: 10px;
    height: 10px;
    font-size: 10px;
  }

  .hero-cta-row {
    justify-content: center;
    width: 100%;
    padding-top: 0.5rem;
  }

  .hero-cta-row a {
    width: 100%;
  }

  .hero-btn-br { display: inline; }

  .hero-cta-row .btn-hero-wa {
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero-cta-row .btn-hero-wa .arr-1,
  .hero-cta-row .btn-hero-wa .arr-2 {
    display: none;
  }

  .hero-cta-row .btn-hero-wa .text {
    transform: translateX(0);
  }

  .hero-cta-row .btn-hero-wa:hover .text {
    transform: translateX(0);
  }

  .hero-stats {
    margin-top: 100px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

/* ── Botão 1: WhatsApp — animated arrow ──────── */
.hero-btn-br { display: none; }

.btn-hero-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 32px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background-color: var(--verde-profundo);
  border-radius: 100px;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 36, 11, 0.116);
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hero-wa svg.arr-1,
.btn-hero-wa svg.arr-2 {
  position: absolute;
  width: 20px;
  fill: #fff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hero-wa .arr-1 {
  right: 14px;
}
.btn-hero-wa .arr-2 {
  left: -25%;
}

.btn-hero-wa .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  background-color: #00e667;
  border-radius: 50%;
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hero-wa .text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hero-wa:hover {
  box-shadow: 0 0 0 12px transparent;
  border-radius: 12px;
}

.btn-hero-wa:hover .arr-1 {
  right: -25%;
}
.btn-hero-wa:hover .arr-2 {
  left: 14px;
}
.btn-hero-wa:hover .text {
  transform: translateX(12px);
}

.btn-hero-wa:hover .circle {
  transform: translate(-50%, -50%) scale(4);
}

.btn-hero-wa:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6);
}

/* ── Botão 2: Ver serviços — outline simples ─── */
.btn-hero-agendar {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--terracota-medio);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.65rem;
  border-radius: 8px;
  border: 1.5px solid var(--terracota-medio);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.2s ease;
}

.btn-hero-agendar:hover {
  background: var(--terracota-medio);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-agendar:active {
  transform: translateY(0);
}

/* ── Barra de diferenciais — Organic Clinical Luxury ── */
.hero-stats {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  background: rgba(255, 255, 255, 0.233);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(128, 176, 170, 0.2);
  box-shadow:
    0 8px 48px rgba(4, 87, 76, 0.1),
    0 2px 10px rgba(4, 87, 76, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  z-index: 99;
}

/* Linha de acento gradiente no topo */
.hero-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--verde-agua) 20%,
    var(--verde-medio) 50%,
    var(--verde-agua) 80%,
    transparent 100%
  );
}

.hero-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2rem);
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(128, 176, 170, 0.12);
  transition: background 0.2s ease;
}

.hero-stat:last-child {
  border-bottom: none;
}

/* Ícone circular com halo no hover */
.stat-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(128, 176, 170, 0.16) 0%,
    rgba(16, 135, 119, 0.08) 100%
  );
  border: 1.5px solid rgba(128, 176, 170, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-medio);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s var(--easing-expo),
    transform 0.35s var(--easing-back);
}

.stat-icon [data-lucide] {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

.stat-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--verde-profundo);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.stat-info span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: #6b7a78;
  line-height: 1.45;
  margin-top: 3px;
  letter-spacing: 0.015em;
}

/* ── Tablet (≥ 600px): 2 colunas ────────────── */
@media (min-width: 600px) {
  .hero-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-inline: 0;
  }

  .hero-stat {
    padding: 1.2rem 1.6rem;
    border-bottom: 1px solid rgba(128, 176, 170, 0.1);
    border-right: 1px solid rgba(128, 176, 170, 0.1);
  }

  .hero-stat:nth-child(even) {
    border-right: none;
  }
  .hero-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .hero-stat:last-child:nth-child(odd) {
    border-right: none;
  }
}

/* ── Desktop (≥ 900px): 5 colunas ───────────── */
@media (min-width: 900px) {
  .hero-text {
    max-width: 620px;
  }

  .hero-stats-inner {
    grid-template-columns: repeat(5, 1fr);
    padding-block: 0;
    padding-inline: 0;
  }

  .hero-stat {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.9rem;
    padding: 1.9rem 1.25rem;
    border-bottom: none;
    border-right: none;
    position: relative;
  }

  /* Divisores gradiente verticais */
  .hero-stat::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(128, 176, 170, 0.4) 30%,
      rgba(128, 176, 170, 0.4) 70%,
      transparent
    );
  }

  .hero-stat:last-child::after {
    display: none;
  }

  .hero-stat:nth-child(even) {
    border-right: none;
  }

  /* Hover: halo circular + lift */
  .hero-stat:hover .stat-icon {
    background: linear-gradient(
      135deg,
      rgba(128, 176, 170, 0.28) 0%,
      rgba(16, 135, 119, 0.14) 100%
    );
    border-color: rgba(61, 158, 145, 0.55);
    box-shadow:
      0 0 0 6px rgba(128, 176, 170, 0.14),
      0 0 0 12px rgba(128, 176, 170, 0.05);
    transform: translateY(-3px);
  }

  .stat-icon {
    width: 52px;
    height: 52px;
  }

  .stat-icon [data-lucide] {
    width: 21px;
    height: 21px;
  }

  .stat-info strong {
    font-size: 0.9rem;
  }

  .stat-info span {
    font-size: 0.69rem;
  }
}

/* ── Water transition hero → conteúdo ───────── */
.box-wave {
  position: relative;
}
.wave-hero {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  line-height: 0;
  margin-top: -1px;
  z-index: 1;
  position: relative;
  background: var(--text-light);
}

.wave-hero svg {
  display: block;
  width: 100%;
  height: clamp(44px, 5vw, 72px);
  position: absolute;
  z-index: 99;
  bottom: -8px;
}

/* Gradiente inferior do hero — fixo na base, responsivo, atrás do hero-stats */
.section-gradient-bridge {
  display: none;
}

/* ── Wave: Para Quem (verde) → Sobre (branco) ── */
.wave-pq-sobre {
  background: var(--verde-profundo);
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}

.wave-pq-sobre svg {
  display: block;
  width: 100%;
  height: clamp(48px, 6vw, 90px);
}

/* ══════════════════════════════════════════════
   SOBRE — Editorial
══════════════════════════════════════════════ */
#sobre {
  padding: clamp(3rem, 6vh, 5rem) 0 0;
  background: white;
  overflow: hidden;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 44fr 56fr;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-clip {
  clip-path: polygon(0 6%, 96% 0%, 100% 94%, 4% 100%);
  overflow: hidden;
  border-radius: 4px;
}

.sobre-img-clip img {
  width: 100%;
  max-width: 500px;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.06);
  transition: transform 0.7s ease;
}

.sobre-img-wrap:hover .sobre-img-clip img {
  transform: scale(1);
}

.sobre-quote-mark {
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: Georgia, serif;
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 1;
  color: var(--terracota-medio);
  opacity: 0.12;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.sobre-text {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 1.35rem;
}

.sobre-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--verde-profundo);
  line-height: 1.12;
}

.sobre-split span{
  color: var(--terracota-medio);
}



.sobre-text p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.72;
}

.sobre-text strong {
  color: var(--verde-profundo);
  font-weight: 600;
}

.btn-secondary-sobre {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--verde-profundo);
  border: 1.5px solid var(--verde-profundo);
  padding: 0.8rem 1.9rem;
  font-size: 0.875rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary-sobre:hover {
  background: var(--verde-profundo);
  color: white;
  transform: translateY(-2px);
}

/* Stats Strip */
.sobre-stats-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vh, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  border-top: 1px solid rgba(4, 87, 76, 0.1);
  background: white;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--verde-profundo);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-text {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--terracota-medio);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(4, 87, 76, 0.12);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   FISIOTERAPIA — Interactive Condition Selector
══════════════════════════════════════════════ */
#fisioterapia {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--verde-profundo);
  color: white;
  overflow: hidden;
}

#fisioterapia .section-eyebrow {
  color: var(--verde-agua);
}

/* ── Two-column grid ── */
.fisio-selector {
  display: grid;
  grid-template-columns: minmax(0, 400px) 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* min-width: 0 impede itens de grid de estourarem a coluna em telas pequenas */
.fisio-sel-left,
.fisio-sel-right {
  min-width: 0;
}

/* ── Left column ── */
.fisio-sel-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  color: white;
  margin: 0.75rem 0 1.25rem;
}

.fisio-sel-intro {
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.78;
  max-width: 340px;
  margin-bottom: 2.5rem;
}

.fisio-sel-prompt {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.75rem;
}

/* ── Tab list ── */
.fisio-sel-tabs {
  display: flex;
  flex-direction: column;
}

.fst-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  text-align: left;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
  position: relative;
}

.fisio-sel-tabs li:first-child .fst-btn {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.fst-bar {
  flex-shrink: 0;
  width: 2px;
  height: 1.1em;
  background: var(--terracota-medio);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--easing-expo);
}

.fst-label {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 600;
  flex: 1;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.fst-chevron {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.5;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.3s var(--easing-expo);
}

.fst-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.fst-btn:hover .fst-chevron {
  opacity: 0.5;
  transform: translateX(0);
}

.fst-btn.is-active {
  color: white;
}

.fst-btn.is-active .fst-bar {
  transform: scaleY(1);
}

.fst-btn.is-active .fst-chevron {
  opacity: 1;
  transform: translateX(0);
  stroke: var(--terracota-medio);
}

/* ── Right: panel stack ── */
.fisio-sel-right {
  position: relative;
  min-height: clamp(340px, 42vw, 480px);
  height: 100%;
}

.fsp {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  width: 100%;
  max-width: 100%;
}

.fsp.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Large decorative ordinal */
.fsp-deco-num {
  position: absolute;
  top: -0.12em;
  right: -0.04em;
  font-family: var(--font-display);
  font-size: clamp(9rem, 16vw, 15rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Ambient glow blob */
.fsp-blob {
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 55%;
  padding-bottom: 55%;
  background: radial-gradient(
    circle,
    rgba(61, 158, 145, 0.18) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Content */
.fsp-content {
  position: relative;
  z-index: 1;
}

.fsp-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde-agua);
  background: rgba(128, 176, 170, 0.1);
  border: 1px solid rgba(128, 176, 170, 0.22);
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.fsp-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.fsp-desc {
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.78;
  max-width: 400px;
  margin-bottom: 1.75rem;
}

.fsp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracota-medio);
  color: white;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.fsp-cta:hover {
  background: var(--terracota-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 116, 86, 0.35);
}

.fsp-cta .fa-whatsapp {
  font-size: 1rem;
}

/* ══════════════════════════════════════════════
   PILATES — Full-Bleed
══════════════════════════════════════════════ */
.pilates-section {
  padding: clamp(6rem, 12vh, 10rem) 0 0;
  position: relative;
  background: #090e0e;
  overflow: hidden;
}

.pilates-bg-layer {
  position: absolute;
  inset: 0;
  background: url("imagens/IMG_4823-Rosana-Jeronimo.webp") center / cover
    no-repeat;
  opacity: 0.22;
  transform: scale(1.08);
  will-change: transform;
}

.pilates-section .section-eyebrow {
  color: var(--verde-agua);
}

.pilates-inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 8vh, 6rem);
}

/* ── Split Header ───────────────────────── */
.pilates-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.pilates-hd-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  color: white;
  margin: 0.6rem 0 0;
}

.pilates-hd-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 38ch;
  align-self: end;
  padding-bottom: 0.3rem;
}

/* ── Bento Grid ─────────────────────────── */
.pilates-bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.pb-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  transition:
    transform 0.35s var(--easing-expo),
    box-shadow 0.35s ease;
}

.pb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Card A — foto real, largura total */
.pb-card--a {
  grid-column: 1 / 6;
  grid-row: 1;
  min-height: 400px;
}

.pb-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--easing-expo);
}

.pb-card--a:hover .pb-img-bg {
  transform: scale(1.04);
}

.pb-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 22, 20, 0.9) 0%,
    rgba(5, 22, 20, 0.5) 45%,
    rgba(5, 22, 20, 0.08) 100%
  );
}

/* Card B — glass, 2 cols */
.pb-card--b {
  grid-column: 4 / 6;
  grid-row: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  justify-content: flex-start;
}

.pb-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(128, 176, 170, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.pb-icon [data-lucide] {
  width: 22px;
  height: 22px;
  stroke: var(--verde-agua);
  stroke-width: 1.8;
}

/* Card C — terracota, 2 cols */
.pb-card--c {
  grid-column: 1 / 3;
  grid-row: 2;
  background: var(--terracota-medio);
  justify-content: space-between;
}

.pb-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pb-stat-n {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  line-height: 1;
}

.pb-stat-l {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card D — teal, 3 cols */
.pb-card--d {
  grid-column: 3 / 6;
  grid-row: 2;
  background: linear-gradient(135deg, #1a4a46 0%, #0d3330 60%, #07201e 100%);
  border: 1px solid rgba(128, 176, 170, 0.2);
  justify-content: flex-end;
}

.pb-deco-circle {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(128, 176, 170, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.pb-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(128, 176, 170, 0.45);
  color: var(--verde-agua);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(128, 176, 170, 0.1);
  width: fit-content;
}

/* Shared content */
.pb-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.pb-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  margin: 0 0 0.6rem;
}

.pb-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin: 0 0 0.65rem;
}

.pb-desc {
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0;
}

.pilates-section .btn-primary {
  background: var(--terracota-medio);
}

.pilates-section .btn-primary:hover {
  background: var(--terracota-escuro);
}

/* Marquee Strip */
.pilates-marquee {
  position: relative;
  z-index: 2;
  margin-top: clamp(3rem, 6vh, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  white-space: nowrap;
  animation: marquee-scroll 24s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--terracota-medio) !important;
  opacity: 0.8;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════
   DEPOIMENTOS — Carrossel Profissional
══════════════════════════════════════════════ */
#depoimentos {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--surface-dark);
  overflow: hidden;
}

#depoimentos .section-eyebrow {
  color: var(--verde-agua);
}

/* Header */
.dep-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(3rem, 7vh, 5rem);
  flex-wrap: wrap;
}

.dep-header-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-top: 0.5rem;
}

/* Google badge */
.dep-google-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}

.dep-badge-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dep-score {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.dep-stars-row {
  display: flex;
  gap: 3px;
}

.dep-stars-row [data-lucide] {
  width: 13px;
  height: 13px;
  fill: #f59e0b;
  stroke: #f59e0b;
}

.dep-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

/* Swiper carousel */
.dep-swiper {
  padding-bottom: 3rem !important;
}

.dep-swiper .swiper-slide {
  height: auto;
}

.dep-slide-inner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  height: 100%;
  box-sizing: border-box;
}

/* Large decorative quote */
.dep-quote-mark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--terracota-medio);
  line-height: 0.65;
  opacity: 0.7;
  user-select: none;
  display: block;
}

/* Testimonial text */
.dep-slide-inner blockquote {
  flex: 1;
}

.dep-slide-text {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  font-weight: 400;
}

/* Author */
.dep-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.dep-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.dep-avatar--agua {
  background: var(--verde-agua);
  color: var(--verde-profundo);
}

.dep-avatar--terra {
  background: var(--terracota-medio);
  color: white;
}

.dep-avatar--verde {
  background: var(--verde-profundo);
  color: var(--verde-agua);
}

.dep-author-info {
  text-align: left;
}

.dep-author-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
}

.dep-via {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 3px;
}

/* Swiper navigation arrows */
.dep-prev,
.dep-next {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  transition:
    background 0.25s ease,
    border-color 0.25s ease !important;
  top: calc(50% - 1.5rem) !important;
}

.dep-prev::after,
.dep-next::after {
  font-size: 14px !important;
  color: white;
  font-weight: 700;
}

.dep-prev:hover,
.dep-next:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Swiper pagination bullets */
.dep-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  border-radius: 4px;
  transition:
    background 0.3s ease,
    width 0.3s ease;
}

.dep-pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--terracota-medio);
  border-radius: 4px;
}

#depoimentos .section-cta {
  margin-top: clamp(2.5rem, 5vh, 4rem);
}

#depoimentos .btn-outline {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

/* ══════════════════════════════════════════════
   INSTAGRAM — Banner compacto
══════════════════════════════════════════════ */
.instagram-section {
  background: #f5f0e8;
  padding: clamp(3rem, 6vh, 4.5rem) clamp(1.5rem, 5vw, 4rem);
}

.ig-banner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--verde-profundo);
  background-image:
    radial-gradient(
      ellipse 70% 140% at 10% 50%,
      rgba(191, 116, 86, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 120% at 90% 50%,
      rgba(128, 176, 170, 0.12) 0%,
      transparent 50%
    );
  border-radius: 1.25rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(128, 176, 170, 0.18);
  box-shadow:
    0 24px 64px rgba(10, 31, 28, 0.22),
    0 4px 16px rgba(10, 31, 28, 0.12);
}

/* Esquerda: logo + identidade */
.ig-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.ig-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.ig-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ig-handle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.ig-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.4;
}

.ig-bio {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-top: 0.4rem;
}

.ig-bio strong {
  color: var(--terracota-medio);
}

/* Separador vertical */
.ig-separator {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Direita: QR + botão */
.ig-qr {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.ig-qr-img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
}

.ig-qr-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ig-qr-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  white-space: nowrap;
}

.btn-ig:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-ig .fa-instagram {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .ig-banner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .ig-profile {
    flex-direction: column;
    align-items: center;
  }

  .ig-separator {
    display: none;
  }

  .ig-qr {
    width: 100%;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    gap: 1rem;
  }

  .ig-qr-actions {
    align-items: center;
  }
}

/* ══════════════════════════════════════════════
   CONTATO — Dark CTA
══════════════════════════════════════════════ */
.contato-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--surface-dark);
  text-align: center;
}

.contato-section .section-eyebrow {
  color: var(--verde-agua);
}

.contato-hero-cta {
  max-width: 580px;
  margin: 0 auto clamp(3rem, 6vh, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.contato-hero-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.contato-hero-cta > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 460px;
}

.cta-hours {
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.35) !important;
  letter-spacing: 0.04em;
}

/* Pill info tags */
.contato-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: clamp(3rem, 6vh, 4.5rem);
}

.contato-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.contato-pill:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.contato-pill [data-lucide] {
  width: 15px;
  height: 15px;
  stroke: var(--verde-agua);
  flex-shrink: 0;
  stroke-width: 2;
}

.contato-pill a {
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--transition);
}

.contato-pill a:hover {
  color: var(--verde-agua);
}

/* Map */
.mapa-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mapa-wrap iframe {
  filter: grayscale(1) invert(0.88) contrast(1.05) brightness(0.9);
  display: block;
  border-radius: var(--radius-card);
}

/* ══════════════════════════════════════════════
   FOOTER — Profissional
══════════════════════════════════════════════ */
#footer {
  background: #080f0e;
  color: rgba(255, 255, 255, 0.55);
}

.footer-top {
  padding: clamp(4rem, 8vh, 6rem) 0 clamp(3rem, 6vh, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Coluna marca */
.footer-brand img {
  height: 90px;
  width: auto;
  filter: brightness(5) saturate(0.15);
  opacity: 0.5;
  margin-bottom: 1.25rem;
  transition: opacity var(--transition);
}

.footer-brand img:hover {
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.865rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.75rem;
  max-width: 300px;
}

/* Ícones sociais */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.footer-social a:hover {
  background: var(--verde-agua-escuro);
  border-color: var(--verde-agua-escuro);
  color: #ffffff;
}

.footer-social [data-lucide] {
  width: 16px;
  height: 16px;
}

/* Títulos das colunas */
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
}

/* Lista de navegação */
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition:
    color var(--transition),
    padding-left var(--transition);
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--verde-agua);
  padding-left: 4px;
}

/* Lista de contato */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.footer-contact-list [data-lucide] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--verde-agua);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--verde-agua);
}

/* Rodapé inferior */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.1rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy,
.footer-dev {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.5;
}

.footer-dev strong {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-col-title {
    text-align: center;
  }
  .footer-nav-list,
  .footer-contact-list {
    align-items: center;
  }
  .footer-contact-list li {
    justify-content: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVIDADE — MOBILE FIRST
══════════════════════════════════════════════ */

/* Tablet 900px */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    padding-bottom: clamp(3rem, 6vh, 4rem);
  }

  .sobre-img-clip {
    max-width: 420px;
    margin: 0 auto;
  }

  .sobre-img-clip img {
    height: 420px;
  }

  .sobre-stats-strip {
    flex-direction: column;
    gap: 1.75rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
    .stat-divider {
    width: 50px;
    height: 1px;
  }

  .fisio-selector {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fisio-sel-right {
    min-height: clamp(320px, 65vw, 440px);
  }

  .pilates-hd {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .pilates-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .pb-card--a {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .pb-card--b {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .pb-card--c {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .pb-card--d {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .dep-header {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}

/* Tablet 768px */
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
  #main-nav {
    display: none;
  }
  .header-pill .btn-header-cta {
    display: none;
  }

  .hero-text-content {
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    max-width: 100%;
  }

  .features-grid {
    display: flex;
  }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .hero-eyebrow {
    letter-spacing: 0.18em;
  }

  .sobre-grid {
    gap: 2.5rem;
  }

  .sobre-stats-strip {
    flex-direction: column;
    gap: 1.75rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  /* ── Fisioterapia mobile ── */
  #fisioterapia {
    padding: clamp(3.5rem, 8vh, 5rem) 0;
  }

  .fisio-selector {
    gap: 1.5rem;
  }

  .fisio-sel-heading {
    font-size: clamp(2.2rem, 8.5vw, 2.8rem);
    margin: 0.5rem 0 0.9rem;
  }

  .fisio-sel-intro {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .fisio-sel-prompt {
    font-size: 0.62rem;
    margin-bottom: 0.6rem;
  }

  /* Pills com scroll horizontal */
  .fisio-sel-tabs {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.45rem;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
    flex-wrap: nowrap;
  }

  .fisio-sel-tabs::-webkit-scrollbar {
    display: none;
  }

  .fisio-sel-tabs li {
    flex-shrink: 0;
  }

  .fst-btn {
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.45);
  }

  .fisio-sel-tabs li:first-child .fst-btn {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fst-bar,
  .fst-chevron {
    display: none;
  }

  .fst-label {
    font-size: 0.75rem;
    font-weight: 600;
  }

  .fst-btn.is-active {
    background: var(--terracota-medio);
    border-color: var(--terracota-medio);
    color: white;
  }

  /* Panels em flow normal — crescem com o conteúdo */
  .fisio-sel-right {
    min-height: 0;
    overflow: visible;
  }

  .fsp {
    position: relative;
    inset: unset;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 1.25rem;
    border-radius: 14px;
  }

  .fsp.is-active {
    display: flex;
    opacity: 1;
    transform: none;
  }

  .fsp-deco-num {
    font-size: clamp(5rem, 24vw, 8rem);
    top: -0.08em;
  }

  .fsp-tag {
    font-size: 0.62rem;
    margin-bottom: 0.75rem;
    padding: 0.28rem 0.75rem;
  }

  .fsp-title {
    font-size: clamp(1.75rem, 6.5vw, 2.2rem);
    margin-bottom: 0.65rem;
  }

  .fsp-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .fsp-cta {
    font-size: 0.78rem;
    padding: 0.7rem 1.2rem;
  }

  .pilates-hd {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .pilates-hd-heading {
    font-size: clamp(2rem, 7.5vw, 2.6rem);
  }

  .pilates-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .pb-card--a,
  .pb-card--b,
  .pb-card--c,
  .pb-card--d {
    grid-column: 1;
    grid-row: auto;
  }

  .pb-card {
    min-height: 280px;
  }

  .pb-card--a {
    min-height: 320px;
  }

  .contato-pills {
    flex-direction: column;
    align-items: center;
  }

  .dep-slide-text {
    font-size: 0.9rem;
  }

  .footer-nav ul {
    gap: 0.4rem 1.25rem;
  }
}

@media (max-width: 450px) {
  .section-inner {
    padding-inline: 0.875rem;
  }

  #fisioterapia {
    padding: clamp(3rem, 7vh, 4rem) 0;
  }

  .fisio-sel-heading {
    font-size: clamp(1.9rem, 7.5vw, 2.2rem);
  }

  .fisio-sel-intro {
    font-size: 0.82rem;
    margin-bottom: 1.1rem;
  }

  .fsp {
    padding: 1.1rem;
    border-radius: 12px;
    max-width: 100%;
  }

  .fsp-deco-num {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .fsp-title {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
  }

  .fsp-desc {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .fsp-cta {
    font-size: 0.72rem;
    padding: 0.6rem 1rem;
  }
}
/* ══════════════════════════════════════════════
   PARA QUEM É — Editorial / Awwwards
══════════════════════════════════════════════ */
.para-quem-section {
  background: var(--verde-profundo);
  padding: 90px 0px;
}

.pq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* Coluna esquerda sticky */
.pq-left {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.para-quem-section .section-eyebrow {
  color: var(--areia);
}

.pq-titulo {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 700;
  color: var(--bege-claro);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.pq-left-foot {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pq-cta-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

/* Lista numerada */
.pq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
}

.pq-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding-left 0.45s var(--easing-expo);
  cursor: default;
}

.pq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pq-item:hover {
  padding-left: 0.6rem;
}

.pq-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--areia);
  padding-top: 0.25rem;
}

.pq-item-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.55rem;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.pq-item:hover .pq-item-content h3 {
  color: var(--terracota-medio);
}

.pq-item-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

/* Responsivo */
@media (max-width: 860px) {
  .pq-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pq-left {
    position: static;
  }
}

@media (max-width: 480px) {
  .pq-item {
    grid-template-columns: 36px 1fr;
    gap: 1.25rem;
    padding: 1.75rem 0;
  }
}

/* ══════════════════════════════════════════════
   DIFERENCIAIS — Bento grid
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   TMA — Terapia Mecânica Avançada
══════════════════════════════════════════════ */
.tma-section {
  background: var(--surface-dark);
  padding: clamp(6rem, 12vh, 10rem) 0;
  overflow: hidden;
  position: relative;
}

.tma-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

/* Coluna esquerda */
.tma-left {
  position: relative;
  padding-top: 1rem;
}

.tma-watermark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 18rem);
  font-weight: 900;
  line-height: 0.85;
  color: #fff;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.tma-eyebrow {
  color: var(--terracota-medio);
}

.tma-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 2rem;
}

.tma-divider {
  height: 1px;
  background: var(--glass-border);
  width: 0;
  transform-origin: left;
}

/* Coluna direita */
.tma-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.tma-lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.tma-para {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
}

.tma-highlight {
  border-left: 3px solid var(--terracota-medio);
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.tma-highlight strong {
  color: var(--terracota-medio);
}

.tma-conclusion {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
}

.tma-conclusion strong {
  color: var(--text-light);
}

.btn-tma-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: var(--terracota-escuro);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
}

.btn-tma-wa:hover {
  background: #8f3e20;
  transform: translateY(-2px);
}

.btn-tma-wa .fa-whatsapp {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .tma-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tma-watermark {
    font-size: clamp(5rem, 28vw, 9rem);
    opacity: 0;
  }

  .tma-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .btn-tma-wa {
    align-self: stretch;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════
   DIFERENCIAIS — Editorial Numbered List
══════════════════════════════════════════════ */
.dif-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bege-claro);
}

.dif-section .section-eyebrow {
  color: var(--verde-profundo);
}

/* Header assimétrico */
.dif-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(4, 87, 76, 0.14);
  margin-bottom: 0;
}

.dif-titulo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--verde-profundo);
  line-height: 1.1;
  margin-top: 0.6rem;
}

.dif-intro {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  color: var(--text-muted);
  line-height: 1.78;
  padding-bottom: 0.4rem;
}

/* Lista editorial */
.dif-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dif-item {
  display: grid;
  grid-template-columns: clamp(72px, 9vw, 120px) 1fr 1.6fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding: clamp(1.4rem, 2.5vw, 2.2rem) clamp(0.75rem, 1.5vw, 1.25rem);
  border-bottom: 1px solid rgba(4, 87, 76, 0.1);
  border-radius: 10px;
  transition:
    background 0.38s var(--easing-expo),
    border-color 0.38s ease;
  cursor: default;
}

.dif-item:first-child {
  border-top: 1px solid rgba(4, 87, 76, 0.1);
}

/* Número tipográfico — âncora visual */
.dif-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: var(--terracota-medio);
  opacity: 0.22;
  line-height: 1;
  user-select: none;
  transition:
    opacity 0.38s var(--easing-expo),
    color 0.38s ease;
}

/* Ícone + título */
.dif-item-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.dif-icon [data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 1.7;
  color: var(--verde-medio);
  transition: color 0.38s ease;
}

.dif-item-head h3 {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: var(--verde-profundo);
  line-height: 1.3;
  transition: color 0.38s ease;
}

/* Descrição */
.dif-item-desc {
  font-size: clamp(0.83rem, 0.95vw, 0.9rem);
  color: var(--text-muted);
  line-height: 1.72;
  transition: color 0.38s ease;
}

/* Hover — row "ativa": fundo verde-profundo, texto inverte */
.dif-item:hover {
  background: var(--verde-profundo);
  border-color: transparent;
}

.dif-item:hover .dif-num {
  opacity: 1;
  color: var(--terracota-escuro);
}

.dif-item:hover .dif-item-head h3 {
  color: #ffffff;
}

.dif-item:hover .dif-icon [data-lucide] {
  color: var(--verde-agua);
}

.dif-item:hover .dif-item-desc {
  color: rgba(232, 227, 216, 0.75);
}

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .dif-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .dif-item {
    grid-template-columns: clamp(56px, 11vw, 80px) 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.75rem clamp(1rem, 3vw, 1.75rem);
  }

  .dif-num {
    grid-row: 1 / 3;
    align-self: center;
  }

  .dif-item-desc {
    grid-column: 2;
    margin-top: 0.2rem;
  }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .dif-item {
    grid-template-columns: 52px 1fr;
  }

  .dif-num {
    font-size: 2.4rem;
    opacity: 0.18;
  }
}

/* ══════════════════════════════════════════════
   GALERIA — Dark Editorial: texto + vídeo
══════════════════════════════════════════════ */
.galeria-section {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(7rem, 14vw, 12rem);
  background: var(--verde-profundo);
  overflow: hidden;
}

.wave-gal-form {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.wave-gal-form svg {
  display: block;
  width: 100%;
  height: clamp(55px, 7vw, 95px);
}

/* Ghost watermark tipográfico */
.galeria-section::after {
  content: "ESPAÇO";
  position: absolute;
  bottom: -0.18em;
  right: -0.04em;
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 16rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(128, 176, 170, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.galeria-section .section-inner {
  position: relative;
  z-index: 1;
}

/* Grid assimétrico — texto respira mais */
.gal-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
}

/* ── Coluna de texto ── */
.gal-text {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.2vh, 1.6rem);
}

.gal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-agua);
}

.gal-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--verde-agua);
  flex-shrink: 0;
}

.gal-titulo {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.gal-titulo em {
  font-style: normal;
  color: var(--verde-agua);
}

.gal-desc {
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.82;
  max-width: 60ch;
  line-height: 27px;
}

.gal-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.4rem;
}

/* CTA primário sobrescreve cor nessa seção escura */
.galeria-section .btn-primary {
  background: var(--terracota-escuro);
  border-color: var(--terracota-escuro);
}

.galeria-section .btn-primary:hover {
  background: #8f3e20;
  border-color: #8f3e20;
}

.gal-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--verde-agua);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    color 0.3s ease,
    gap 0.3s var(--easing-expo);
}

.gal-ig-link i {
  font-size: 1rem;
}

.gal-ig-link:hover {
  color: #fff;
  gap: 0.72rem;
}

/* ── Coluna do vídeo — Carrossel 3D ── */
.gal-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.gal-carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.gal-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.gal-carousel.is-transitioning {
  opacity: 0;
  transform: scale(0.96);
}

/* Controles de navegação */
.gal-controls {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.gal-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(128, 176, 170, 0.4);
  background: transparent;
  color: var(--verde-agua);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s var(--easing-back);
  flex-shrink: 0;
}

.gal-nav-btn:hover {
  background: var(--verde-agua);
  border-color: var(--verde-agua);
  color: var(--verde-profundo);
  transform: scale(1.1);
}

.gal-nav-btn:active {
  transform: scale(0.96);
}

/* Dots / paginação */
.gal-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.gal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(128, 176, 170, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition:
    background 0.3s ease,
    width 0.35s var(--easing-expo),
    border-radius 0.35s ease;
}

/* Área de toque expandida para 44×44px sem alterar layout visual */
.gal-dot::before {
  content: "";
  position: absolute;
  inset: -18px;
}

.gal-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--verde-agua);
}

.gal-reel {
  flex-shrink: 0;
}

/* Principal — frente */
.gal-reel--main {
  position: relative;
  z-index: 3;
  width: clamp(185px, 21vw, 255px);
}

/* Laterais — atrás, escurecidas, rotacionadas em Y */
.gal-reel--side {
  width: clamp(115px, 13vw, 160px);
  z-index: 1;
  filter: brightness(0.42) saturate(0.55);
  border-radius: 12px;
  overflow: hidden;
}

.gal-reel--side:first-child {
  transform: perspective(700px) rotateY(24deg) scale(0.8);
  transform-origin: right center;
  margin-right: -50px;
}

.gal-reel--side:last-child {
  transform: perspective(700px) rotateY(-24deg) scale(0.8);
  transform-origin: left center;
  margin-left: -50px;
}

.gal-reel--side video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.65);
}

/* Wrapper do vídeo principal (corner brackets vivem aqui) */
.gal-video {
  position: relative;
  width: 100%;
}

/* Corner bracket — verde-água (top-left) */
.gal-video::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--verde-agua);
  border-left: 2px solid var(--verde-agua);
  border-radius: 2px 0 0 0;
  z-index: 2;
  pointer-events: none;
}

/* Corner bracket — terracota (bottom-right) */
.gal-video::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-bottom: 2px solid var(--terracota-medio);
  border-right: 2px solid var(--terracota-medio);
  border-radius: 0 0 2px 0;
  z-index: 2;
  pointer-events: none;
}

.gal-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ── Tablet (≤ 900px) — esconde laterais ── */
@media (max-width: 900px) {
  .gal-split {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .galeria-section::after {
    display: none;
  }

  .gal-text {
    align-items: center;
    text-align: center;
  }

  .gal-eyebrow::before {
    display: none;
  }
  .gal-titulo {
    font-size: clamp(32px, 5vw, 44px);
  }

  .gal-desc {
    max-width: 52ch;
  }
  .gal-ctas {
    justify-content: center;
  }

  .gal-reel--side {
    display: none;
  }
  .gal-reel--main {
    width: clamp(220px, 70vw, 340px);
  }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .gal-reel--main {
    width: 100%;
  }

  .gal-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .gal-titulo {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .gal-desc {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .gal-nav-btn {
    width: 38px;
    height: 38px;
  }
}

/* ══════════════════════════════════════════════
   FORMAÇÕES — Timeline Awwwards
══════════════════════════════════════════════ */
.form-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bege-claro);
  position: relative;
  overflow: visible;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* ── Coluna esquerda ─────────────────────────── */
.form-left {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: flex;
  flex-direction: column;
}

.form-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--verde-profundo);
  line-height: 1.12;
  margin: 0.75rem 0 1.25rem;
}

.form-left-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.form-stat {
  flex-direction: column;
  align-items: start;
  gap: 0.2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.form-stat-n {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  color: var(--verde-profundo);

}

.form-stat-l {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Timeline — coluna direita ───────────────── */
.form-right {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Linha animada pelo GSAP (scrub) */
.form-tl-line {
  position: absolute;
  left: 8px;
  top: -80px;
  bottom: -80px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--terracota-medio) 12%,
    var(--verde-agua) 88%,
    transparent 100%
  );
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
  pointer-events: none;
}

/* ── Cada credencial ─────────────────────────── */
.form-credential {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
}

.form-credential:last-child {
  border-bottom: none;
}

/* Dot na linha */
.form-cred-marker {
  display: flex;
  justify-content: center;
  padding-top: 3px;
}

.form-cred-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bege-claro);
  border: 2.5px solid rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.form-cred-dot-accent {
  border-color: var(--terracota-escuro);
  background: var(--terracota-medio);
}

/* Conteúdo */
.form-cred-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.form-cred-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracota-medio);
}

.form-credential h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--verde-profundo);
  line-height: 1.3;
  margin: 0;
}

.form-credential p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Número decorativo */
.form-cred-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: rgba(4, 87, 76, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  align-self: center;
}

/* ── Responsivo ──────────────────────────────── */
@media (max-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-left {
    position: static;
  }

  .form-credential {
    grid-template-columns: 20px 1fr;
  }

  .form-cred-num {
    display: none;
  }

  .form-tl-line {
    top: 0;
    bottom: 0;
  }
}

/* ══════════════════════════════════════════════
   FAQ — Accordion
══════════════════════════════════════════════ */
.faq-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--surface-dark);
  color: var(--text-light);
}

.faq-section .section-eyebrow {
  color: var(--areia);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.faq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color var(--transition);
  cursor: pointer;
}

.faq-q:hover {
  color: var(--areia);
}

.faq-q[aria-expanded="true"] {
  color: var(--areia);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--terracota-medio);
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--easing-expo),
    padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-a p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.faq-a strong {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-left {
    position: static;
  }
}

/* ══════════════════════════════════════════════
   LOCALIZAÇÃO — Split layout redesenhado
══════════════════════════════════════════════ */
.loc-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #f5f0e8;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}

.loc-info {
  display: flex;
  flex-direction: column;
}

.loc-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--verde-profundo);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.loc-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.loc-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.loc-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(4, 87, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-profundo);
  flex-shrink: 0;
}

.loc-detail-icon [data-lucide] {
  width: 18px;
  height: 18px;
}

.loc-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.loc-detail-value {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.loc-link {
  color: var(--verde-profundo);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.loc-link:hover {
  color: var(--terracota-escuro);
}

.loc-wa-btn {
  margin-top: auto;
  max-width: 320px;
}

.loc-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  min-height: 460px;
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
}

@media (max-width: 900px) {
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .loc-wa-btn {
    max-width: 100%;
  }
  .loc-map {
    min-height: 320px;
  }
  .loc-map iframe {
    min-height: 320px;
  }
}

/* ══════════════════════════════════════════════
   WAVE DIVIDERS — Transições entre seções
══════════════════════════════════════════════ */
.wave-divider {
  display: block;
  line-height: 0;
  margin: -1px 0;
  overflow: hidden;
  background-color: var(--verde-agua);
}
* .wave-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

@media (max-width: 768px) {
  .wave-divider svg {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .wave-divider svg {
    height: 36px;
  }
}

/* ══════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.3s var(--easing-back),
    box-shadow 0.3s ease;
  animation: wa-float-pulse 2.8s ease-in-out infinite;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #1a1a1a;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.wa-float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}

.wa-float:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes wa-float-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 4px 32px rgba(37, 211, 102, 0.75),
      0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }
  .wa-float-tooltip {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   ACESSIBILIDADE — MOTION REDUZIDA
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .marquee-track,
  .dep-marquee-track {
    animation: none !important;
  }
  .btn-whatsapp-grande {
    animation: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  }
}
