/* ============================================
   DRA. NATALIA BRITO — LANDING PAGE
   Design System: Editorial & High-End Luxury
   Paleta: #E9E4DE (fundo) + #786D5B (texto)
   Fontes: Cormorant Garamond + Jost
   ============================================ */

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

:root {
  /* Cores principais */
  --bg: #E9E4DE;
  --bg-dark: #DDD6CC;
  --text: #5C543E;
  --text-light: #786D5B;
  --text-dark: #3E3828;
  --accent: #A69882;
  --accent-light: #C4B9A8;
  --white: #FAFAF8;
  --border: rgba(120, 109, 91, 0.15);

  /* Tipografia */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  /* Spacings */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Container */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 250ms;
  --dur-normal: 400ms;
  --dur-slow: 600ms;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

address {
  font-style: normal;
}

button {
  font-family: inherit;
}

/* ── Utilities ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}


/* Parágrafos justificados */
p {
  text-align: justify;
  text-justify: inter-word;
}

/* ── Global CTA ── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition:
    background var(--dur-normal) var(--ease-smooth),
    transform var(--dur-normal) var(--ease-out),
    box-shadow var(--dur-normal) var(--ease-out);
}

.cta:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92, 84, 62, 0.2);
}

.cta:active {
  transform: translateY(0);
}

.cta:focus-visible {
  outline: 2px solid var(--text-dark);
  outline-offset: 3px;
}

.cta__icon {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.cta:hover .cta__icon {
  transform: translate(2px, -2px);
}

/* CTA Light variant (CTA Final) */
.cta--light {
  background: var(--white);
  color: var(--text-dark);
}

.cta--light:hover {
  background: var(--bg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}


/* ═══════════════════════════════════════════
   HERO — Split Assimetrico
   Arquetipo: Split Assimetrico (60/40)
   Constraints: Overlap Elements, Earth Tones,
   Floating Cards
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-lg) 0;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}

.hero__content {
  padding-right: clamp(1rem, 3vw, 3rem);
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: 2.5rem;
}

.hero__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--accent-light);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.25rem, 2rem + 3vw, 4rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  line-height: 1.8;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

/* Media / Image Side */
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hero__img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  z-index: 1;
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) contrast(1.02);
}

/* Floating Card — Overlap */
.hero__card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 4px 40px rgba(92, 84, 62, 0.1);
  z-index: 2;
  animation: cardFloat 6s var(--ease-smooth) infinite;
}

.hero__card-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.hero__card-role {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 0.125rem;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Decorative Line */
.hero__line {
  position: absolute;
  bottom: 0;
  left: var(--container-pad);
  right: var(--container-pad);
  height: 1px;
  background: var(--border);
}


/* ═══════════════════════════════════════════
   PILARES DO CUIDADO
   Arquetipo: Isolated Element / White Space Hero
   Constraints: Asymmetric Padding, Low Contrast,
   Hover Lift
   ═══════════════════════════════════════════ */

.pilares {
  padding: var(--space-3xl) 0;
  position: relative;
}

.pilares__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pilares__divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 clamp(2rem, 4vw, 4rem);
}

.pilares__card {
  padding: var(--space-xl) 0;
  transition: transform var(--dur-slow) var(--ease-out);
}

.pilares__card:hover {
  transform: translateY(-4px);
}

.pilares__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3rem, 2.5rem + 2vw, 5rem);
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.pilares__card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.pilares__card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1rem);
  line-height: 1.8;
  color: var(--text-light);
}


/* ═══════════════════════════════════════════
   AREAS DE ATUACAO
   Arquetipo: Bento Box
   Constraints: Overlap Elements, Low Contrast,
   Hover Lift
   ═══════════════════════════════════════════ */

.areas {
  background: var(--bg-dark);
  padding: var(--space-3xl) 0;
}

.areas__header {
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.areas__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 1.75rem + 2vw, 3.25rem);
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.areas__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.areas__card {
  grid-column: span 2;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 2px 20px rgba(92, 84, 62, 0.06);
  transition:
    transform var(--dur-slow) var(--ease-out),
    box-shadow var(--dur-slow) var(--ease-out);
}

.areas__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(92, 84, 62, 0.12);
}

.areas__card--lg {
  grid-column: span 3;
}

.areas__card-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.areas__card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.25rem, 1rem + 0.75vw, 1.625rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.areas__card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  line-height: 1.75;
  color: var(--text-light);
}

.areas__extras {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
  margin-top: var(--space-sm);
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.areas__extras span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-light);
  position: relative;
}

.areas__extras span+span::before {
  content: '·';
  position: absolute;
  left: calc(var(--space-lg) / -2 - 0.15em);
  color: var(--accent-light);
}

.areas__cta-wrap {
  text-align: center;
  margin-top: var(--space-2xl);
}


/* ═══════════════════════════════════════════
   SOBRE A PROFISSIONAL
   Arquetipo: Split Vertical (50/50)
   Constraints: Imagem Dessaturada, Low Contrast,
   Asymmetric Padding
   ═══════════════════════════════════════════ */

.sobre {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.sobre__img-wrapper {
  position: relative;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.sobre__img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  z-index: 1;
  pointer-events: none;
}

.sobre__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.02);
}

.sobre__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.875rem, 1.5rem + 2vw, 2.75rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.sobre__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.sobre__bio {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sobre__bio-block {
  position: relative;
}

.sobre__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: 2rem;
}

.sobre__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--accent-light);
}

.sobre__bio-text {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
}

.sobre__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}


/* ═══════════════════════════════════════════
   COMO FUNCIONA A CONSULTA
   Arquetipo: Timeline
   Constraints: Stagger, Low Contrast,
   Container Narrow
   ═══════════════════════════════════════════ */

.consulta {
  background: var(--bg-dark);
  padding: var(--space-3xl) 0;
}

.consulta__header {
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.consulta__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 1.75rem + 2vw, 3.25rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.consulta__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
}

.consulta__timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.consulta__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  width: 1px;
  background: var(--border);
}

.consulta__step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  position: relative;
}

.consulta__step:last-child {
  padding-bottom: 0;
}

.consulta__step-number {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text-dark);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.consulta__step-content {
  padding-top: 0.625rem;
}

.consulta__step-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.25rem, 1rem + 0.75vw, 1.5rem);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}

.consulta__step-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  line-height: 1.75;
  color: var(--text-light);
  max-width: 560px;
}

.consulta__closing {
  margin-top: var(--space-2xl);
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: var(--text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════
   VOCE PRECISA DE UM ENDOCRINOLOGISTA?
   Arquetipo: Single Focus
   Constraints: Container Narrow, Low Contrast
   ═══════════════════════════════════════════ */

.precisa {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.precisa__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.precisa__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 1.75rem + 2vw, 3.25rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.precisa__text {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}


/* ═══════════════════════════════════════════
   INSTAGRAM
   Arquetipo: Gallery Wall
   Constraints: Scroll Horizontal (mobile),
   Hover Reveal, Low Contrast
   ═══════════════════════════════════════════ */

.instagram {
  background: var(--bg-dark);
  padding: var(--space-3xl) 0;
}

.instagram__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.instagram__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 1.75rem + 2vw, 3.25rem);
  color: var(--text-dark);
  line-height: 1.15;
}

.instagram__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 480px;
  margin-top: var(--space-sm);
}

.instagram__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
  transition:
    color var(--dur-normal) var(--ease-smooth),
    border-bottom-color var(--dur-normal) var(--ease-smooth);
  flex-shrink: 0;
}

.instagram__link:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-items: center;
}

.instagram__embed {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  width: 100%;
  max-width: 540px;
}

.instagram__embed iframe {
  width: 100%;
  height: 680px;
  border: none;
  display: block;
}


/* ═══════════════════════════════════════════
   LOCAL DE ATENDIMENTO
   Arquetipo: Split Assimetrico (40/60)
   Constraints: Overlap Elements, Earth Tones,
   Sticky Element
   ═══════════════════════════════════════════ */

.local {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.local__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.local__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 1.75rem + 2vw, 3.25rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: var(--space-xl);
}

.local__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 2rem;
}

.local__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--accent-light);
}

.local__place {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.25rem, 1rem + 0.75vw, 1.5rem);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.local__address {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.local__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: var(--space-lg);
  transition: color var(--dur-normal) var(--ease-smooth);
}

.local__whatsapp:hover {
  color: var(--text-dark);
}

.local__nav-links {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.local__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 0.625rem 1.25rem;
  transition:
    background var(--dur-normal) var(--ease-smooth),
    color var(--dur-normal) var(--ease-smooth);
}

.local__nav-btn:hover {
  background: var(--white);
  color: var(--text-dark);
}

.local__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: var(--space-lg);
}

.local__map iframe {
  width: 100%;
  height: 100%;
  filter: saturate(0.6) contrast(1.1) brightness(1.05);
}


/* ═══════════════════════════════════════════
   CTA FINAL
   Arquetipo: Hero Dominante
   Constraints: Imagem com Overlay, Full Height,
   Container Narrow
   ═══════════════════════════════════════════ */

.cta-final {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-3xl) var(--container-pad);
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92, 84, 62, 0.55) 0%, rgba(92, 84, 62, 0.75) 100%);
  z-index: 1;
}

.cta-final__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 1.75rem + 2.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.cta-final__text {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(250, 250, 248, 0.8);
  margin-bottom: var(--space-xl);
}


/* ═══════════════════════════════════════════
   FAQ
   Arquetipo: Single Focus
   Constraints: Accordion, Container Narrow,
   Low Contrast
   ═══════════════════════════════════════════ */

.faq {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.faq__header {
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.faq__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 1.75rem + 2vw, 3.25rem);
  color: var(--text-dark);
  line-height: 1.15;
}

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

.faq__item {
  border-top: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  text-align: left;
}

.faq__toggle:focus-visible {
  outline: 2px solid var(--text-dark);
  outline-offset: 2px;
}

.faq__question {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: var(--text-dark);
  line-height: 1.3;
}

.faq__icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: var(--space-md);
  position: relative;
  transition: transform var(--dur-normal) var(--ease-out);
}

.faq__icon span {
  position: absolute;
  background: var(--text-light);
  transition: transform var(--dur-normal) var(--ease-out);
}

.faq__icon span:first-child {
  width: 14px;
  height: 1px;
}

.faq__icon span:last-child {
  width: 1px;
  height: 14px;
}

.faq__item.is-active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height var(--dur-slow) var(--ease-out),
    opacity var(--dur-normal) var(--ease-smooth);
}

.faq__item.is-active .faq__answer {
  opacity: 1;
}

.faq__answer-text {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 640px;
  padding-bottom: var(--space-md);
}


/* ═══════════════════════════════════════════
   FOOTER
   Arquetipo: Modular
   Constraints: Low Contrast, Container Wide
   ═══════════════════════════════════════════ */

.footer {
  background: var(--text-dark);
  padding: var(--space-2xl) 0 var(--space-lg) 0;
  color: rgba(250, 250, 248, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.footer__name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}

.footer__specialty {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(250, 250, 248, 0.6);
  margin-bottom: var(--space-xs);
}

.footer__crm {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.45);
}

.footer__col-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
  margin-bottom: var(--space-sm);
}

.footer__link {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(250, 250, 248, 0.7);
  margin-bottom: var(--space-xs);
  transition: color var(--dur-normal) var(--ease-smooth);
}

.footer__link:hover {
  color: var(--white);
}

.footer__address {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 250, 248, 0.6);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 250, 248, 0.1);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.35);
}


/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════ */

.whatsapp-fab {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    opacity var(--dur-slow) var(--ease-out);
  pointer-events: none;
}

.whatsapp-fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab:active {
  transform: scale(0.95);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.55);
  }
}

.whatsapp-fab.is-visible {
  animation: whatsappPulse 4s var(--ease-smooth) infinite;
  animation-delay: 3.6s;
}

.whatsapp-fab.is-visible:hover {
  animation: none;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (≤960px)
   ═══════════════════════════════════════════ */

@media (max-width: 960px) {

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: left;
  }

  .hero__content {
    padding-right: 0;
    order: 1;
  }

  .hero__media {
    order: 0;
    justify-content: flex-start;
  }

  .hero__img-wrapper {
    max-width: 380px;
    aspect-ratio: 4 / 5;
  }

  .hero__card {
    left: auto;
    right: -1rem;
    bottom: 1.5rem;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  /* Pilares */
  .pilares__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pilares__divider {
    width: 100%;
    height: 1px;
    margin: var(--space-lg) 0;
  }

  .pilares__card {
    padding: var(--space-lg) 0;
  }

  /* Areas */
  .areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas__card--lg {
    grid-column: span 1;
  }

  .areas__card {
    grid-column: span 1;
  }

  .areas__extras {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .areas__extras span+span::before {
    display: none;
  }

  /* Sobre */
  .sobre__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .sobre__media {
    display: flex;
    justify-content: center;
  }

  .sobre__img-wrapper {
    max-width: 420px;
  }

  .sobre__content {
    max-width: 600px;
  }

  /* Local */
  .local__inner {
    grid-template-columns: 1fr;
  }

  .local__map {
    position: static;
    aspect-ratio: 16 / 9;
    order: -1;
    margin-bottom: var(--space-xl);
  }

  /* Instagram */
  .instagram__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .instagram__link {
    align-self: flex-start;
  }

  .instagram__grid {
    grid-template-columns: 1fr;
  }

  .instagram__embed {
    max-width: 480px;
  }

  /* CTA Final */
  .cta-final {
    min-height: 50vh;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer__col:last-child {
    grid-column: 1 / -1;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile (≤600px)
   ═══════════════════════════════════════════ */

@media (max-width: 600px) {

  /* Hero */
  .hero {
    min-height: auto;
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .hero__tag {
    margin-bottom: var(--space-md);
  }

  .hero__title {
    font-size: clamp(1.875rem, 1.5rem + 3vw, 2.5rem);
  }

  .hero__img-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }

  .hero__card {
    right: 0.5rem;
    bottom: 1rem;
    padding: 1rem 1.25rem;
  }

  .hero .cta {
    width: 100%;
    justify-content: center;
  }

  /* Pilares */
  .pilares {
    padding: var(--space-2xl) 0;
  }

  .pilares__number {
    font-size: 2.5rem;
  }

  /* Areas */
  .areas__grid {
    grid-template-columns: 1fr;
  }

  .areas__card--lg,
  .areas__card {
    grid-column: span 1;
  }

  .areas .cta {
    width: 100%;
    justify-content: center;
  }

  /* Sobre */
  .sobre__img-wrapper {
    max-width: 100%;
  }

  .sobre .cta {
    width: 100%;
    justify-content: center;
  }

  /* Consulta */
  .consulta__step {
    grid-template-columns: 3rem 1fr;
  }

  .consulta__step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }

  .consulta__timeline::before {
    left: 1.5rem;
  }

  .consulta__step {
    padding-bottom: var(--space-lg);
  }

  /* Precisa */
  .precisa .cta {
    width: 100%;
    justify-content: center;
  }

  /* Instagram */
  .instagram__grid {
    grid-template-columns: 1fr;
  }

  .instagram__embed {
    max-width: 100%;
  }

  .instagram__embed iframe {
    height: 620px;
  }

  /* Local */
  .local__map {
    aspect-ratio: 3 / 2;
  }

  .local__nav-links {
    flex-direction: column;
  }

  .local__nav-btn {
    width: 100%;
    justify-content: center;
  }

  .local .cta {
    width: 100%;
    justify-content: center;
  }

  /* CTA Final */
  .cta-final {
    min-height: auto;
    padding: var(--space-2xl) var(--container-pad);
  }

  .cta-final .cta {
    width: 100%;
    justify-content: center;
  }

  /* FAQ */
  .faq__question {
    font-size: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  }

  .faq__icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer__col:last-child {
    grid-column: auto;
  }

  /* WhatsApp FAB */
  .whatsapp-fab {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 52px;
    height: 52px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}