:root {
  --bg: #f6f1ea;
  --bg-alt: #efe7dc;
  --ink: #24362c;
  --ink-soft: #4d5c54;
  --line: rgba(36, 54, 44, 0.12);
  --accent: #8a5a44;
  --moss: #24362c;
  --cream: #fbf7f1;
  --white: #fffdf9;
  --shadow: 0 24px 50px rgba(36, 54, 44, 0.08);
  --radius: 20px;
  --whats: #1d9c74;
  --whats-dark: #157e5d;
  --font: Barlow, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(138, 90, 68, 0.08), transparent 28%),
    var(--bg);
  line-height: 1.7;
  font-weight: 400;
  font-size: 1.02rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font);
  line-height: 1.14;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  font-weight: 200;
  margin: 0.12em 0 0.32em;
}

h2 {
  font-size: clamp(1.95rem, 3.4vw, 2.9rem);
  font-weight: 200;
  margin-bottom: 0.45em;
}

h3 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.3em;
}

p + p {
  margin-top: 1em;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 40px));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--moss);
  color: var(--white);
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow.light {
  color: #e7cbb8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 234, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-weight: 500;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.btn-primary,
.btn-header {
  background: var(--whats);
  color: var(--white);
  gap: 8px;
}

.btn-primary svg,
.btn-header svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-header:hover,
.btn-header:focus-visible {
  background: var(--whats-dark);
}

.btn-header {
  min-height: 40px;
  padding: 0 20px;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
}

.btn-light {
  background: var(--white);
  color: var(--moss);
}

.btn-outline-light {
  border: 1px solid rgba(255, 253, 249, 0.35);
  color: var(--white);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.hero {
  padding: 76px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.lead {
  font-size: 1.18rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.hero-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 300;
}

.hero-figure {
  position: relative;
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
}

.hero-badge {
  position: absolute;
  left: 0;
  bottom: 10%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.4;
  box-shadow: var(--shadow);
}

.hero-badge strong {
  font-weight: 500;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 660px;
  margin-bottom: 44px;
}

.section-head p {
  color: var(--ink-soft);
  font-weight: 300;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media.tall img {
  aspect-ratio: 3 / 4;
  height: 100%;
}

.formation {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.formation-block {
  margin-bottom: 28px;
}

.formation-block .media img {
  aspect-ratio: 4 / 3;
  object-position: center 28%;
}

.formation-block p {
  color: var(--ink-soft);
  font-weight: 300;
}

.formation-block em {
  font-style: italic;
  color: var(--ink);
}

.work-content p {
  color: var(--ink-soft);
  font-weight: 300;
}

.work-content h3 {
  margin-top: 2rem;
  font-weight: 400;
  line-height: 1.35;
}

.work-content em {
  color: var(--ink);
}

.work-cta {
  margin-top: 2.2rem;
}

.formation-block--cert {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(300px, 440px) 1fr;
  gap: 44px;
  align-items: start;
}

.formation-cert-media {
  box-shadow: var(--shadow);
}

.formation-block--cert .media img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  padding: 16px;
}

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.cred-card,
.treatments article,
.testimonials figure,
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.cred-card img,
.treatments img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 32%;
}

.cred-card img {
  aspect-ratio: 4 / 3;
  object-position: center 28%;
}

.cred-card img.img-contain {
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 14px;
}

.cred-body,
.treat-body {
  padding: 26px 28px 30px;
}

.cred-body p:not(.cred-label),
.treat-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.cred-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
}

.quote-band {
  position: relative;
  padding: 104px 0;
  color: var(--cream);
  background-image:
    linear-gradient(rgba(12, 22, 17, 0.7), rgba(12, 22, 17, 0.7)),
    url("imagens/citacao.jpg");
  background-size: cover;
  background-position: center;
}

.quote-band blockquote {
  max-width: 760px;
}

.quote-band blockquote p {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 200;
  line-height: 1.25;
  font-style: italic;
}

cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.85;
}

.help-topics {
  display: grid;
  gap: 20px;
  max-width: 760px;
}

.help-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 34px;
}

.help-card p {
  color: var(--ink-soft);
  font-weight: 300;
}

.help-card p + p {
  margin-top: 1em;
}

.section-head > p {
  color: var(--ink-soft);
  font-weight: 300;
}

.passo-intro {
  margin-bottom: 48px;
  align-items: center;
}

.passo-intro-copy p {
  color: var(--ink-soft);
  font-weight: 300;
}

.passo-step,
.passo-formats {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 24px;
}

.passo-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 10px;
}

.passo-step p,
.passo-formats p {
  color: var(--ink-soft);
  font-weight: 300;
}

.passo-step em,
.passo-formats em {
  color: var(--ink);
  font-style: italic;
}

.passo-list {
  margin: 1rem 0 1.2rem 1.2rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.passo-list li + li {
  margin-top: 0.45rem;
}

.passo-cta {
  margin-top: 1.8rem;
}

.passo-formats h2 {
  margin-bottom: 0.6em;
}

.passo-formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 20px;
}

.passo-formats-grid .format-card {
  padding: 24px 26px;
}

.passo-formats-grid .format-card p {
  margin: 0;
}

.consult-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: stretch;
}

.steps {
  list-style: none;
  display: grid;
  gap: 26px;
  align-content: center;
}

.step-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.steps p {
  color: var(--ink-soft);
  font-weight: 300;
}

.steps p.step-duration {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.format-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.format-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent);
  margin-bottom: 18px;
}

.format-icon svg {
  width: 22px;
  height: 22px;
}

.format-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.format-card p.format-detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink);
}

.format-detail a {
  border-bottom: 1px solid var(--accent);
}

.carousel {
  max-width: 720px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  padding: 36px 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.carousel-slide::before {
  content: "“";
  display: block;
  font-family: var(--font);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
}

.carousel-slide blockquote {
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

.carousel-slide figcaption {
  margin-top: 22px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(36, 54, 44, 0.2);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 22px 26px;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 300;
}

.faq details p + p {
  margin-top: 0.8em;
}

.section-head em {
  font-style: italic;
}

.cta-band {
  background: var(--moss);
  color: var(--cream);
  padding: 88px 0;
}

.contact-block h2 {
  font-weight: 300;
  margin-bottom: 0.5em;
}

.contact-block p {
  font-weight: 300;
  opacity: 0.92;
}

.contact-block em {
  font-style: italic;
  color: var(--cream);
}

.contact-highlight {
  margin-top: 1.6rem;
  font-size: 1.05rem;
}

.contact-highlight strong {
  font-weight: 500;
}

.contact-meta {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.contact-extra {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 247, 241, 0.18);
}

.contact-extra a {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid #e7cbb8;
  color: #e7cbb8;
}

.cta-band .btn-light {
  gap: 8px;
}

.cta-band .btn-light svg {
  width: 17px;
  height: 17px;
}

.site-footer {
  background: #1b2a22;
  color: #d7ddd8;
  padding: 48px 0 24px;
  font-weight: 300;
  text-align: center;
}

.footer-main {
  display: grid;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
}

.footer-links,
.footer-legal {
  font-size: 0.92rem;
}

.footer-links span,
.footer-legal span {
  margin: 0 8px;
  opacity: 0.5;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 18px;
  font-size: 0.88rem;
  opacity: 0.85;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whats);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(29, 156, 116, 0.35);
  z-index: 12;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 980px) {
  .treatments,
  .formats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    inset: 76px 20px auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .passo-intro,
  .hero-grid,
  .split,
  .creds,
  .consult-grid,
  .passo-formats-grid,
  .treatments,
  .formats,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-badge {
    left: -6px;
    bottom: 4%;
  }

  .split .media {
    order: 2;
  }

  .media.tall img {
    aspect-ratio: 4 / 3;
  }

  .formation-block--cert {
    grid-template-columns: 1fr;
  }

  .formation-cert-media {
    max-width: 420px;
    margin: 0 auto;
  }

  .passo-step,
  .passo-formats {
    padding: 28px 24px;
  }

  .section,
  .cta-band,
  .quote-band {
    padding: 64px 0;
  }
}
