/* ─────────────────────────────────────────────
   Landing CSS — Jessica Fonseca Studio
   Paleta: preto / branco / dourado
   ───────────────────────────────────────────── */

:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-soft: #f5f1ea;
  --ink: #1a1714;
  --muted: #6b6259;
  --muted-soft: #a09488;
  --black: #0a0908;
  --gold: #c9a96e;
  --gold-strong: #a87c38;
  --gold-pale: rgba(201, 169, 110, 0.18);
  --border: rgba(26, 23, 20, 0.10);
  --border-gold: rgba(201, 169, 110, 0.28);
  --shadow: 0 24px 56px rgba(26, 23, 20, 0.07);
  --shadow-card: 0 2px 0 rgba(255, 255, 255, 0.7) inset, 0 1px 3px rgba(26, 23, 20, 0.06);
  --font-body: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  
  --font-accent: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --section-pad: 72px 20px;
  --inner-max: 1080px;
}

/* ── Reset & Base ── */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.landing-page img {
  display: block;
  width: 100%;
}

body.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.10), transparent 34%),
    linear-gradient(135deg, #000 0%, #101010 48%, #000 100%);
  animation: landingIntroOut 780ms var(--ease-in) 1600ms both;
}

.landing-intro::before,
.landing-intro::after {
  content: "";
  position: absolute;
  inset: 0;
}

.landing-intro::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.10) 48%, transparent 56%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 0;
  transform: translateX(-26%);
  animation: landingIntroGlow 1500ms var(--ease) 180ms both;
}

.landing-intro::after {
  top: auto;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14));
  transform: translateY(100%);
  animation: landingIntroSweep 1300ms var(--ease) 440ms both;
}

.landing-intro-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform-origin: center;
  animation: landingIntroCard 1180ms var(--ease) 120ms both;
}

.landing-intro-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 169, 110, 0.55);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.12);
}

.landing-intro-name {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 4.6vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-intro-line {
  display: block;
  width: min(168px, 42vw);
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: landingIntroLine 920ms var(--ease) 360ms both;
}

/* ── Header ── */
.landing-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 14px max(20px, calc((100vw - var(--inner-max)) / 2 + 20px));
  color: rgba(255, 255, 255, 0.90);
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.30), rgba(10, 9, 8, 0.02));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition:
    background 340ms var(--ease),
    border-color 340ms var(--ease),
    box-shadow 340ms var(--ease),
    color 340ms var(--ease);
  animation: landingHeaderIn 860ms var(--ease) 1050ms backwards;
  will-change: transform, opacity;
}

.landing-header.is-scrolled {
  background: rgba(10, 9, 8, 0.82);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 40px rgba(0, 0, 0, 0.14);
}

.landing-header.is-on-light {
  color: var(--ink);
  background: rgba(250, 248, 245, 0.88);
  border-color: rgba(26, 23, 20, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 12px 36px rgba(26, 23, 20, 0.05);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.landing-header.is-on-light .brand-mark {
  border-color: rgba(26, 23, 20, 0.14);
  background: rgba(255, 255, 255, 0.6);
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  max-width: 42vw;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand small {
  max-width: 38vw;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
}

.landing-header.is-on-light .brand small {
  color: var(--muted-soft);
}

/* Nav */
.landing-nav {
  display: none;
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 200ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.header-cta:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.10);
  box-shadow: 0 0 0 1px var(--gold) inset;
}

.landing-header.is-on-light .header-cta {
  border-color: rgba(26, 23, 20, 0.14);
  background: rgba(255, 255, 255, 0.70);
}

.landing-header.is-on-light .header-cta:hover {
  border-color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px var(--gold-strong) inset;
}

/* ── Hero ── */
.landing-hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 20px 60px;
  color: #fff;
  isolation: isolate;
  background-color: var(--black);
  background-image:
    radial-gradient(ellipse at 58% 42%, rgba(201, 169, 110, 0.10), transparent 44%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.18) 0%, rgba(10, 9, 8, 0.84) 70%, rgba(10, 9, 8, 0.96) 100%),
    linear-gradient(100deg, rgba(10, 9, 8, 0.72), rgba(10, 9, 8, 0.28) 52%, rgba(10, 9, 8, 0.60)),
    var(--hero-image);
  background-repeat: no-repeat;
  /* Mobile: cover garante que a imagem preenche sem áreas vazias */
  background-position: center, center, center, center center;
  background-size: 100% 100%, cover, cover, cover;
  animation: landingHeroDrift 5200ms var(--ease) backwards;
  will-change: background-position;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 9, 8, 0.22) 50%,
    rgba(10, 9, 8, 0.82) 100%
  );
}

/* Linha decorativa dourada no topo da hero-content */
.hero-content {
  position: relative;
  width: min(720px, 100%);
  max-width: 100%;
  padding-top: 120px;
}

.hero-content::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--gold);
  opacity: 0.7;
  transform-origin: left center;
  animation: landingLineIn 780ms var(--ease) 1200ms backwards;
}

/* Eyebrow / Kicker */
.eyebrow,
.hero-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker {
  animation: landingTextIn 760ms var(--ease) 1280ms backwards;
}

/* Título hero */
.hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-wrap: balance;
}


.hero-title span {
  display: block;
}

.hero-title span:first-child {
  animation: landingTitleIn 900ms var(--ease) 1400ms backwards;
}

.hero-title span:last-child {
  animation: landingTitleIn 900ms var(--ease) 1540ms backwards;
}

.hero-copy {
  max-width: 46ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.6;
  animation: landingTextIn 820ms var(--ease) 1700ms backwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 360px);
  margin: 30px 0 0;
}

.hero-actions .btn {
  animation: landingButtonIn 820ms var(--ease) 1840ms backwards;
}

.hero-actions .btn:nth-child(2) {
  animation-delay: 1960ms;
}

@keyframes landingIntroCard {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    filter: blur(10px);
  }

  55% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
    filter: blur(2px);
  }
}

@keyframes landingIntroLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }

  45%,
  78% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0;
  }
}

@keyframes landingIntroGlow {
  0% {
    opacity: 0;
    transform: translateX(-28%);
  }

  42% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(28%);
  }
}

@keyframes landingIntroSweep {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  44% {
    opacity: 1;
  }

  100% {
    transform: translateY(-112%);
    opacity: 0;
  }
}

@keyframes landingIntroOut {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
  }
}

@keyframes landingHeaderIn {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landingHeroDrift {
  0% {
    background-position: center, center, center, 52% 50%;
  }

  100% {
    background-position: center, center, center, 50% 50%;
  }
}

@keyframes landingLineIn {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
}

@keyframes landingTextIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes landingTitleIn {
  0% {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes landingButtonIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 210ms var(--ease),
    border-color 210ms var(--ease),
    background 210ms var(--ease),
    color 210ms var(--ease),
    box-shadow 210ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

/* Botão primário dourado — fundo preto com borda dourada */
.btn-gold {
  color: var(--gold);
  background: var(--black);
  border-color: rgba(201, 169, 110, 0.40);
  box-shadow: 0 0 0 0 transparent;
}

.btn-gold:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.15);
}

/* Nas seções claras, btn-gold inverte */
.section-light .btn-gold,
.steps .btn-gold,
.final-cta .btn-gold {
  color: var(--bg);
  background: var(--black);
  border-color: transparent;
  box-shadow: none;
}

.section-light .btn-gold:hover,
.steps .btn-gold:hover,
.final-cta .btn-gold:hover {
  border-color: var(--gold-strong);
  box-shadow: 0 0 0 1px var(--gold-strong) inset;
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.11);
}

.btn-dark-outline {
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-dark-outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  min-width: min(100%, 260px);
  min-height: 54px;
  font-size: 0.78rem;
}

/* ── Seções ── */
.section {
  padding: var(--section-pad);
}

.section-light {
  color: var(--ink);
  background: var(--bg);
}

.section-dark {
  color: #fff;
  background: var(--black);
}

.section-inner {
  width: min(var(--inner-max), 100%);
  margin: 0 auto;
}

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

/* Section Heading com linha dourada */
.section-heading {
  max-width: 660px;
  margin: 0 auto 48px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 24px auto 0;
  background: var(--gold);
  opacity: 0.5;
}

.section-light .section-heading::after {
  opacity: 0.4;
}

.section-heading h2,
.final-cta h2 {
  margin: 0 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* Itálico na segunda metade do heading */
.section-heading h2 em,
.final-cta h2 em {
  font-style: italic;
  font-weight: 400;
}

.section-heading p:not(.eyebrow) {
  max-width: 48ch;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.65;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.55);
}

.section-heading-row {
  display: grid;
  gap: 16px;
  justify-items: center;
}

/* Text link / CTA de texto */
.text-link,
.slide-cta {
  position: relative;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 200ms var(--ease);
}

.text-link::after,
.slide-cta::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.text-link:hover,
.slide-cta:hover {
  color: #fff;
}

.text-link:hover::after,
.slide-cta:hover::after {
  transform: scaleX(0.5);
  transform-origin: right;
}

/* ── Grids ── */
.authority-grid,
.care-grid,
.units-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}

/* ── Cards ── */
.mini-card,
.care-card,
.unit-card,
.step-item,
.procedure-slide {
  border-radius: 2px;
}

.mini-card,
.care-card,
.step-item {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 200px;
  padding: 32px 24px 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    background 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.mini-card:hover,
.care-card:hover,
.step-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow);
}

/* Ícones */
.mini-icon,
.care-icon,
.procedure-icon,
.step-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--gold-strong);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  background: var(--bg);
}

.mini-icon svg,
.care-icon svg,
.procedure-icon svg,
.step-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Headings dos cards */
.mini-card h3,
.care-card h3,
.unit-card h3,
.step-item h3,
.procedure-body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

/* Parágrafos dos cards */
.mini-card p,
.care-card p,
.step-item p,
.procedure-body p {
  max-width: 32ch;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.90rem;
  line-height: 1.55;
}

/* ── Step Items com número tipográfico ── */
.step-item {
  position: relative;
}

.step-number {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--border-gold);
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
}

/* ── Swiper / Procedimentos ── */
.procedures {
  overflow: hidden;
}

.procedures-swiper {
  overflow: visible;
  padding: 12px 0 12px;
  cursor: grab;
}

.procedures-swiper:active {
  cursor: grabbing;
}

.procedure-slide {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 300px;
  overflow: hidden;
  padding: 34px 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  transform: scale(0.964);
  transition:
    transform 440ms var(--ease),
    border-color 340ms var(--ease),
    background 340ms var(--ease),
    opacity 340ms var(--ease),
    box-shadow 340ms var(--ease);
}

/* Reflexo dourado sutil no topo */
.procedure-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0), transparent);
  opacity: 0;
  transition: opacity 340ms var(--ease), background 340ms var(--ease);
}

.procedure-slide:not(.swiper-slide-active) {
  opacity: 0.52;
}

.procedure-slide.swiper-slide-active {
  border-color: rgba(201, 169, 110, 0.36);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.042)),
    rgba(255, 255, 255, 0.048);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.30);
  transform: scale(1);
}

.procedure-slide.swiper-slide-active::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.60), transparent);
}

.procedure-slide:hover {
  border-color: rgba(201, 169, 110, 0.28);
  transform: scale(0.964) translateY(-4px);
}

.procedure-slide.swiper-slide-active:hover {
  transform: scale(1) translateY(-5px);
}

.procedure-icon {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 110, 0.24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.procedure-body h3 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
}

.procedure-body p {
  color: rgba(255, 255, 255, 0.60);
}

.slide-cta {
  display: inline-flex;
  margin-top: 18px;
}

/* Controles do carrossel */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  margin-top: 28px;
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease);
}

.carousel-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow:hover {
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.42);
  background: rgba(201, 169, 110, 0.07);
  transform: translateY(-1px);
}

/* Paginação swiper */
.procedures-swiper .swiper-pagination {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 80px;
  transform: none;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  transition: background 260ms var(--ease), width 260ms var(--ease);
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
}

/* ── Seção Care ── */
.care {
  background: var(--surface-soft);
}

/* ── Unit Card ── */
.unit-card {
  display: grid;
  gap: 20px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.032);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.unit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 169, 110, 0.30);
}

.unit-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.unit-card h3 {
  color: #fff;
  font-size: 1.06rem;
  font-weight: 600;
}

.unit-card p,
.unit-card small {
  display: block;
  max-width: 36ch;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.unit-card p {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.unit-card small {
  font-size: 0.82rem;
}

.unit-actions {
  display: grid;
  gap: 10px;
}

/* ── Steps ── */
.steps {
  background: var(--bg);
}

/* ── Final CTA ── */
.final-cta {
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Linha dourada decorativa no topo da seção */
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  position: relative;
}

.final-cta .eyebrow {
  color: var(--gold);
  opacity: 0.8;
}

.final-cta h2 {
  max-width: 680px;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ── Footer ── */
.landing-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 20px 36px;
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.landing-footer p {
  margin: 0;
}

.landing-footer a {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 200ms var(--ease);
}

.landing-footer a:hover {
  color: #fff;
}

/* ──────────────────────────────────
   Breakpoint 700px
────────────────────────────────── */
@media (min-width: 700px) {
  :root {
    --section-pad: 88px 36px;
  }

  .landing-header {
    min-height: 70px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .landing-hero {
    min-height: 88vh;
    padding: 0 48px 72px;
    background-image:
      radial-gradient(ellipse at 58% 42%, rgba(201, 169, 110, 0.09), transparent 44%),
      linear-gradient(180deg, rgba(10, 9, 8, 0.14) 0%, rgba(10, 9, 8, 0.80) 65%, rgba(10, 9, 8, 0.96) 100%),
      linear-gradient(100deg, rgba(10, 9, 8, 0.60), rgba(10, 9, 8, 0.18) 54%, rgba(10, 9, 8, 0.50)),
      var(--hero-image);
    background-position: center, center, center, center;
    background-size: 100% 100%, cover, cover, cover;
    align-items: flex-end;
  }

  .brand strong {
    max-width: none;
  }

  .landing-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: currentColor;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.68;
  }

  .landing-nav a {
    position: relative;
    transition: color 180ms var(--ease), opacity 180ms var(--ease);
  }

  .landing-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 240ms var(--ease);
  }

  .landing-nav a:hover {
    opacity: 1;
  }

  .landing-nav a:hover::after {
    transform: scaleX(1);
  }

  .hero-actions,
  .unit-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

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

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

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

  .section-heading-row {
    grid-template-columns: 1fr auto;
    justify-items: start;
    align-items: end;
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .section-heading-row::after {
    display: none;
  }

  .landing-footer {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 48px;
    padding-left: 48px;
    text-align: left;
  }
}

/* ──────────────────────────────────
   Breakpoint 1040px
────────────────────────────────── */
@media (min-width: 1040px) {
  :root {
    --section-pad: 100px 48px;
  }

  .landing-hero {
    min-height: 88vh;
    padding: 0 64px 80px;
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero-title {
    font-size: clamp(3.8rem, 5.4vw, 5.2rem);
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 52ch;
  }

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

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

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

/* ──────────────────────────────────
   Mobile pequeno ≤390px
────────────────────────────────── */
@media (max-width: 390px) {
  .landing-header {
    min-height: 58px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 38vw;
  }

  .header-cta {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

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

  .section-heading h2,
  .final-cta h2 {
    font-size: 1.9rem;
  }
}

/* ──────────────────────────────────
   Reduced Motion
────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .landing-intro {
    display: none;
  }

  .landing-header,
  .hero-content::before,
  .hero-kicker,
  .hero-title span,
  .hero-copy,
  .hero-actions .btn {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
