@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Manrope:wght@400;500;600&display=swap');

:root {
  --ink: #2e2824;
  --muted: #746a63;
  --ivory: #f8f3ec;
  --sand: #efe4d6;
  --paper: #fffdf9;
  --terracotta: #a6533a;
  --terracotta-dark: #82402f;
  --gold: #c9a982;
  --line: rgba(46, 40, 36, 0.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --shadow: 0 28px 70px rgba(73, 53, 41, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg, video { display: block; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.section-pad { padding: clamp(88px, 10vw, 144px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(248, 243, 236, .88);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(46, 40, 36, .06);
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 104px;
  height: 74px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav { display: flex; align-items: center; gap: 34px; }

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.button svg, .session-item svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-2px); }

.button-small { min-height: 42px; padding-inline: 20px; }
.button-small svg { width: 16px; }

.menu-toggle, .mobile-menu { display: none; }

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(64px, 7vw, 96px);
}

html.capture-full .hero { min-height: auto; }

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.eyebrow, .section-index {
  margin: 0 0 25px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .94;
}

h1 { margin-bottom: 30px; font-size: clamp(66px, 7vw, 106px); }
h2 { margin-bottom: 0; font-size: clamp(52px, 6vw, 82px); }
h1 em, h2 em { color: var(--terracotta); font-weight: 500; }

.hero-lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions { display: flex; align-items: center; gap: 28px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

.trust-row {
  display: flex;
  gap: 0;
  margin: 58px 0 0;
}

.trust-row div { min-width: 116px; padding-right: 28px; }
.trust-row div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.trust-row dt { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.trust-row dd { margin: 1px 0 0; font-family: var(--serif); font-size: 22px; font-weight: 600; }
.trust-row dd span { color: var(--terracotta); font-family: var(--sans); font-size: 8px; letter-spacing: 0; vertical-align: middle; }

.hero-art { position: relative; height: min(620px, 64vw); max-height: 620px; }

.portfolio-crop {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
}

.crop-newborn { background-image: url('assets/ficticia-newborn.png'); background-position: 52% center; }
.crop-infantil { background-image: url('assets/ficticia-infantil.png'); background-position: center 35%; }
.crop-gestante { background-image: url('assets/ficticia-gestante.png'); background-position: center 30%; }
.crop-familia { background-image: url('assets/ficticia-familia.png'); background-position: center 38%; }

.hero-photo {
  position: absolute;
  top: 0;
  right: 6%;
  width: 64%;
  height: 88%;
  margin: 0;
  border-radius: 46% 46% 18px 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ambient-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.hero-video { object-position: 52% center; }

.hero-photo-small {
  position: absolute;
  bottom: 1%;
  left: 2%;
  z-index: 2;
  width: 33%;
  height: 40%;
  margin: 0;
  border: 10px solid var(--ivory);
  border-radius: 110px 110px 18px 18px;
  box-shadow: 0 22px 60px rgba(73,53,41,.18);
}

.hero-seal {
  position: absolute;
  right: 0;
  bottom: 1%;
  z-index: 3;
  width: 118px;
  height: 118px;
  padding: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  animation: float 5s ease-in-out infinite;
}

.hero-seal svg { width: 100%; height: 100%; }
.hero-seal text { fill: currentColor; font-family: var(--sans); font-size: 7px; letter-spacing: 1.3px; }
.seal-heart { fill: none; stroke: currentColor; stroke-width: 1.1; }

.organic-line { position: absolute; border: 1px solid rgba(166,83,58,.22); border-radius: 50%; }
.line-one { width: 510px; height: 510px; right: -210px; top: 5%; }
.line-two { width: 390px; height: 390px; left: 7%; bottom: 1%; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-8px) rotate(1deg); } }

.manifesto { padding: 84px 0; background: var(--paper); border-block: 1px solid var(--line); }
.manifesto-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; align-items: start; }
.manifesto-text { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); line-height: 1.12; letter-spacing: -.025em; }
.manifesto-text em { color: var(--terracotta); }

.portfolio { background: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 70px;
}

.section-head > p { max-width: 390px; margin-bottom: 6px; color: var(--muted); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 22px;
}

.portfolio-card { margin: 0; }
.portfolio-card:nth-child(even) { margin-top: 46px; }
.portfolio-card > div { height: 100%; border-radius: 180px 180px 16px 16px; filter: saturate(.88) contrast(.98); transition: filter .35s ease, transform .35s ease; }
.portfolio-card:hover > div { filter: saturate(1); transform: translateY(-5px); }
.card-tall { height: 500px; }
.card-short { height: 430px; }
.card-mid { height: 470px; }
.portfolio-card figcaption { padding: 14px 5px 0; font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.2; }
.seasonal {
  background: var(--paper);
  padding-top: 0;
}

.seasonal-card {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  overflow: hidden;
  border-radius: 30px;
  background: #2f463c;
  color: #fffaf2;
  box-shadow: 0 32px 80px rgba(38, 56, 47, .18);
}

.seasonal-card::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  left: -240px;
  bottom: -240px;
  border: 1px solid rgba(226, 197, 150, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(226, 197, 150, .035), 0 0 0 144px rgba(226, 197, 150, .025);
}

.seasonal-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 72px 40px 72px clamp(52px, 6vw, 88px);
}

.seasonal-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #e1c494;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.seasonal-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bd725e;
  box-shadow: 0 0 0 5px rgba(189, 114, 94, .13);
}

.seasonal-year {
  margin-bottom: 15px;
  color: rgba(255,250,242,.63);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.seasonal-year strong { color: #e1c494; font-weight: 600; }

.seasonal h2 {
  max-width: 590px;
  font-size: clamp(55px, 6vw, 82px);
}

.seasonal h2 em { color: #e1c494; }

.seasonal-lead {
  max-width: 500px;
  margin: 28px 0 30px;
  color: rgba(255,250,242,.68);
  font-size: 14px;
}

.seasonal-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.seasonal-status span {
  padding: 8px 13px;
  border: 1px solid rgba(225,196,148,.28);
  border-radius: 999px;
  color: #e8d3b0;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.seasonal-button {
  border-color: #fffaf2;
  background: #fffaf2;
  color: #2f463c;
}

.seasonal-button:hover {
  border-color: #e8d3b0;
  background: #e8d3b0;
  color: #2f463c;
}

.seasonal-visual {
  position: relative;
  min-height: 620px;
  align-self: stretch;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(47,70,60,.32), rgba(47,70,60,.02) 36%), url('assets/ficticia-natal.png');
  background-position: center;
  background-size: cover;
}

.seasonal-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(28, 43, 36, .68));
  pointer-events: none;
}

.seasonal-video { object-position: center 48%; }

.seasonal-video-caption {
  position: absolute;
  right: 36px;
  bottom: 32px;
  left: 36px;
  z-index: 2;
  max-width: 390px;
  margin: 0;
  color: rgba(255, 250, 242, .9);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  line-height: 1.25;
}

.seasonal-scene {
  display: none;
}

.seasonal-reveal {
  position: absolute;
  top: 14%;
  right: 6%;
  z-index: 2;
  width: 126px;
  height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,250,242,.55);
  border-radius: 50%;
  background: rgba(47,70,60,.86);
  color: #fffaf2;
  text-align: center;
  transform: rotate(7deg);
}

.seasonal-reveal span { font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.seasonal-reveal strong { font-family: var(--serif); font-size: 22px; font-style: italic; font-weight: 500; }

.season-star { position: absolute; color: #e1c494; font-size: 18px; animation: starPulse 3.4s ease-in-out infinite; }
.star-one { left: 12%; top: 13%; }
.star-two { right: 13%; top: 44%; animation-delay: .7s; }
.star-three { left: 7%; bottom: 18%; animation-delay: 1.4s; }

@keyframes starPulse {
  0%, 100% { opacity: .42; transform: scale(.85) rotate(0); }
  50% { opacity: 1; transform: scale(1.08) rotate(18deg); }
}

.sessions { background: var(--sand); }
.sessions-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(70px, 10vw, 145px); }
.sessions-intro { position: sticky; top: 140px; align-self: start; }
.sessions-intro h2 { margin-bottom: 30px; }
.sessions-intro > p:not(.section-index) { max-width: 390px; color: var(--muted); }
.sessions-intro .text-link { margin-top: 20px; }

.sessions-list { border-top: 1px solid var(--line); }
.session-item { display: grid; grid-template-columns: 44px 1fr 24px; gap: 24px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--line); }
.session-number { padding-top: 3px; color: var(--terracotta); font-size: 9px; letter-spacing: .12em; }
.session-item h3 { margin: -6px 0 8px; font-family: var(--serif); font-size: 34px; font-weight: 600; letter-spacing: -.025em; }
.session-item p { max-width: 500px; margin: 0; color: var(--muted); font-size: 13px; }
.session-item svg { justify-self: end; margin-top: 2px; color: var(--terracotta); transition: transform .25s ease; }
.session-item:hover svg { transform: translate(4px, -4px); }

.experience {
  background: var(--ivory);
  overflow: hidden;
  scroll-margin-top: 88px;
}

.experience-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  margin-bottom: 64px;
}

.experience-head .section-index { align-self: start; margin-top: 8px; }
.experience-head h2 { font-size: clamp(54px, 6vw, 80px); }
.experience-head > p:last-child { margin: 0 0 8px; color: var(--muted); font-size: 14px; }

.experience-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 72px;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.experience-step {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 32px clamp(24px, 3vw, 40px) 34px;
}

.experience-step + .experience-step { border-left: 1px solid var(--line); }
.experience-step > span { color: var(--terracotta); font-size: 9px; font-weight: 600; letter-spacing: .16em; }
.experience-step h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: -.025em; line-height: 1; }
.experience-step p { max-width: 300px; margin: 0; color: var(--muted); font-size: 13px; }

.schedule-demo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(42px, 6vw, 76px);
  padding: clamp(44px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 24px 64px rgba(73, 53, 41, .055);
  scroll-margin-top: 118px;
}

.schedule-demo::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  top: -190px;
  right: -170px;
  border: 1px solid rgba(166, 83, 58, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(166, 83, 58, .025);
}

.schedule-intro { position: relative; z-index: 1; }
.schedule-kicker { margin: 0 0 22px; color: var(--terracotta); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.schedule-intro h3 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(43px, 5vw, 66px); font-weight: 500; letter-spacing: -.04em; line-height: .98; }
.schedule-intro h3 em { color: var(--terracotta); font-weight: 500; }
.schedule-intro > p:not(.schedule-kicker) { max-width: 470px; color: var(--muted); font-size: 13px; }

.schedule-types, .schedule-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-types { margin: 28px 0 34px; }

.schedule-types button, .schedule-times button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 600 10px/1 var(--sans);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.schedule-types button:hover, .schedule-times button:hover { border-color: var(--terracotta); color: var(--terracotta); }
.schedule-types button.is-selected { border-color: var(--terracotta); background: var(--terracotta); color: white; }
.schedule-times button.is-selected { border-color: var(--ink); background: var(--ink); color: white; }

.schedule-selection { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.schedule-selection span { color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.schedule-selection strong { font-family: var(--serif); font-size: 27px; font-weight: 500; }
.schedule-times { margin-bottom: 28px; }
.schedule-button { min-width: 232px; }

.schedule-calendar {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: min(100%, 440px);
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbf7f1;
}

.calendar-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.calendar-head span { font-family: var(--serif); font-size: 34px; font-weight: 500; }
.calendar-head strong { color: var(--terracotta); font-size: 10px; letter-spacing: .14em; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.calendar-weekdays { margin-bottom: 9px; }
.calendar-weekdays span { color: var(--muted); font-size: 7px; font-weight: 600; letter-spacing: .06em; text-align: center; text-transform: uppercase; }

.calendar-grid button, .calendar-empty {
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
}

.calendar-grid button {
  color: var(--ink);
  font: 500 11px/1 var(--sans);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.calendar-grid button:hover:not(:disabled) { border-color: rgba(166,83,58,.28); background: var(--paper); color: var(--terracotta); transform: translateY(-1px); }
.calendar-grid button:disabled { border-color: transparent; background: rgba(46, 40, 36, .045); color: rgba(46, 40, 36, .25); cursor: not-allowed; }
.calendar-grid button.is-selected { border-color: var(--terracotta); background: var(--terracotta); color: white; }
.calendar-empty { border-color: transparent; background: transparent; }

.calendar-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; color: var(--muted); font-size: 7px; text-transform: uppercase; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.calendar-legend i { width: 8px; height: 8px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); }
.calendar-legend span:nth-child(2) i { border-color: transparent; background: rgba(46, 40, 36, .09); }
.calendar-legend span:nth-child(3) i { border-color: var(--terracotta); background: var(--terracotta); }

.schedule-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.about { background: var(--paper); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(64px, 8vw, 110px); align-items: center; }
.about-visual { position: relative; height: 590px; }
.portrait { position: absolute; background-repeat: no-repeat; background-size: cover; background-color: var(--sand); box-shadow: var(--shadow); filter: saturate(.88); }
.portrait-andressa { width: 60%; height: 75%; left: 0; top: 0; border-radius: 200px 200px 20px 20px; background-image: url('assets/andressa-restaurada.png'); background-position: center 28%; }
.portrait-stefany { width: 47%; height: 58%; right: 2%; bottom: 0; z-index: 2; border: 10px solid var(--paper); border-radius: 160px 160px 18px 18px; background-image: url('assets/stefany-restaurada.png'); background-position: center 24%; }
.about-badge { position: absolute; right: 5%; top: 4%; width: 138px; height: 138px; display: flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--gold); border-radius: 50%; color: var(--terracotta); }
.about-badge strong { font-family: var(--serif); font-size: 55px; font-weight: 500; line-height: 1; }
.about-badge span { font-size: 9px; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.about-copy h2 { margin-bottom: 34px; }
.about-copy p { max-width: 520px; color: var(--muted); }
.about-copy .about-lead { color: var(--ink); font-family: var(--serif); font-size: 24px; line-height: 1.35; }
.signature { margin-top: 38px; color: var(--terracotta); font-family: var(--serif); font-size: 36px; font-style: italic; }
.signature span { color: var(--gold); font-size: 20px; padding-inline: 6px; }

.reviews { background: var(--ivory); }
.reviews-head { display: flex; justify-content: space-between; gap: 60px; align-items: end; margin-bottom: 65px; }
.rating-card { display: flex; align-items: center; gap: 18px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.rating-card strong { font-family: var(--serif); font-size: 45px; font-weight: 500; line-height: 1; }
.rating-card div { display: flex; flex-direction: column; }
.rating-card div span { color: var(--terracotta); font-size: 11px; letter-spacing: .08em; }
.rating-card small { color: rgba(116, 106, 99, .72); font-size: 8px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { min-height: 286px; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.review-card.featured { background: var(--terracotta); color: white; }
.quote-mark { color: var(--gold); font-family: var(--serif); font-size: 70px; line-height: .5; }
.review-card p { margin: auto 0; font-family: var(--serif); font-size: 29px; line-height: 1.2; }
.review-card footer { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.review-card.featured footer { color: rgba(255,255,255,.72); }

.contact { background: var(--paper); }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; padding: clamp(58px, 7vw, 88px); border-radius: 28px; background: var(--ink); color: white; }
.contact-card::after { content: ''; position: absolute; width: 420px; height: 420px; right: -150px; bottom: -260px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.eyebrow-light { color: var(--gold); }
.contact h2 { font-size: clamp(51px, 6vw, 78px); }
.contact h2 em { color: var(--gold); }
.contact-copy > p:not(.eyebrow) { max-width: 550px; margin: 28px 0 34px; color: rgba(255,255,255,.66); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-choice { min-width: 232px; justify-content: space-between; border-color: rgba(255,255,255,.5); background: transparent; color: white; transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease; }
.contact-choice svg { transition: transform .25s ease; }
@media (hover: hover) {
  .contact-choice:hover { border-color: white; background: white; color: var(--ink); }
}
.contact-choice:focus-visible, .contact-choice:active { border-color: white; background: white; color: var(--ink); }
.contact-copy .contact-channel-note { margin: 14px 0 0; color: rgba(255,255,255,.42); font-size: 9px; }
.contact-details { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; gap: 28px; margin: 0; font-style: normal; }
.contact-details div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-details span { color: var(--gold); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.contact-details a { color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 19px; line-height: 1.35; text-decoration: none; }
.contact-details a:hover { color: white; }
.contact-details .contact-person-links { display: flex; flex-direction: column; gap: 5px; padding: 0; border: 0; }
.contact-details .instagram-link { color: rgba(255,255,255,.56); font-family: var(--sans); font-size: 10px; letter-spacing: .02em; }

.site-footer { padding: 76px 0 22px; background: var(--sand); }
.demo-notice {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  margin-bottom: 58px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.demo-notice h2 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 500; letter-spacing: -.02em; line-height: 1.1; }
.demo-notice p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; padding-bottom: 58px; }
.brand-footer { width: 144px; height: 102px; place-items: start; }
.brand-logo-footer { object-position: left top; }
.footer-main p { color: var(--muted); font-family: var(--serif); font-size: 20px; line-height: 1.4; }
.footer-main nav { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-main nav a { color: var(--muted); font-size: 11px; text-decoration: none; }
.footer-main nav a:hover { color: var(--terracotta); }
.footer-bottom { display: flex; justify-content: flex-start; gap: 30px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .06em; }

.floating-actions { position: fixed; right: 24px; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); z-index: 60; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }

.scroll-top { display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid rgba(46,40,36,.12); border-radius: 50%; background: rgba(255,253,249,.92); color: var(--ink); box-shadow: 0 8px 20px rgba(73,53,41,.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); cursor: pointer; visibility: hidden; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s; }
.scroll-top svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.scroll-top:hover { background: var(--paper); }
.scroll-top.is-visible { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }

.whatsapp-float { position: relative; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(150deg, #34bd6c, #1c7a4d); color: white; box-shadow: 0 14px 32px rgba(20,80,55,.3), 0 0 0 1px rgba(255,255,255,.16) inset; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(20,80,55,.34), 0 0 0 1px rgba(255,255,255,.22) inset; filter: saturate(1.05); }
.whatsapp-float-icon { width: 30px; height: 30px; fill: currentColor; stroke: none; }

@media (min-width: 801px) {
  .scroll-top { display: none; }
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 38px; }
  h1 { font-size: clamp(60px, 8vw, 84px); }
  .sessions-grid { gap: 70px; }
  .about-grid { gap: 65px; }
  .about-badge { width: 125px; height: 125px; }
  .experience-head { grid-template-columns: 130px minmax(0, 1.2fr) minmax(220px, .8fr); gap: 32px; }
  .schedule-demo { gap: 42px; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 40px, 620px); }
  .section-pad { padding: 76px 0; }
  .header-inner { height: 76px; }
  .header-cta { display: none; }
  .floating-actions { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); gap: 12px; }
  .whatsapp-float { width: 56px; height: 56px; }
  .whatsapp-float-icon { width: 29px; height: 29px; }
  .scroll-top { width: 40px; height: 40px; }
  .brand { width: 92px; height: 65px; }
  .menu-toggle { position: relative; z-index: 52; width: 42px; height: 42px; display: grid; place-content: center; gap: 7px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--ivory); color: var(--ink); }
  .menu-toggle span { width: 17px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: var(--mobile-menu-top, 106px) 0 0; z-index: 49; display: flex; flex-direction: column; justify-content: center; gap: 24px; padding: 40px; border-top: 1px solid var(--line); background: var(--ivory); overflow-y: auto; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { font-family: var(--serif); font-size: 39px; line-height: 1; text-decoration: none; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { grid-row: 1; height: 440px; }
  .hero-copy { grid-row: 2; }
  .hero-photo { right: 4%; width: 72%; }
  .hero-photo-small { left: 1%; width: 39%; }
  .hero-seal { right: 0; }
  .manifesto-grid, .section-head, .sessions-grid, .about-grid, .contact-card { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 15px; }
  .section-head { gap: 28px; margin-bottom: 52px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card { display: flex; flex-direction: column; }
  .portfolio-card > div { flex: 1 1 auto; height: auto; min-height: 0; }
  .portfolio-card figcaption { flex: none; }
  .portfolio-card figcaption span { display: block; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .seasonal-card { grid-template-columns: 1fr; }
  .seasonal-copy { padding: 56px 46px 46px; }
  .seasonal-visual { min-height: 540px; }
  .seasonal-scene { right: 50%; width: min(94%, 620px); transform: translateX(50%); }
  .seasonal-reveal { top: 11%; right: 8%; }
  .sessions-intro { position: static; }
  .experience-head { grid-template-columns: 1fr; gap: 20px; }
  .experience-head .section-index { margin: 0; }
  .experience-head > p:last-child { max-width: 520px; }
  .experience-steps { grid-template-columns: 1fr; margin-bottom: 64px; }
  .experience-step { min-height: 0; display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 28px 0; }
  .experience-step + .experience-step { border-top: 1px solid var(--line); border-left: 0; }
  .schedule-demo { grid-template-columns: 1fr; }
  .schedule-calendar { justify-self: stretch; width: 100%; }
  .schedule-disclaimer { margin-top: 0; }
  .about-visual { height: 560px; }
  .reviews-head { align-items: start; flex-direction: column; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card.featured { transform: none; }
  .contact-card { gap: 60px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .demo-notice { grid-template-columns: 150px 1fr; gap: 36px; }
  .brand-footer { width: 132px; height: 94px; }
  .footer-main p { display: none; }
}

@media (max-width: 520px) {
  .shell { width: calc(100% - 28px); }
  .section-pad { padding: 68px 0; }
  h1 { font-size: clamp(48px, 14vw, 58px); line-height: .96; }
  h2 { font-size: clamp(46px, 13vw, 64px); }
  .hero { padding-top: 46px; }
  .hero-art { height: 360px; }
  .hero-photo { right: 0; width: 78%; height: 84%; }
  .hero-photo-small { width: 42%; height: 42%; border-width: 7px; }
  .hero-seal { width: 92px; height: 92px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-row { margin-top: 45px; }
  .trust-row div { min-width: 0; flex: 1; padding-right: 13px; }
  .trust-row div + div { padding-left: 13px; }
  .trust-row dd { font-size: 18px; }
  .trust-row dd span { display: none; }
  .manifesto { padding: 64px 0; }
  .manifesto-text { font-size: 35px; }
  .portfolio-grid { gap: 10px; }
  .portfolio-card:nth-child(even) { margin-top: 28px; }
  .portfolio-card > div { border-radius: 100px 100px 10px 10px; }
  .card-tall { height: 350px; }
  .card-short { height: 290px; }
  .card-mid { height: 320px; }
  .portfolio-card figcaption { font-size: 15px; }
  .seasonal-card { border-radius: 22px; }
  .seasonal-copy { padding: 46px 24px 40px; }
  .seasonal h2 { font-size: clamp(48px, 14vw, 64px); }
  .seasonal-lead { font-size: 13px; }
  .seasonal-status { align-items: flex-start; flex-direction: column; }
  .seasonal-visual { min-height: 440px; }
  .seasonal-video { object-position: center 42%; }
  .seasonal-video-caption { right: 24px; bottom: 24px; left: 24px; font-size: 19px; }
  .seasonal-scene { width: 112%; max-width: none; }
  .seasonal-reveal { top: 7%; right: 3%; width: 102px; height: 102px; }
  .seasonal-reveal strong { font-size: 19px; }
  .sessions-grid { gap: 55px; }
  .session-item { grid-template-columns: 32px 1fr 18px; gap: 12px; }
  .session-item h3 { font-size: 28px; }
  .experience-head { margin-bottom: 48px; }
  .experience-head h2 { font-size: clamp(46px, 13vw, 62px); }
  .experience-steps { margin-bottom: 48px; }
  .experience-step h3 { font-size: 28px; }
  .schedule-demo { gap: 32px; padding: 32px 16px 28px; border-radius: 20px; }
  .schedule-types button, .schedule-times button { min-height: 44px; }
  .schedule-types { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 30px; }
  .schedule-types button { width: 100%; }
  .schedule-times { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .schedule-times button { width: 100%; padding-inline: 8px; }
  .schedule-button { width: 100%; min-width: 0; justify-content: space-between; }
  .schedule-calendar { padding: 22px 8px; border-radius: 16px; }
  .calendar-weekdays, .calendar-grid { gap: 3px; }
  .calendar-grid button { font-size: 10px; }
  .calendar-legend { gap: 10px; }
  .about-visual { height: 450px; }
  .portrait-andressa { width: 68%; }
  .portrait-stefany { width: 53%; }
  .about-badge { right: 0; width: 105px; height: 105px; }
  .about-badge strong { font-size: 43px; }
  .about-badge span { font-size: 7px; }
  .reviews-head { margin-bottom: 44px; }
  .rating-card { width: 100%; }
  .review-card { min-height: 242px; }
  .contact-card { padding: 50px 22px; border-radius: 22px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { justify-content: space-between; width: 100%; }
  .contact-details div { grid-template-columns: 75px 1fr; }
  .contact-details a { font-size: 17px; }
  .footer-main { grid-template-columns: 1fr; }
  .demo-notice { grid-template-columns: 1fr; gap: 16px; margin-bottom: 46px; padding-bottom: 38px; }
  .demo-notice p { font-size: 10px; }
  .footer-main nav { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 360px) {
  .schedule-demo { width: calc(100% + 12px); margin-left: -6px; padding-inline: 12px; }
  .calendar-head span { font-size: 30px; }
  .calendar-legend { font-size: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .scroll-top { transform: none; }
  .ambient-video { display: none; }
}
