:root {
  --bege-champanhe: #D9C7B2;
  --taupe-acetinado: #A68F7B;
  --cappuccino: #806153;
  --marfim-quente: #F7F2EA;
  --marsala-terroso: #7C4146;
  --cafe-espresso: #3F2D28;
  --branco: #FFFFFF;
  --shadow-soft: 0 18px 48px rgba(63, 45, 40, 0.1);
  --shadow-light: 0 10px 28px rgba(63, 45, 40, 0.08);
  --radius: 8px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--marfim-quente);
  color: var(--cafe-espresso);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--cappuccino);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--marsala-terroso);
}

:focus-visible {
  outline: 3px solid var(--marsala-terroso);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cappuccino);
  font-family: Lora, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.65rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.05rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1200;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--branco);
  color: var(--cappuccino);
  font-weight: 800;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-light);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 242, 234, 0.96);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(63, 45, 40, 0.08);
}

.header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  width: 230px;
  min-width: 180px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.nav a {
  color: var(--cafe-espresso);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover {
  color: var(--cappuccino);
}

.nav__button {
  min-height: 44px;
  border: 1px solid var(--marsala-terroso);
  border-radius: var(--radius);
  padding: 0.62rem 1rem;
  background: var(--marsala-terroso);
  color: var(--branco) !important;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav__button:hover {
  border-color: var(--cappuccino);
  background: var(--cappuccino);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(128, 97, 83, 0.24);
  border-radius: var(--radius);
  background: var(--branco);
  color: var(--cappuccino);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 90px 0;
}

.section--warm,
.section--white {
  background: var(--marfim-quente);
}

.section--mist {
  background:
    linear-gradient(180deg, rgba(217, 199, 178, 0.74), rgba(247, 242, 234, 0.96)),
    var(--bege-champanhe);
}

.section--beige {
  background: var(--bege-champanhe);
}

.section--faq {
  background: var(--bege-champanhe);
}

.section-heading {
  max-width: 830px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p {
  margin-top: 1rem;
  font-size: 1.07rem;
}

.centered-section {
  text-align: center;
}

.lead-text {
  color: var(--cappuccino);
  font-size: 1.23rem;
  font-weight: 800;
  line-height: 1.55;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--cappuccino);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--bege-champanhe);
}

.title-rule {
  display: block;
  width: 76px;
  height: 3px;
  margin: 1.2rem auto 1.8rem;
  border-radius: 99px;
  background: var(--marsala-terroso);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.15rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(63, 45, 40, 0.12);
}

.button--accent {
  border-color: var(--marsala-terroso);
  background: var(--marsala-terroso);
  color: var(--branco);
}

.button--accent:hover {
  border-color: var(--cappuccino);
  background: var(--cappuccino);
  color: var(--branco);
}

.button--deep {
  border-color: var(--cappuccino);
  background: var(--cappuccino);
  color: var(--branco);
}

.button--deep:hover {
  border-color: var(--cafe-espresso);
  background: var(--cafe-espresso);
  color: var(--branco);
}

.button--outline {
  border-color: rgba(128, 97, 83, 0.42);
  background: transparent;
  color: var(--cappuccino);
}

.button--outline:hover {
  border-color: var(--cappuccino);
  background: var(--bege-champanhe);
  color: var(--cappuccino);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.74);
  background: transparent;
  color: var(--branco);
}

.button--outline-light:hover {
  border-color: var(--branco);
  background: rgba(255, 255, 255, 0.12);
  color: var(--branco);
}

.button--light {
  border-color: var(--marfim-quente);
  background: var(--marfim-quente);
  color: var(--cappuccino);
}

.button--light:hover {
  border-color: var(--branco);
  background: var(--branco);
  color: var(--cappuccino);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0 88px;
  background:
    linear-gradient(115deg, rgba(247, 242, 234, 0.98) 0%, rgba(247, 242, 234, 0.96) 48%, rgba(217, 199, 178, 0.9) 100%),
    radial-gradient(circle at 90% 18%, rgba(217, 199, 178, 0.46), transparent 32%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(128, 97, 83, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(128, 97, 83, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.hero::after {
  position: absolute;
  right: 7%;
  bottom: 54px;
  z-index: -1;
  width: 180px;
  height: 3px;
  border-radius: 99px;
  background: rgba(124, 65, 70, 0.62);
  content: "";
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 4.4rem;
  align-items: center;
}

.hero__content {
  max-width: 760px;
}

.hero-logo {
  width: min(100%, 430px);
  margin-bottom: 1.1rem;
}

.hero-title {
  max-width: 760px;
  color: var(--marsala-terroso);
  font-family: Lora, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 800;
  font-size: 4.75rem;
  line-height: 0.98;
}

.hero-theme {
  max-width: 690px;
  margin-top: 1.15rem;
  color: var(--cafe-espresso);
  font-family: Lora, Georgia, Cambria, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero__lead {
  max-width: 690px;
  margin-top: 1.35rem;
  color: var(--cafe-espresso);
  font-size: 1.14rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
  list-style: none;
}

.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(128, 97, 83, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0.55rem 0.78rem;
  color: var(--cafe-espresso);
  font-size: 0.94rem;
  font-weight: 800;
}

.hero__facts li::before {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marsala-terroso);
  content: "";
}

.hero__aside {
  display: grid;
  gap: 1rem;
}

.profile-card {
  margin: 0;
}

.profile-card--hero {
  border: 1px solid rgba(166, 143, 123, 0.9);
  border-radius: var(--radius);
  background: var(--branco);
  padding: 0.85rem;
  box-shadow: var(--shadow-soft);
}

.profile-placeholder {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  border: 1px solid rgba(166, 143, 123, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(247, 242, 234, 0.96), rgba(217, 199, 178, 0.86)),
    repeating-linear-gradient(135deg, rgba(128, 97, 83, 0.04) 0 1px, transparent 1px 14px);
}

.profile-placeholder span {
  display: block;
  width: min(72%, 260px);
  border: 1px solid rgba(128, 97, 83, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 0.85rem 1rem;
  color: var(--cappuccino);
  font-weight: 900;
  text-align: center;
}

.profile-card figcaption {
  margin-top: 0.85rem;
  border-left: 3px solid var(--marsala-terroso);
  padding-left: 0.9rem;
  color: var(--cafe-espresso);
}

.profile-card figcaption strong,
.profile-card figcaption span {
  display: block;
}

.profile-card figcaption span {
  color: var(--cappuccino);
  font-weight: 800;
}

.profile-card--about {
  max-width: 390px;
  margin-inline: auto;
  border: 1px solid rgba(166, 143, 123, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 0.85rem;
  box-shadow: var(--shadow-light);
}

.next-step-panel {
  border: 1px solid rgba(128, 97, 83, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 1.2rem;
  box-shadow: var(--shadow-light);
}

.next-step-panel p {
  margin-bottom: 0.35rem;
  color: var(--cappuccino);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-step-panel strong {
  display: block;
  color: var(--cafe-espresso);
  line-height: 1.45;
}

.credentials {
  background: var(--bege-champanhe);
  border-block: 1px solid rgba(128, 97, 83, 0.1);
}

.credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
}

.credential-card {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(128, 97, 83, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(63, 45, 40, 0.04);
}

.credential-card__icon {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(128, 97, 83, 0.28);
  border-radius: var(--radius);
  color: var(--cappuccino);
}

.credential-card__icon::before,
.credential-card__icon::after {
  position: absolute;
  content: "";
}

.credential-card__icon--crp::before {
  width: 20px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.credential-card__icon--crp::after {
  top: 15px;
  width: 11px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
}

.credential-card__icon--brain::before {
  width: 23px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 45% 55% 50% 50%;
}

.credential-card__icon--brain::after {
  width: 2px;
  height: 22px;
  background: currentColor;
}

.credential-card__icon--calendar::before {
  width: 24px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.credential-card__icon--calendar::after {
  top: 18px;
  width: 16px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.credential-card__icon--brasil::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.credential-card__icon--brasil::after {
  width: 28px;
  height: 2px;
  background: currentColor;
  transform: rotate(-28deg);
}

.credential-card p {
  color: var(--cafe-espresso);
  font-weight: 900;
  line-height: 1.35;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card,
.list-panel,
.journey-panel,
.info-card,
.step-card,
.company-card,
.faq__item,
.legal-block,
.contact-card {
  border-radius: var(--radius);
}

.service-card {
  display: flex;
  min-height: 335px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(128, 97, 83, 0.12);
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

.service-card--person {
  background: var(--bege-champanhe);
}

.service-card--company {
  background: var(--bege-champanhe);
}

.service-card p {
  margin-top: 1rem;
}

.service-symbol {
  display: grid;
  position: relative;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--branco);
  color: var(--cappuccino);
  box-shadow: 0 10px 20px rgba(63, 45, 40, 0.08);
}

.service-symbol--check::before {
  width: 18px;
  height: 10px;
  border-bottom: 4px solid var(--marsala-terroso);
  border-left: 4px solid var(--marsala-terroso);
  content: "";
  transform: translateY(-2px) rotate(-45deg);
}

.service-symbol--handshake::before,
.service-symbol--handshake::after {
  position: absolute;
  content: "";
}

.service-symbol--handshake::before {
  top: 13px;
  left: 12px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cappuccino);
  box-shadow: 21px 0 0 var(--cappuccino);
}

.service-symbol--handshake::after {
  right: 12px;
  bottom: 15px;
  left: 12px;
  height: 12px;
  border: 3px solid var(--marsala-terroso);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  transform: rotate(-3deg);
}

.journey-panel {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(128, 97, 83, 0.12);
  background: var(--branco);
  padding: 1rem;
  box-shadow: var(--shadow-light);
}

.journey-tabs {
  display: grid;
  gap: 0.6rem;
}

.journey-tab {
  min-height: 54px;
  border: 1px solid rgba(128, 97, 83, 0.16);
  border-radius: var(--radius);
  background: var(--marfim-quente);
  color: var(--cafe-espresso);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0.85rem 1rem;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.journey-tab:hover,
.journey-tab.is-active {
  border-color: var(--cappuccino);
  background: var(--cappuccino);
  color: var(--branco);
}

.journey-content {
  display: grid;
  align-items: center;
  min-height: 190px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 199, 178, 0.74), rgba(247, 242, 234, 0.92)),
    var(--bege-champanhe);
  padding: 1.5rem;
}

.journey-pane h3 {
  color: var(--cappuccino);
}

.journey-pane p {
  max-width: 680px;
  margin-top: 0.85rem;
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.list-panel {
  border: 1px solid rgba(128, 97, 83, 0.14);
  background: var(--branco);
  padding: 2rem;
  box-shadow: 0 12px 26px rgba(63, 45, 40, 0.06);
}

.soft-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding-left: 1.55rem;
}

.soft-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid var(--marsala-terroso);
  border-radius: 50%;
  content: "";
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.section-action--left {
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.8rem;
}

.therapy-note {
  max-width: 660px;
  color: var(--cappuccino);
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 3.4rem;
  align-items: center;
}

.subtitle {
  margin: 0.9rem 0 1.5rem;
  color: var(--cappuccino);
  font-weight: 900;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.about-highlights p {
  border: 1px solid rgba(128, 97, 83, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 0.9rem 1rem;
  color: var(--cappuccino);
  font-weight: 900;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  display: grid;
  min-height: 142px;
  align-content: start;
  gap: 0.55rem;
  border: 1px solid rgba(128, 97, 83, 0.1);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.2rem;
  box-shadow: 0 10px 22px rgba(63, 45, 40, 0.06);
}

.info-card strong {
  color: var(--cappuccino);
  line-height: 1.25;
}

.info-card span {
  color: var(--cafe-espresso);
  font-size: 0.94rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.step-card {
  border: 1px solid rgba(128, 97, 83, 0.1);
  background: rgba(255, 255, 255, 0.74);
  padding: 1.6rem;
}

.step-card__number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--cappuccino);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.microcopy {
  max-width: 620px;
  color: var(--cafe-espresso);
  font-size: 0.95rem;
}

.confidentiality {
  background: var(--cappuccino);
  color: rgba(255, 255, 255, 0.88);
}

.confidentiality__inner {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.3rem;
  align-items: start;
}

.confidentiality h2 {
  color: var(--branco);
}

.confidentiality p {
  max-width: 930px;
  margin-top: 1rem;
}

.lock-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.lock-icon::before {
  position: absolute;
  top: 10px;
  left: 17px;
  width: 24px;
  height: 20px;
  border: 3px solid var(--bege-champanhe);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  content: "";
}

.lock-icon::after {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  height: 22px;
  border-radius: 3px;
  background: var(--bege-champanhe);
  content: "";
}

.highlight-line {
  display: inline-block;
  border-left: 3px solid var(--marsala-terroso);
  padding-left: 1rem;
  color: var(--cappuccino);
  font-weight: 900;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.company-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128, 97, 83, 0.1);
  background: var(--branco);
  padding: 1.35rem;
  box-shadow: 0 10px 24px rgba(63, 45, 40, 0.06);
}

.company-card::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(217, 199, 178, 0.34);
  content: "";
}

.company-card__icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border: 1px solid rgba(128, 97, 83, 0.24);
  border-radius: var(--radius);
  color: var(--cappuccino);
}

.company-card__icon::before,
.company-card__icon::after {
  position: absolute;
  content: "";
}

.company-card__icon--talk::before {
  inset: 10px 8px 14px;
  border: 2px solid currentColor;
  border-radius: 11px;
}

.company-card__icon--talk::after {
  right: 10px;
  bottom: 9px;
  width: 9px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(20deg);
}

.company-card__icon--plan::before {
  inset: 9px 12px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.company-card__icon--plan::after {
  top: 15px;
  left: 15px;
  width: 17px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skew(-18deg);
}

.company-card__icon--training::before {
  top: 11px;
  left: 11px;
  width: 22px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.company-card__icon--training::after {
  bottom: 9px;
  left: 17px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.company-card__icon--care::before {
  top: 12px;
  left: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 13px 0 0 currentColor;
}

.company-card__icon--care::after {
  right: 10px;
  bottom: 12px;
  left: 10px;
  height: 8px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.company-card__icon--risk::before {
  top: 9px;
  left: 19px;
  width: 2px;
  height: 18px;
  background: currentColor;
}

.company-card__icon--risk::after {
  top: 28px;
  left: 18px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 -20px 0 currentColor;
}

.company-card__icon--nr::before {
  top: 10px;
  left: 12px;
  width: 20px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.company-card__icon--nr::after {
  top: 17px;
  left: 17px;
  width: 10px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.company-card h3 {
  font-size: 1.2rem;
}

.company-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}

.company-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(128, 97, 83, 0.14);
  padding-top: 1.6rem;
}

.company-cta p {
  max-width: 690px;
  color: var(--cappuccino);
  font-weight: 900;
}

.faq {
  max-width: 930px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid rgba(128, 97, 83, 0.12);
  background: var(--branco);
  box-shadow: 0 8px 20px rgba(63, 45, 40, 0.05);
}

.faq__item + .faq__item {
  margin-top: 0.8rem;
}

.faq__button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--cafe-espresso);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 1rem 1.1rem;
  text-align: left;
}

.faq__button span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid rgba(128, 97, 83, 0.28);
  border-radius: 50%;
}

.faq__button span::before,
.faq__button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--cappuccino);
  content: "";
  transform: translate(-50%, -50%);
}

.faq__button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.faq__button[aria-expanded="true"] span::after {
  opacity: 0;
}

.faq__answer {
  padding: 0 1.1rem 1.15rem;
}

.faq__answer p {
  max-width: 760px;
}

.final-cta {
  background: var(--cappuccino);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.final-cta h2 {
  color: var(--branco);
}

.final-cta p {
  max-width: 750px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

.site-footer {
  background: var(--cafe-espresso);
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 112px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr 1fr 0.85fr;
  gap: 2rem;
}

.footer__brand img {
  width: 220px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.site-footer h2 {
  color: var(--branco);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer p,
.site-footer address {
  margin-top: 0.8rem;
}

.site-footer address {
  display: grid;
  gap: 0.45rem;
  font-style: normal;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover {
  color: var(--branco);
}

.footer__links {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
  list-style: none;
}

.footer__bottom {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 900;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: var(--cappuccino);
  box-shadow: 0 12px 28px rgba(63, 45, 40, 0.24);
  color: var(--branco);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  background: var(--marsala-terroso);
  color: var(--branco);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float svg path + path {
  fill: currentColor;
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.legal-hero {
  padding: 74px 0 54px;
  background: var(--cappuccino);
  color: rgba(255, 255, 255, 0.88);
}

.legal-hero h1 {
  max-width: 860px;
  color: var(--branco);
  font-size: 3rem;
}

.legal-hero p {
  max-width: 760px;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.legal-content {
  padding: 70px 0;
  background: var(--marfim-quente);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.6rem;
  align-items: start;
}

.legal-main {
  display: grid;
  gap: 1.6rem;
}

.legal-block {
  border: 1px solid rgba(128, 97, 83, 0.1);
  background: var(--branco);
  padding: 1.6rem;
  box-shadow: 0 10px 24px rgba(63, 45, 40, 0.05);
}

.legal-block h2 {
  font-size: 1.55rem;
}

.legal-block h3 {
  margin-top: 1rem;
  font-size: 1.18rem;
}

.legal-block ul {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-left: 1.15rem;
}

.legal-aside {
  position: sticky;
  top: 110px;
  border-left: 3px solid var(--marsala-terroso);
  padding-left: 1rem;
}

.legal-aside h2 {
  font-size: 1.2rem;
}

.legal-aside ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  list-style: none;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(128, 97, 83, 0.1);
  background: var(--branco);
  padding: 1.6rem;
  box-shadow: var(--shadow-light);
}

.contact-card p {
  margin-top: 1rem;
}

.contact-extra {
  margin-top: 1.5rem;
}

.plain-link-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
  list-style: none;
}

@media (max-width: 1120px) {
  .nav {
    gap: 0.78rem;
  }

  .hero__grid {
    gap: 2.8rem;
  }

  .credentials__grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 78px;
  }

  .header__inner {
    min-height: 76px;
  }

  .brand-link img {
    width: 208px;
    min-width: 180px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    border-top: 1px solid rgba(128, 97, 83, 0.1);
    background: var(--marfim-quente);
    box-shadow: 0 16px 24px rgba(63, 45, 40, 0.1);
    transition: max-height 240ms ease, visibility 240ms ease;
  }

  .nav.is-open {
    max-height: 78vh;
    visibility: visible;
  }

  .nav a {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    border-bottom: 1px solid rgba(128, 97, 83, 0.08);
    padding: 0.9rem 0;
  }

  .nav__button {
    width: min(100% - 2rem, var(--max-width)) !important;
    margin: 0.8rem auto 1rem !important;
    border-bottom: 0 !important;
  }

  .hero {
    padding: 64px 0 74px;
  }

  .hero__grid,
  .about-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: none;
  }

  .hero__aside {
    width: min(100%, 430px);
  }

  .journey-panel {
    grid-template-columns: 1fr;
  }

  .help-grid,
  .therapy-grid,
  .steps-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

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

  .company-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .container,
  .container--narrow {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .hero-logo {
    width: min(100%, 300px);
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1;
  }

  .hero-theme {
    font-size: 1.58rem;
  }

  h2,
  .legal-hero h1 {
    font-size: 1.9rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero__lead,
  .final-cta p,
  .legal-hero p {
    font-size: 1rem;
  }

  .button-row,
  .button-row--center,
  .section-action {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero__facts {
    display: grid;
  }

  .credentials__grid,
  .info-grid,
  .company-grid,
  .footer__grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .credential-card {
    min-height: 78px;
  }

  .service-card,
  .list-panel,
  .journey-content,
  .step-card,
  .company-card,
  .legal-block,
  .contact-card {
    padding: 1.25rem;
  }

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

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 44px;
    height: 44px;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 390px) {
  .brand-link img {
    width: 188px;
    min-width: 170px;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .hero-theme {
    font-size: 1.45rem;
  }

  .hero {
    padding-top: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
