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

:root {
  --color-bg-primary:    #FBF3F0;
  --color-bg-secondary:  #FFFAF8;
  --color-blue:          #8DA0B3;
  --color-brown:         #6B4C3B;
  --color-text:          #3D3D3D;
  --color-text-light:    #7A7A7A;
  --color-white:         #FFFFFF;
  --font-serif:          'Fraunces', Georgia, serif;
  --font-sans:           'DM Sans', sans-serif;
  --nav-h:               72px;
  --ease-silk:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg-primary);
  color: var(--color-text);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ────────────────────────────── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--color-brown);
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-blue);
  transition: transform .12s var(--ease-silk), width .4s var(--ease-silk), height .4s var(--ease-silk), opacity .3s;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: .7; }
  50%      { transform: translate(-50%,-50%) scale(1.5); opacity: 1;  }
}

#cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--color-brown);
  opacity: .5;
}

/* ─── NAVBAR ───────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 1000;
  transition: background .5s var(--ease-silk), backdrop-filter .5s, box-shadow .5s;
}

#navbar.scrolled {
  background: rgba(251,243,240,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(107,76,59,.08);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-brown);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 300;
  color: var(--color-text-light);
  letter-spacing: .22em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: .06em;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-brown);
  transition: width .3s var(--ease-silk);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--color-blue);
  color: var(--color-white) !important;
  padding: .55rem 1.2rem !important;
  border-radius: 100px;
  font-size: .78rem !important;
  font-weight: 500 !important;
  letter-spacing: .05em !important;
  transition: background .3s, transform .2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--color-brown); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-brown);
  transition: transform .3s, opacity .3s;
}

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

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(251,243,240,.97);
  backdrop-filter: blur(14px);
  padding: 2rem 5vw 2.5rem;
  flex-direction: column;
  gap: 1.4rem;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .3s, transform .3s;
}

.nav-drawer.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-drawer a {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: .05em;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(107,76,59,.08);
}

.nav-drawer .nav-cta {
  align-self: flex-start;
  border: none;
}

/* ─── EYEBROW VARIANTS ─────────────────────────── */
.eyebrow-mobile { display: none; }
.eyebrow-full   { display: inline; }

/* ─── HERO SECTION ─────────────────────────────── */
#hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

#synapse-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .55;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 4rem 3rem 8vw;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--color-blue);
  opacity: 0;
  animation: fadeUp .8s var(--ease-silk) .2s forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.1;
  font-weight: 300;
  color: var(--color-brown);
  letter-spacing: -.01em;
}

.hero-headline .word {
  display: inline-block;
  overflow: hidden;
}

.hero-headline .word-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.hero-headline .word-inner.visible {
  animation: wordReveal .9s var(--ease-silk) forwards;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subheadline {
  font-family: var(--font-sans);
  font-size: clamp(.9rem, 1.1vw, 1.05rem);
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.75;
  max-width: 44ch;
  opacity: 0;
  animation: fadeUp .8s var(--ease-silk) 1.2s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease-silk) 1.5s forwards;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #25D366;
  color: var(--color-white);
  text-decoration: none;
  padding: .85rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-silk), box-shadow .3s;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform .5s var(--ease-silk);
}

.btn-whatsapp:hover::before { transform: translateX(110%) skewX(-15deg); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.25); }
.btn-whatsapp svg { flex-shrink: 0; }

.hero-secondary-link {
  font-family: var(--font-sans);
  font-size: .8rem;
  color: var(--color-text-light);
  text-decoration: none;
  letter-spacing: .05em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .3s;
}

.hero-secondary-link:hover { color: var(--color-brown); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .4rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-silk) 1.8s forwards;
}

.hero-badge-icon {
  width: 16px; height: 16px;
  color: var(--color-blue);
  flex-shrink: 0;
}

.hero-badge span {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--color-text-light);
}

.hero-image-panel {
  position: relative;
  z-index: 2;
  height: 85vh;
  overflow: hidden;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .1s linear;
  clip-path: inset(0 100% 0 0);
  animation: imageReveal 1.2s var(--ease-silk) .3s forwards;
}

@keyframes imageReveal {
  to { clip-path: inset(0 0% 0 0); }
}

.hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg-primary) 0%, transparent 28%);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  left: -1px;
  top: 18%;
  width: 3px;
  height: 22%;
  background: var(--color-blue);
  border-radius: 2px;
  z-index: 3;
  transform: scaleY(0);
  transform-origin: top;
  animation: lineGrow 1s var(--ease-silk) 1s forwards;
}

@keyframes lineGrow {
  to { transform: scaleY(1); }
}

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

/* ─── MOBILE WHATSAPP FLOAT ────────────────────── */
#float-whatsapp {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 900;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  text-decoration: none;
  transition: transform .3s;
}

#float-whatsapp:hover { transform: scale(1.08); }

/* ─── SHARED SECTION TOKENS ───────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--color-brown);
  line-height: 1.15;
  max-width: 22ch;
}

/* ─── SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
  transition: opacity .7s var(--ease-silk), transform .7s var(--ease-silk);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SEÇÃO 2: CONSULTA ────────────────────────── */
#consulta {
  background: var(--color-bg-secondary);
  padding: 7rem 8vw;
}

.consulta-header { margin-bottom: 3rem; }

.consulta-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(107,76,59,.12);
  width: fit-content;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--color-text-light);
  background: none;
  border: none;
  padding: .8rem 1.8rem;
  cursor: pointer;
  position: relative;
  transition: color .3s;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--color-brown);
  transform: scaleX(0);
  transition: transform .35s var(--ease-silk);
}

.tab-btn.active { color: var(--color-brown); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; }

.tab-panel.active {
  display: block;
  animation: tabFadeIn .4s var(--ease-silk) forwards;
}

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

.tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.tab-cta {
  display: inline-flex;
  margin-top: 2rem;
}

.tab-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300;
  color: var(--color-brown);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.tab-identificacao {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tab-divider {
  width: 40px;
  height: 1px;
  background: var(--color-blue);
  margin-bottom: 1.5rem;
  border-radius: 1px;
}

.tab-como {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* ─── TIMELINE ─────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  padding-left: .5rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.2rem;
  position: relative;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .5s var(--ease-silk), transform .5s var(--ease-silk);
}

.tab-panel.active .timeline-step:nth-child(1) { transition-delay: .05s; }
.tab-panel.active .timeline-step:nth-child(2) { transition-delay: .15s; }
.tab-panel.active .timeline-step:nth-child(3) { transition-delay: .25s; }
.tab-panel.active .timeline-step:nth-child(4) { transition-delay: .35s; }

.tab-panel.active .timeline-step {
  opacity: 1;
  transform: translateX(0);
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-blue);
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 400;
  color: var(--color-brown);
  letter-spacing: .04em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s, color .3s;
}

.timeline-step:hover .timeline-number {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.timeline-line {
  width: 1px;
  flex: 1;
  min-height: 2rem;
  background: linear-gradient(to bottom, var(--color-blue), transparent);
  opacity: .25;
  margin: 4px 0;
}

.timeline-step:last-child .timeline-line { display: none; }

.timeline-content { padding: .15rem 0 2rem; }

.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: .4rem;
  transition: color .3s;
}

.timeline-step:hover .timeline-content h4 { color: var(--color-blue); }

.timeline-content p {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.75;
  max-width: 36ch;
}

/* ─── SEÇÃO 3: ANDRESSA ────────────────────────── */
#andressa {
  background: var(--color-bg-primary);
  padding: 7rem 8vw;
  overflow: hidden;
}

.andressa-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-rows: auto auto;
  gap: 0 6rem;
  align-items: start;
}

.andressa-photo-wrap {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  position: relative;
  isolation: isolate;
}

.andressa-photo-bg {
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: var(--color-blue);
  opacity: .12;
  border-radius: 20px;
  pointer-events: none;
}

.andressa-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.andressa-text-top {
  grid-column: 2;
  grid-row: 1;
}

.andressa-text-bottom {
  grid-column: 2;
  grid-row: 2;
}

.andressa-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--color-brown);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.andressa-divider {
  width: 40px;
  height: 1px;
  background: var(--color-blue);
  margin-bottom: 1.5rem;
  border-radius: 1px;
}

.andressa-bio {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.andressa-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--color-bg-secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-blue);
  border: 1px solid rgba(141,160,179,.2);
}

.pillar-icon svg { width: 20px; height: 20px; }

.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: .2rem;
}

.pillar p {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.6;
}

.andressa-instagram {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(122,122,122,.25);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}

.andressa-instagram:hover {
  color: var(--color-brown);
  border-color: var(--color-brown);
}

.andressa-instagram svg { width: 16px; height: 16px; }

/* ─── SEÇÃO 4: CONTEÚDOS ───────────────────────── */
#conteudos {
  background: var(--color-bg-secondary);
  padding: 7rem 8vw;
  min-height: 900px;
}

.conteudos-header { margin-bottom: 3rem; }

.conteudos-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(107,76,59,.12);
  width: fit-content;
}

.content-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.content-grid.active {
  display: grid;
  opacity: 0;
  animation: tabFadeIn .3s var(--ease-silk) .05s forwards;
}

.content-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(107,76,59,.06);
  transition: transform .3s var(--ease-silk), box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107,76,59,.08);
}

.content-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-primary);
  min-height: 0;
}

.content-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-silk);
  aspect-ratio: 16 / 9;
  background: var(--color-bg-primary);
}

.content-card:hover .content-card-img img { transform: scale(1.04); }

.content-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .7rem;
}

.content-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.35;
}

.content-card-body p {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.7;
}

.content-card-link {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 400;
  color: var(--color-blue);
  text-decoration: none;
  letter-spacing: .04em;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .3s, border-color .3s;
  margin-top: auto;
}

.content-card-link:hover {
  color: var(--color-brown);
  border-color: var(--color-brown);
}

/* ─── SEÇÃO 5: OBJEÇÕES ────────────────────────── */
#objecoes {
  background: var(--color-bg-primary);
  padding: 7rem 8vw;
}

.objecoes-header {
  margin-bottom: 3.5rem;
  max-width: 540px;
}

.accordion {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item { border-bottom: 1px solid rgba(107,76,59,.1); }
.accordion-item:first-child { border-top: 1px solid rgba(107,76,59,.1); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: none;
  padding: 1.6rem 0;
  cursor: pointer;
  text-align: left;
}

.accordion-trigger span:first-child {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.35;
  transition: color .3s;
}

.accordion-trigger:hover span:first-child { color: var(--color-blue); }

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(141,160,179,.4);
  flex-shrink: 0;
  position: relative;
  transition: background .3s, border-color .3s, transform .4s var(--ease-silk);
}

.accordion-icon span {
  position: absolute;
  background: var(--color-blue);
  border-radius: 2px;
  transition: transform .35s var(--ease-silk), opacity .3s;
}

.accordion-icon span:first-child {
  width: 12px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon span:last-child {
  width: 1.5px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: var(--color-blue);
  border-color: var(--color-blue);
  transform: rotate(45deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon span { background: var(--color-white); }
.accordion-trigger[aria-expanded="true"] span:first-child { color: var(--color-blue); }

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s var(--ease-silk), padding .35s var(--ease-silk);
  padding: 0;
}

.accordion-body.open {
  max-height: 400px;
  padding: 0 0 1.8rem;
}

.accordion-body p {
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.85;
  max-width: 62ch;
}

/* ─── SEÇÃO 6: CTA FINAL ───────────────────────── */
#cta-final {
  background: var(--color-bg-secondary);
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 85vh;
  overflow: hidden;
}

.cta-final-photo-wrap {
  width: 48%;
  min-width: min(420px, 45%);
  height: 85vh;
  overflow: hidden;
  flex-shrink: 0;
}

.cta-final-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  mask-image: linear-gradient(to right, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 65%, transparent 100%);
  filter: saturate(.85);
}

.cta-final-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: 4rem 8vw;
}

.cta-final-slogan {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-blue);
  letter-spacing: .08em;
}

.cta-final-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 300;
  color: var(--color-brown);
  line-height: 1.1;
}

.cta-final-body {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.85;
  max-width: 44ch;
}

.cta-final-btn {
  align-self: flex-start;
  font-size: .95rem;
  padding: 1rem 2.2rem;
}

/* ─── FOOTER ───────────────────────────────────── */
#footer {
  background: #3a2a22;
  padding: 2.5rem 8vw 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  margin-bottom: .8rem;
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-logo-sub {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: .88rem;
  font-style: italic;
  color: rgba(255,255,255,.35);
  margin-top: .4rem;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}

.footer-nav-col ul,
.footer-info-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-nav-col a,
.footer-info-col li {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .3s;
}

.footer-nav-col a:hover { color: var(--color-white); }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.55) !important;
  text-decoration: none;
  transition: color .3s;
}

.footer-instagram:hover { color: var(--color-white) !important; }
.footer-instagram svg { width: 14px; height: 14px; }

.footer-aviso {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 300;
  color: rgba(255,255,255,.2);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════
   RESPONSIVE — único bloco, sem duplicatas
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    cursor: auto;
  }

  #cursor-dot, #cursor-ring { display: none; }
  .hamburger { display: flex; cursor: pointer; }
  .nav-links { display: none; }
  #float-whatsapp { display: flex; }

  .eyebrow-full   { display: none; }
  .eyebrow-mobile { display: inline; }

  /* HERO */
  #hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding-top: 0;
    width: 100%;
  }

  .hero-image-panel {
    order: -1;
    height: 60vw;
    min-height: 260px;
    max-height: 360px;
    width: 100%;
    margin-top: var(--nav-h);
  }

  .hero-image-panel::before {
    background: linear-gradient(to bottom, transparent 60%, var(--color-bg-primary));
  }

  .hero-eyebrow {
    font-size: .6rem;
    letter-spacing: .18em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60vw;
  }

  .hero-content {
    padding: 1.5rem 5vw 3rem;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-headline { font-size: clamp(2rem, 7.5vw, 2.8rem); word-break: break-word; }
  .hero-subheadline { font-size: .9rem; max-width: 100%; }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
    font-size: .85rem;
    padding: .9rem 1.2rem;
  }

  /* CONSULTA */
  #consulta { padding: 3.5rem 5vw; width: 100%; box-sizing: border-box; }

  .consulta-tabs { width: 100%; }

  .tab-btn {
    flex: 1;
    text-align: center;
    padding: .75rem .4rem;
    font-size: .73rem;
    white-space: nowrap;
    cursor: pointer;
  }

  .tab-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }
  .tab-cta {
    width: calc(100% - 10vw);
    margin: 1.5rem 5vw 2rem;
    justify-content: center;
  }

  .tab-text, .tab-visual { width: 100%; min-width: 0; }
  .timeline { padding-left: 0; width: 100%; }
  .timeline-content p { max-width: 100%; }
  .tab-panel.active { padding-bottom: 2rem; }

  /* ANDRESSA */
  #andressa { padding: 3.5rem 5vw; width: 100%; box-sizing: border-box; }

  .andressa-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .andressa-text-top   { order: 1; width: 100%; }
  .andressa-photo-wrap { order: 2; max-width: 300px; width: 90%; margin: 0 auto; }
  .andressa-text-bottom { order: 3; width: 100%; min-width: 0; }

  .andressa-photo-bg { inset: 8px -8px -8px 8px; }
  .andressa-bio { max-width: 100%; }

  /* CONTEÚDOS */
  #conteudos { padding: 3.5rem 5vw; width: 100%; box-sizing: border-box; min-height: unset; }
  .conteudos-tabs { width: 100%; }
  .content-grid { grid-template-columns: 1fr; gap: 1.4rem; width: 100%; }
  .content-card { width: 100%; }
  .content-card-img { aspect-ratio: 16 / 7; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); max-width: 100%; word-break: break-word; }

  /* OBJEÇÕES */
  #objecoes { padding: 3.5rem 5vw; width: 100%; box-sizing: border-box; }
  .objecoes-header { max-width: 100%; }
  .accordion { max-width: 100%; width: 100%; }
  .accordion-trigger { cursor: pointer; gap: 1rem; padding: 1.3rem 0; }
  .accordion-trigger span:first-child { font-size: 1rem; }
  .accordion-body p { max-width: 100%; font-size: .88rem; }

  /* CTA FINAL */
  #cta-final { flex-direction: column; min-height: unset; width: 100%; box-sizing: border-box; }
  .cta-final-photo-wrap { width: 100%; min-width: unset; height: 70vw; max-height: 400px; }
  .cta-final-photo {
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }
  .cta-final-text { padding: 2.5rem 5vw 3rem; gap: 1.2rem; }
  .cta-final-btn { width: 100%; justify-content: center; }
  .cta-final-body { max-width: 100%; }

  /* FOOTER */
  #footer { padding: 3.5rem 5vw 2.5rem; width: 100%; box-sizing: border-box; }
  .footer-inner {
  grid-template-columns: 1fr 1fr; /* 2 colunas no mobile */
  gap: 2rem;
}

}

@media (min-width: 769px) and (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}