/* ─── Causten (arquivos em /fonts) ───────────────────── */
@font-face {
  font-family: 'Causten';
  src: url('fonts/Causten-Regular.woff2') format('woff2'),
       url('fonts/Causten-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Causten';
  src: url('fonts/Causten-Medium.woff2') format('woff2'),
       url('fonts/Causten-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Causten';
  src: url('fonts/Causten-SemiBold.woff2') format('woff2'),
       url('fonts/Causten-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Causten';
  src: url('fonts/Causten-Bold.woff2') format('woff2'),
       url('fonts/Causten-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── Design Tokens ─────────────────────────────────── */
:root {
  --primary:    #C37776;
  --primary-dk: #b3605f;
  --dark:       #404041;
  --bg:         #F4F4F4;
  --card-bg:    #EAEAEA;
  --white:      #FFFFFF;

  /* Largura máxima do conteúdo (layout); fundos seguem 100% da viewport */
  --layout-max-width: 1140px;

  --font-main:   'Causten', system-ui, sans-serif;
  --font-alt:    'Causten', system-ui, sans-serif;
  --font-footer: 'Causten', system-ui, sans-serif;

  --shadow-btn: 0px 13px 13px 0px rgba(195,119,118,.26),
                0px 3px 7px 0px rgba(195,119,118,.29);
  --radius-card: 20px;
  --radius-btn:  5px;

  /* S02 · subtítulo (Figma) */
  --primary-soft: #a06060;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* Scrollbar · telas maiores (cores da marca) */
@media (min-width: 768px) {
  html {
    scrollbar-color: var(--primary) var(--bg);
    scrollbar-width: thin;
  }

  html::-webkit-scrollbar {
    width: 10px;
  }

  html::-webkit-scrollbar-track {
    background: var(--bg);
  }

  html::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 999px;
    border: 2px solid var(--bg);
  }

  html::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dk);
  }
}

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

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

ul { list-style: none; }

/* ─── Utilities ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--primary-dk); }

.btn-primary img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

.btn-outline {
  background: var(--bg);
  color: var(--primary);
  box-shadow: var(--shadow-btn);
}
.btn-outline:hover { background: var(--white); }

.btn-cta-doctor {
  background: var(--bg);
  color: var(--primary);
  padding: 0 0 0 24px;
  height: 79px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  gap: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: background .2s;
}
.btn-cta-doctor:hover { background: var(--white); }

.btn-cta-doctor .arrow-icon {
  width: 79px;
  height: 79px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background .2s;
}
.btn-cta-doctor:hover .arrow-icon { background: var(--primary-dk); }
.btn-cta-doctor .arrow-icon svg { width: 28px; height: 28px; }

/* ─── Animations ────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero acima da dobra: sem espera pelo observer nem transição longa (mobile/desktop). */
#hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ─── NAV ───────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--primary);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(126,126,126,.15);
}

.nav-inner {
  box-sizing: border-box;
  max-width: var(--layout-max-width);
  width: 100%;
  margin-inline: auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(16px, 4vw, 24px);
}

#nav .logo-wrap {
  height: 59px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
#nav .logo-wrap img {
  height: 100%;
  width: auto;
  max-width: 156px;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  min-width: 0;
}

#nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 564px);
  max-width: 564px;
  gap: clamp(12px, 2vw, 36px);
}

#nav .nav-links a {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--white);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
#nav .nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: currentColor;
  transition: width .25s;
}
#nav .nav-links a:hover {
  color: #000;
}
#nav .nav-links a:hover::after {
  width: 100%;
}
#nav .nav-links a.active {
  color: var(--white);
  font-weight: 600;
}
#nav .nav-links a.active::after {
  width: 100%;
  background: var(--white);
}
#nav .nav-links a.active:hover {
  color: #000;
}
#nav .nav-links a.active:hover::after {
  background: #000;
}

#nav .nav-links a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 88px; left: 0; right: 0;
  background: var(--primary);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: color .2s;
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: #000;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ─── HERO · Figma 10001:1194 (HERO---RECONQUISTAR 1) · full-bleed cover ─ */
#hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(clamp(520px, 46.9vw, 901px), auto);
}

.hero-media {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 1;
  margin: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(244, 244, 244, 0.94) 0%,
    rgba(244, 244, 244, 0.82) 36%,
    rgba(244, 244, 244, 0.35) 52%,
    rgba(244, 244, 244, 0.08) 68%,
    rgba(244, 244, 244, 0) 78%
  );
}

/* Desktop / notebook: sem véu branco entre texto e foto (arte já separa as áreas) */
@media (min-width: 1024px) {
  .hero-overlay {
    background: transparent;
  }
}

.hero-shell {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-block: clamp(40px, 7vh, 88px);
}

.hero-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

/* Conteúdo centralizado no grid 1140px (seções) */
.layout-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

#hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(24px, 3.5vw, 36px);
  max-width: min(100%, 560px);
}

/* Largura da descrição = largura do bloco do título (evita texto encostar na foto) */
#hero .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
}

#hero .hero-logo { width: clamp(140px, 22vw, 240px); }

#hero .hero-heading {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

#hero .hero-body {
  font-size: clamp(15px, 1.05vw, 16px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.6;
  max-width: 100%;
}

#hero .hero-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}

/* ─── FAIXA · ticker (Figma 10039:87) ───────────────── */
.faixa {
  overflow: hidden;
  border-top: 1px solid rgba(126, 126, 126, 0.25);
  border-bottom: 1px solid rgba(126, 126, 126, 0.25);
  display: flex;
  align-items: center;
  min-height: 72px;
  padding-block: 14px;
}

.faixa-primary {
  background: linear-gradient(
    177.67deg,
    #c97a79 0%,
    #c37776 50%,
    #ba6e6d 100%
  );
}

.faixa-dark {
  background: var(--dark);
}

.faixa-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.faixa-sequence {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.faixa-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  flex-shrink: 0;
}

.faixa-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 20px;
  flex-shrink: 0;
}

.faixa-item__icon img {
  display: block;
  max-width: 22px;
  max-height: 20px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.faixa-item__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.2;
}

.faixa-item__title {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
}

.faixa-item__sub {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.faixa-sep {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  background: rgba(255, 255, 255, 0.4);
}

/* Faixa escura (logos) — mantém strip de marca */
.faixa-dark .faixa-track {
  gap: 40px;
}

.faixa-dark .faixa-track img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(10);
  opacity: 0.7;
}

/* ─── S02 · PROBLEMAS (Figma) ───────────────────────── */
#problemas {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-block: clamp(64px, 10vw, 100px);
}

#problemas .s02-glow {
  pointer-events: none;
  position: absolute;
  top: -80px;
  right: max(-100px, calc(50% - (var(--layout-max-width) / 2) - 140px));
  width: min(360px, 55vw);
  height: min(360px, 55vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(195, 119, 118, 0.12) 0%,
    rgba(195, 119, 118, 0) 70%
  );
}

#problemas .s02-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4.5vw, 48px);
}

.s02-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 620px;
  min-width: 0;
  text-align: center;
}

.s02-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1px 19px;
  min-height: 33px;
  border-radius: 100px;
  background: rgba(195, 119, 118, 0.12);
  border: 1px solid rgba(195, 119, 118, 0.25);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.s02-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--primary);
  flex-shrink: 0;
}

.s02-title {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary);
  overflow-wrap: break-word;
}

/* Última linha do título sem quebra entre “como” e “antes?” */
.s02-title__line {
  white-space: nowrap;
}

.s02-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.s02-rule::before,
.s02-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(195, 119, 118, 0.25);
}

.s02-rule__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(195, 119, 118, 0.5);
  flex-shrink: 0;
}

.s02-lead {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary-soft);
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .s02-title__line {
    white-space: normal;
  }

  #problemas .s02-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

#problemas .s02-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.card-problem {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-problem:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(100, 35, 35, 0.25);
}

.card-problem__media {
  position: absolute;
  inset: 0;
}

.card-problem__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-problem__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(139, 72, 71, 0.55) 50%,
    rgba(100, 35, 35, 0.92) 100%
  );
}

.card-problem__num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.card-problem__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}

.card-problem__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  text-align: left;
}

.card-problem__accent {
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 8px;
  border-radius: 2px;
  background: rgba(255, 200, 190, 0.8);
}

.card-problem__desc {
  margin: 14px 0 0;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 235, 230, 0.9);
  text-align: left;
}

.s02-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  padding: 12px 29px;
  border-radius: 100px;
  background: rgba(195, 119, 118, 0.08);
  border: 1px solid rgba(195, 119, 118, 0.18);
}

.s02-note__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.s02-note__text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--primary);
  text-align: center;
}

@media (max-width: 1100px) {
  #problemas .s02-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  #problemas .s02-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .card-problem {
    min-height: 340px;
  }
}

/* ─── S03 · BENEFÍCIOS (Figma 8002:1197) ────────────── */
#beneficios {
  background: var(--bg);
  padding-block: clamp(64px, 10vw, 90px);
  /* overflow visível: necessário para position:sticky na coluna esquerda */
  overflow-x: clip;
}

#beneficios .s03-inner {
  position: relative;
  z-index: 0;
}

.s03-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 505px);
  gap: clamp(40px, 9vw, 100px);
  align-items: start;
  justify-content: space-between;
}

.s03-col-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 340px;
  align-self: start;
}

/* Desktop: bloco esquerdo acompanha o scroll até o fim da lista da direita */
@media (min-width: 1025px) {
  .s03-col-text {
    position: sticky;
    top: 100px;
    z-index: 1;
  }
}

.s03-logo {
  width: clamp(140px, 28vw, 200px);
  height: auto;
}

.s03-title {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--primary);
}

.s03-body {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary);
  max-width: 20rem;
}

.btn-s03-cta {
  align-self: flex-start;
  margin-top: 2px;
  padding: 14px 22px;
  font-size: 15px;
  box-shadow: var(--shadow-btn);
}

.s03-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 29px;
  min-width: 0;
}

.s03-benefit {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.s03-benefit__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.s03-benefit__rule {
  width: 100%;
  line-height: 0;
}

.s03-benefit__rule img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 505px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-text .benefit-title {
  margin: 0 0 8px;
  font-size: clamp(19px, 1.9vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.benefit-text .benefit-desc {
  margin: 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary);
}

/* ─── S04 · COMO FUNCIONA (Figma 10034:117) ─────────── */
#como-funciona {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-block: clamp(64px, 10vw, 100px);
}

#como-funciona .s04-glow {
  pointer-events: none;
  position: absolute;
  bottom: -48px;
  right: max(-100px, calc(50% - (var(--layout-max-width) / 2) - 100px));
  width: min(350px, 55vw);
  height: min(350px, 55vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(195, 119, 118, 0.09) 0%,
    rgba(195, 119, 118, 0) 70%
  );
}

#como-funciona .s04-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4.5vw, 48px);
  text-align: center;
}

.s04-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 640px;
}

.s04-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1px 19px;
  min-height: 33px;
  border-radius: 100px;
  background: rgba(195, 119, 118, 0.12);
  border: 1px solid rgba(195, 119, 118, 0.25);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.s04-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--primary);
  flex-shrink: 0;
}

.s04-title {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary);
}

.s04-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 640px;
}

.s04-rule::before,
.s04-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(195, 119, 118, 0.25);
}

.s04-rule__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(195, 119, 118, 0.5);
  flex-shrink: 0;
}

.s04-intro {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary);
  max-width: 640px;
}

.s04-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
  width: 100%;
  align-items: start;
}

.s04-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(72px, 12vw, 120px);
  gap: 10px;
}

.s04-connector__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(195, 119, 118, 0.2);
  flex-shrink: 0;
}

.s04-connector__dot--on {
  background: rgba(195, 119, 118, 0.5);
}

.s04-connector__arrow {
  display: block;
  margin-top: 2px;
}

.s04-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(195, 119, 118, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 32px rgba(195, 119, 118, 0.1),
    0 1px 4px rgba(195, 119, 118, 0.08);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.s04-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(195, 119, 118, 0.14),
    0 2px 8px rgba(195, 119, 118, 0.1);
}

.s04-card__media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.s04-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s04-card__media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(195, 119, 118, 0.15),
    rgba(122, 53, 53, 0.35)
  );
}

.s04-card__step {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 12px rgba(195, 119, 118, 0.25);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.s04-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
}

.s04-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(195, 119, 118, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.s04-card__icon-wrap img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.s04-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.s04-card__accent {
  width: 36px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    var(--primary),
    rgba(195, 119, 118, 0.3)
  );
}

.s04-card__desc {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--primary);
}

.s04-card__footer-bar {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
  background: linear-gradient(
    to right,
    var(--primary),
    rgba(195, 119, 118, 0.3)
  );
}

.s04-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  width: 100%;
  padding: 22px clamp(16px, 3vw, 32px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(195, 119, 118, 0.15);
  box-sizing: border-box;
}

.s04-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s04-trust__glyph {
  font-size: 22px;
  line-height: 1;
}

.s04-trust__text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .s04-trust__text {
    white-space: normal;
  }
}

/* ─── DEPOIMENTOS ───────────────────────────────────── */
#depoimentos {
  background: var(--primary);
  padding: 90px clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

#depoimentos .section-title-white {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--bg);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

#depoimentos .reviews-label {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 12px;
  width: 380px;
  min-height: 320px;
  padding: 42px 44px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.12);
}

.testimonial-card .google-logo {
  position: absolute;
  top: 28px; right: 28px;
  width: 28px; height: 28px;
}

.testimonial-card .reviewer-name {
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 60px;
}

.testimonial-card .stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.testimonial-card .stars {
  display: flex;
  gap: 3px;
}
.testimonial-card .stars svg {
  width: 18px; height: 18px;
  fill: #FBBC04;
}

.testimonial-card .review-date {
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 400;
  color: #a9a29a;
}

.testimonial-card .review-text {
  font-family: var(--font-alt);
  font-size: 15px;
  font-weight: 400;
  color: #242323;
  line-height: 1.55;
}

/* ─── S06 · BIO (Figma 10034:773) ─────────────────────── */
#sobre {
  padding-block: 90px;
  overflow: hidden;
  scroll-margin-top: 96px;
  background: linear-gradient(
    154.96deg,
    #c97a79 0%,
    #c37776 40%,
    #a85f5e 100%
  );
}

#sobre .s06-inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.s06-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: min(1180px, 100%);
  margin-inline: auto;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.s06-topbar__title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

.s06-topbar__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s, transform 0.2s;
}
.s06-topbar__btn:hover {
  background: rgba(255, 255, 255, 0.22);
}
.s06-topbar__btn:active {
  transform: scale(0.96);
}

.s06-topbar__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}
.s06-topbar__btn img {
  width: 16px;
  height: 16px;
}

#s06-main {
  scroll-margin-top: 100px;
}

.s06-main {
  display: grid;
  grid-template-columns: minmax(280px, 540px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(14px, 1.25vw, 28px);
  width: 100%;
  max-width: min(1180px, 100%);
  margin-inline: auto;
}

/* ─── Composição fotográfica (PhotoComposition) ───────── */
.s06-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 668px;
  margin-inline: auto;
  justify-self: start;
}

.s06-visual__ring {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 478px;
  height: 478px;
  max-width: calc(100% - 44px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.s06-visual__hero {
  position: absolute;
  left: 62px;
  top: 26px;
  width: 438px;
  max-width: calc(100% - 48px);
  z-index: 2;
}

.s06-visual__hero-inner {
  position: relative;
  width: 100%;
  height: 588px;
  max-height: min(588px, 78vh);
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 24px 64px rgba(100, 30, 30, 0.35),
    0 8px 24px rgba(100, 30, 30, 0.2);
}

.s06-visual__hero-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.s06-visual__hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 60%,
    rgba(100, 30, 30, 0.4) 100%
  );
}

.s06-visual__crm {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 14px;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: min(189px, calc(100% - 20px));
  padding: 13px 19px 13px 19px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.s06-visual__crm-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.s06-visual__crm-value {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  white-space: nowrap;
}

.s06-visual__thumb {
  position: absolute;
  left: 0;
  width: 152px;
  max-width: 38%;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(100, 30, 30, 0.3);
  z-index: 3;
  background: #fff;
}

.s06-visual__thumb img {
  display: block;
  width: 100%;
  height: 164px;
  object-fit: cover;
}

.s06-visual__thumb--consultorio {
  top: 412px;
  z-index: 3;
}

.s06-visual__thumb--atendimento {
  top: 228px;
  z-index: 5;
}

.s06-visual__floral {
  position: absolute;
  left: 8px;
  top: -20px;
  width: 70px;
  height: auto;
  z-index: 4;
  pointer-events: none;
}

/* ─── Coluna de texto ─────────────────────────────────── */
.s06-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 556px;
  width: 100%;
  min-width: 0;
  justify-self: start;
}

.s06-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 1px 19px;
  min-height: 35px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.s06-kicker__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.s06-headgroup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.s06-heading {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.s06-title-accent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.s06-title-accent__long {
  width: 40px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
}

.s06-title-accent__short {
  width: 8px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.s06-body {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.s06-body--more {
  display: none;
}

.s06-content.s06-expanded .s06-body--more {
  display: block;
}

.s06-more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.s06-more-toggle:hover {
  color: var(--white);
}

.s06-more-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.s06-stats {
  display: flex;
  width: 100%;
  max-width: 556px;
  min-height: 89px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.s06-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.s06-stat:last-child {
  border-right: none;
}

.s06-stat__num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.s06-stat__label {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.s06-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 8px 14px 8px 20px;
  border-radius: 100px;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(100, 30, 30, 0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}
.s06-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(100, 30, 30, 0.3);
}
.s06-cta:active {
  transform: translateY(0);
}

.s06-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.s06-cta__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
}

.s06-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: var(--primary);
}
.s06-cta__icon img {
  width: 14px;
  height: 14px;
}

/* ─── FAQ · S07 (Figma 8002:1358) ─────────────────────── */
#faq {
  position: relative;
  background: var(--bg);
  padding-block: 90px;
  scroll-margin-top: 96px;
}

#faq .s07-inner {
  position: relative;
}

.s07-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.s07-watermark {
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  width: min(720px, 100%);
  pointer-events: none;
  z-index: 0;
}

.s07-watermark img {
  display: block;
  width: 100%;
  height: auto;
}

.s07-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 752px;
  margin-inline: auto;
  padding-top: 22px;
}

#faq .faq-main-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.faq-main-title__break {
  display: block;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}

.faq-item {
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-item.open .faq-question {
  background: var(--primary);
  border-color: rgba(254, 246, 228, 0.09);
}

.faq-q-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: var(--primary);
  flex: 1;
  min-width: 0;
}

.faq-item.open .faq-q-text {
  color: var(--bg);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 15px;
}

.faq-icon img {
  position: absolute;
  inset: 0;
  width: 14px;
  height: 15px;
  display: block;
}

.faq-item:not(.open) .faq-icon__minus {
  opacity: 0;
  pointer-events: none;
}

.faq-item.open .faq-icon__plus {
  opacity: 0;
  pointer-events: none;
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.faq-item.open .faq-question:focus-visible {
  outline-color: rgba(255, 255, 255, 0.95);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-item.open .faq-answer {
  max-height: 420px;
}

.faq-answer p {
  margin: 0;
  padding: 10px 10px 20px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-question {
    transition: none;
  }
}

/* ─── RODAPÉ · Figma 10034:1037 ───────────────────────── */
#footer {
  background: linear-gradient(
    166.5deg,
    #c97a79 0%,
    #c37776 40%,
    #a85f5e 100%
  );
  padding: 0;
  scroll-margin-top: 96px;
}

#footer .ft-inner {
  padding-top: 72px;
  padding-bottom: 56px;
}

.ft-main {
  display: grid;
  grid-template-columns: minmax(0, 279px) minmax(0, 174px) minmax(0, 244px) minmax(0, 279px);
  gap: 48px;
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

/* ─── Coluna marca + redes ───────────────────────────── */
.ft-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  min-width: 0;
}

.ft-brand__logo {
  display: block;
  width: 200px;
  height: auto;
}

.ft-brand__text {
  margin: 0;
  max-width: 260px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.ft-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s, border-color 0.2s;
}

.ft-social__btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.ft-social__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.ft-social__btn img {
  display: block;
  flex-shrink: 0;
}

/* ─── Títulos de coluna ──────────────────────────────── */
.ft-col-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.ft-col-head__label {
  margin: 0;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ft-col-head__rule {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* ─── Menu rápido ────────────────────────────────────── */
.ft-nav {
  min-width: 0;
}

.ft-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ft-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 0 9px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s, opacity 0.2s;
}

.ft-links a:hover {
  color: var(--white);
}

.ft-links__mark {
  font-size: 10px;
  line-height: 1;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ─── Contato ────────────────────────────────────────── */
.ft-contact {
  min-width: 0;
}

.ft-contact__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ft-contact__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ft-contact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ft-contact__icon img {
  display: block;
}

.ft-contact__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ft-contact__label {
  margin: 0;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ft-contact__value {
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.ft-contact__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  min-height: 46px;
  padding: 6px 21px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.ft-contact__cta:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ft-contact__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

.ft-contact__cta img {
  display: block;
  flex-shrink: 0;
}

/* ─── Localização / mapa ─────────────────────────────── */
.ft-loc {
  min-width: 0;
}

.ft-map-card {
  position: relative;
  width: 100%;
  max-width: 279px;
  height: 224px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(100, 20, 20, 0.25);
  background: rgba(0, 0, 0, 0.15);
}

.ft-map-card__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.ft-map-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #7a3535;
}

.ft-map-badge img {
  display: block;
  flex-shrink: 0;
}

/* ─── Barra inferior ─────────────────────────────────── */
.ft-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ft-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ft-bar__copy {
  margin: 0;
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.ft-bar__name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.ft-bar__credit {
  margin: 0;
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.ft-bar__handle {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 0.18em;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.ft-bar__handle:hover {
  color: rgba(255, 255, 255, 0.96);
  text-decoration-color: rgba(255, 255, 255, 0.62);
}

.ft-bar__handle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .ft-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }

  .ft-map-card {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  #sobre .s06-inner {
    gap: 40px;
  }

  .s06-topbar {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .s06-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 48px;
  }

  .s06-visual {
    height: 592px;
    max-width: min(500px, 100%);
  }

  .s06-visual__ring {
    left: 18px;
    top: 18px;
    width: 412px;
    height: 412px;
  }

  .s06-visual__hero {
    left: 48px;
    top: 26px;
    width: 352px;
    max-width: calc(100% - 44px);
  }

  .s06-visual__hero-inner {
    height: 486px;
    max-height: 68vh;
  }

  .s06-visual__thumb {
    width: 122px;
  }

  .s06-visual__thumb img {
    height: 128px;
  }

  .s06-visual__thumb--atendimento {
    top: 190px;
  }

  .s06-visual__thumb--consultorio {
    top: 334px;
  }

  .s06-visual__floral {
    width: 56px;
    top: -12px;
    left: 4px;
  }

  .s06-content {
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .s06-headgroup,
  .s06-body,
  .s06-stats {
    align-items: center;
  }

  .s06-body--more {
    display: block;
  }

  .s06-more-toggle {
    display: none;
  }

  .s06-title-accent {
    justify-content: center;
  }

  .s06-stat__label {
    max-width: 8rem;
  }

  .s03-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .s03-col-text {
    position: relative;
    top: auto;
    max-width: 520px;
    align-items: center;
  }

  .s03-body {
    max-width: 36rem;
  }

  .btn-s03-cta {
    align-self: center;
  }

  .s03-benefits {
    width: 100%;
    max-width: 520px;
  }

  .s03-benefit__row {
    text-align: left;
  }

  .s03-benefit__rule img {
    max-width: 100%;
  }
}

/* ─── Hero mobile · Figma 10041:646 (BG-mobile) ─────────────────────────────
   HEROMOBILE.webp = 767 × 1657 px  (ratio 1:2.161)
   A imagem contém a faixa branca na base (∼53 % a 100 %).
   Abordagem: imagem em fluxo normal com height:auto (altura real);
   .hero-shell em position:absolute top:53 % sobre a faixa branca.
   Sem background adicional — o branco já faz parte da imagem.
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .nav-inner {
    justify-content: center;
  }

  .nav-actions {
    display: none !important;
  }

  /* Blur na barra fixa custa GPU no telefone; fundo já é opaco (--primary). */
  #nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* 1 · Seção: relative para ancoragem; overflow visible para não clipar o texto */
  #hero {
    display: block !important;
    position: relative;
    overflow: visible !important;
    min-height: 0;
    padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
  }

  /* 2 · Wrapper da imagem: fluxo normal, sem restrição de altura */
  .hero-media {
    grid-row: unset !important;
    grid-column: unset !important;
    position: relative !important;
    z-index: 0;
    width: 100%;
    max-width: none;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    pointer-events: none;
  }

  /* 3 · <picture> em fluxo estático */
  .hero-media picture {
    position: static !important;
    display: block;
    width: 100%;
    height: auto !important;
    inset: auto !important;
    aspect-ratio: 767 / 1657;
  }

  /* 4 · <img> em fluxo normal — altura natural, SEM object-fit */
  .hero-bg-img {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    top: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
  }

  /* 5 · Overlay não utilizado no mobile */
  .hero-overlay {
    display: none !important;
  }

  /* 6 · Shell: absolute com top:53 % (início do fade branco na imagem 767×1657).
         top:% é relativo ao #hero, cuja altura = altura natural da imagem. */
  .hero-shell {
    grid-row: unset !important;
    grid-column: unset !important;
    position: absolute !important;
    z-index: 2;
    left: 0;
    right: 0;
    top: 53% !important;
    bottom: auto !important;
    transform: none;
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    padding: 0 clamp(16px, 4vw, 24px) !important;
    margin: 0;
    background: none !important;
    pointer-events: none;
  }

  .hero-shell .hero-inner {
    pointer-events: auto;
    width: 100%;
    max-width: var(--layout-max-width);
    margin-inline: auto;
    padding: 0;
  }

  #hero .hero-content {
    max-width: min(100%, 34rem);
    margin-inline: auto;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    gap: clamp(14px, 4vw, 22px);
  }

  #hero .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  #hero .hero-logo {
    width: clamp(145px, 42vw, 200px);
    margin-inline: auto;
  }

  #hero .hero-heading {
    font-size: clamp(18px, 5vw, 26px);
    text-align: center;
  }

  #hero .hero-body {
    max-width: 100%;
    font-size: clamp(13px, 3.5vw, 15px);
    text-align: center;
  }

  #hero .hero-body .hero-body__break--desktop {
    display: none;
  }

  #hero .hero-tagline {
    font-size: 12px;
    text-align: center;
  }

  #hero .hero-content .btn {
    align-self: center;
    margin-inline: auto;
    font-size: clamp(13px, 3.8vw, 16px);
    padding: 16px 22px;
  }
}

/* Tablet hero · HEROIPAD + overlay (768px–1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  #hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(clamp(380px, 52vw, 640px), auto);
  }

  .hero-media {
    grid-row: 1;
    grid-column: 1;
  }

  .hero-media picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-overlay {
    display: block !important;
    grid-row: 1;
    grid-column: 1;
  }

  .hero-shell {
    grid-row: 1;
    grid-column: 1;
    background: transparent;
    padding-block: clamp(32px, 6vh, 72px);
  }

  #hero .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 72% center;
  }

  #hero .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(244, 244, 244, 0.97) 0%,
      rgba(244, 244, 244, 0.88) 42%,
      rgba(244, 244, 244, 0.55) 100%
    );
  }

  #hero .hero-content {
    max-width: min(100%, 560px);
  }
}

@media (max-width: 1023px) {
  #nav .nav-links  { display: none; }
  .hamburger       { display: flex; }

  .s04-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .s04-connector {
    display: none;
  }

  .s04-card {
    max-width: 400px;
    margin-inline: auto;
    width: 100%;
  }

  .testimonials-grid { flex-direction: column; align-items: center; }
  .testimonial-card  { width: 100%; max-width: 420px; }

  .ft-bar__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #hero .hero-heading { font-size: 20px; }
  .btn                { font-size: 15px; padding: 16px 20px; }

  .s06-visual__thumb,
  .s06-visual__floral {
    display: none;
  }

  .s06-visual {
    height: 500px;
    max-width: 100%;
  }

  .s06-visual__ring {
    left: 50%;
    margin-left: -170px;
    width: 340px;
    height: 340px;
    top: 16px;
  }

  .s06-visual__hero {
    left: 50%;
    transform: translateX(-50%);
    width: min(332px, calc(100vw - 44px));
    top: 20px;
  }

  .s06-visual__hero-inner {
    height: 454px;
  }

  .s06-stat__num {
    font-size: 22px;
  }

  .s06-stat {
    padding: 16px 4px;
  }

  .s06-cta {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 12px 14px;
    min-height: 48px;
    width: auto;
    max-width: 100%;
    align-self: center;
    box-sizing: border-box;
  }

  .s06-visual__crm-value {
    white-space: normal;
  }

  .ft-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ft-brand {
    align-items: center;
    text-align: center;
  }

  .ft-brand__text {
    max-width: 28rem;
  }

  .ft-social {
    justify-content: center;
  }

  .ft-nav .ft-col-head,
  .ft-contact .ft-col-head,
  .ft-loc .ft-col-head {
    align-items: center;
  }

  .ft-contact__body {
    align-items: center;
    gap: 18px;
  }

  .ft-links a {
    justify-content: center;
  }

  .ft-contact__row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    max-width: 18rem;
    margin-inline: auto;
  }

  .ft-contact__copy {
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .ft-contact__icon {
    width: 44px;
    height: 44px;
  }

  .ft-contact__label {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .ft-contact__value {
    font-size: 16px;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .ft-contact__cta {
    align-self: center;
  }

  .ft-map-card {
    margin-inline: auto;
    max-width: 320px;
    height: 236px;
  }
}

/* ─── Mobile ≤767px · respiro aplicado nos wrappers internos ───────── */
@media (max-width: 767px) {
  .hero-inner,
  .layout-inner {
    padding-inline: clamp(16px, 5vw, 24px);
  }

  #sobre .s06-inner {
    gap: clamp(32px, 8vw, 44px);
  }

  .s06-topbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-bottom: 24px;
    text-align: center;
  }

  .s06-topbar__title {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.18;
    max-width: 18ch;
    text-align: center;
    text-wrap: balance;
  }

  .s06-topbar__btn {
    align-self: center;
    width: 48px;
    height: 48px;
  }

  .s06-main {
    gap: 36px;
  }

  /* S03 · benefícios: coluna central (ícone → título → texto) */
  #beneficios .s03-benefit__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  #beneficios .benefit-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
  }
}
