:root {
  --ink: #082d35;
  --deep: #006a78;
  --teal: #00a7b6;
  --mint: #8cd6cd;
  --aqua: #d9f4f0;
  --paper: #f8fbfa;
  --white: #ffffff;
  --sun: #f6c958;
  --coral: #ef6b5f;
  --shadow: 0 22px 70px rgba(8, 45, 53, .16);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.g-4 {
  gap: 1.5rem 0;
}

.col-lg-6 {
  width: 100%;
}

.min-vh-100 {
  min-height: 100vh;
}

.btn {
  min-height: 48px;
  padding: 12px 18px;
}

.btn-lg {
  min-height: 54px;
  padding: 14px 22px;
}

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

img {
  height: auto;
}

svg {
  width: 1.15em;
  height: 1.15em;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

h1 {
  max-width: 920px;
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: .94;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.55rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--deep);
}

h4 {
  font-size: 1.06rem;
  font-weight: 800;
}

h5,
h7 {
  display: block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--deep);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  width: min(1160px, calc(100% - 28px));
  padding: 10px 12px 10px 18px;
  color: var(--white);
  background: rgba(0, 106, 120, .88);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand {
  width: 178px;
  height: 74px;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 58px;
  background: url("../assets/svg/logo_associacao.svg") left center / contain no-repeat;
}

.site-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: .88rem;
  font-weight: 800;
}

.site-nav a {
  opacity: .88;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
  color: var(--sun);
}

.nav-dropdown {
  position: relative;
  padding-block: 14px;
  margin-block: -14px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-size: .72rem;
  font-weight: 900;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 190px;
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(0, 106, 120, .14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease .16s, transform .18s ease .16s, visibility 0s linear .34s;
  visibility: hidden;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 6px;
  font-size: .86rem;
  opacity: 1;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--deep);
  background: var(--aqua);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
  visibility: visible;
}

.header-cta,
.btn-primary {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: var(--ink) !important;
  background: var(--sun) !important;
  border: 0 !important;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(246, 201, 88, .28);
}

.header-cta {
  padding: 12px 16px;
}

.btn .fa-brands,
.header-cta .fa-brands {
  font-size: 1.2rem;
  line-height: 1;
}

.btn-outline-light {
  border-radius: 8px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
}

.mobile-nav {
  position: fixed;
  z-index: 49;
  top: 76px;
  left: 14px;
  right: 14px;
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 12px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid rgba(8, 45, 53, .08);
}

.mobile-nav strong {
  display: block;
  padding: 12px 12px 4px;
  color: var(--deep);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-panel {
  position: relative;
  overflow: visible;
  min-height: 100vh;
  padding: 118px 0 84px;
}

.section-light {
  background: var(--aqua);
}

#especialidades {
  background: linear-gradient(180deg, rgba(248, 251, 250, .96), rgba(217, 244, 240, .62));
}

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 119, 134, .86) 0%, rgba(0, 87, 100, .9) 56%, rgba(8, 45, 53, .94) 100%),
    url("../assets/img/fundo.webp") center / cover no-repeat;
  background-size: auto, cover;
}
/*
.hero::before,*/
.story-section::before {
  content: "saude saude saude saude saude";
  position: absolute;
  inset: auto -5vw 10vh auto;
  width: min(520px, 74vw);
  color: rgba(255, 255, 255, .08);
  font-weight: 900;
  font-size: 3rem;
  line-height: .86;
  text-transform: lowercase;
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--sun);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lead {
  max-width: 630px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero h2 {
  margin-bottom: 18px;
  color: var(--mint);
  font-size: clamp(1.25rem, 2vw, 2.05rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-family {
  position: absolute;
  left: calc(50% + clamp(180px, 24vw, 330px));
  right: auto;
  bottom: calc(-13vh + (var(--progress, 0) * 13vh));
  z-index: 0;
  margin: 0;
  width: min(760px, 56vw);
  pointer-events: none;
  filter: drop-shadow(0 28px 76px rgba(0, 0, 0, .36));
  transform: translateX(-50%) scale(calc(1 + (var(--progress, 0) * .035)));
  transform-origin: center bottom;
  transition: transform .12s linear;
}

.hero-family img {
  width: auto;
  max-height: 118vh;
  margin-inline: 0;
  object-fit: contain;
}

.story-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.story-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.story-copy h2 {
  max-width: 680px;
}

.story-copy p,
.section-heading p,
.contact-section p {
  font-size: 1.08rem;
}

.story-steps,
.benefit-grid,
.rules-grid,
.payment-list {
  display: grid;
  gap: 16px;
}

.story-steps {
  grid-template-columns: 1fr;
}

#como-funciona .story-steps {
  padding-left: 22px;
}

.step-card,
.benefit-grid article,
.rules-grid article,
.payment-list article {
  padding: 22px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(0, 106, 120, .14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 45, 53, .08);
}

#como-funciona .step-card {
  position: relative;
  padding: 18px 22px 18px 38px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--deep);
  border-radius: 50%;
  font-weight: 900;
}

#como-funciona .step-card span {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  box-shadow: 0 10px 24px rgba(8, 45, 53, .18);
  transform: translate(-50%, -50%);
}

.specialty-stage,
.exam-board,
.wellness-card,
.food-visual {
  position: relative;
}

.specialty-stage img {
  width: auto;
  max-width: min(500px, 84vw);
  max-height: 58vh;
  object-fit: contain;
  margin-inline: auto;
  opacity: .88;
  filter: drop-shadow(0 30px 70px rgba(8, 45, 53, .16));
}

.pill-cloud {
  position: absolute;
  inset: 12% 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pill-cloud h5 {
    display: block;
    width: 100%;
	padding: 10px 0px;
}
.pill-cloud span,
.exam-board li,
.wellness-card li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--deep);
  border-radius: 999px;
  font-weight: 900;
}

.exam-board {
  display: grid;
  align-items: center;
}

.exam-board img,
.wellness-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 60vh;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 54px rgba(8, 45, 53, .18));
}

.exam-board ul,
.wellness-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exam-board-bg,
.wellness-card-bg {
  isolation: isolate;
  min-height: min(560px, 68vh);
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(8, 45, 53, .16);
}

.exam-board-bg::before,
.wellness-card-bg::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: calc(.58 - (var(--progress, 0) * .36));
  transition: opacity .16s linear;
}

.exam-board-bg::after,
.wellness-card-bg::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 45, 53, .82), rgba(0, 106, 120, .48)),
    rgba(8, 45, 53, calc(.08 + (var(--progress, 0) * .34)));
}

.exam-board-bg::before {
  background-image: url("../assets/img/ultrassom.png");
}

.wellness-card-bg::before {
  background-image: url("../assets/img/salao-bem-estar.png");
}

.exam-board-bg ul,
.wellness-card-bg ul {
  position: relative;
  z-index: 1;
  align-content: center;
}

.exam-board-bg li {
  min-height: 54px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 45, 53, .14);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.benefit-band {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(8, 45, 53, .72), rgba(0, 106, 120, .88)),
    url("../assets/img/fundo_3.webp") center / cover;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

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

.benefit-grid article {
  color: var(--ink);
}

.benefit-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--teal);
}

.food-visual {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.food-visual img {
  grid-area: 1 / 1;
  width: auto;
  max-width: min(640px, 100%);
  height: auto;
  max-height: 54vh;
  object-fit: contain;
  margin-inline: auto;
  transition: transform .18s linear;
}

.food-layer-cup {
  z-index: 1;
  opacity: .72;
  transform: translateY(calc(-42px + ((.5 - var(--progress, .5)) * -18px))) scale(.94);
}

.food-layer-cake {
  z-index: 2;
  opacity: .86;
  transform: translateY(calc(-22px + ((.5 - var(--progress, .5)) * -9px))) scale(.98);
}

.food-visual > img:not(.food-layer) {
  z-index: 3;
  filter: drop-shadow(0 28px 54px rgba(8, 45, 53, .14));
  transform: translateY(calc((.5 - var(--progress, .5)) * 10px));
}

.wellness-card {
  display: grid;
  align-items: center;
}

.wellness-card-bg ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wellness-card-bg li {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 132px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(8, 45, 53, .16);
}

.wellness-card-bg strong {
  color: var(--deep);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.05;
}

.wellness-card-bg span {
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.35;
}

.wellness-partners {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
}

.wellness-card-bg .wellness-partners img {
  width: auto;
  max-width: min(132px, 36vw);
  max-height: 58px;
  object-fit: contain;
}

.differentials-stack {
  display: grid;
  gap: 14px;
}

.differential-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(0, 106, 120, .14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 45, 53, .08);
}

.differential-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.differential-card h4 {
  margin-bottom: 8px;
}

.differential-card p,
.differential-card li {
  margin-bottom: 0;
  font-size: .96rem;
}

.differential-card img {
  width: auto;
  max-width: 150px;
  max-height: 120px;
  object-fit: contain;
  justify-self: end;
  filter: drop-shadow(0 16px 30px rgba(8, 45, 53, .14));
}

.differential-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.conditions-card,
.payment-card {
  grid-template-columns: minmax(0, .95fr) minmax(220px, 1.05fr);
}

.payment-card {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--ink));
}

.payment-card span,
.payment-card h4 {
  color: var(--sun);
}

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

.rules-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 1.05rem;
}

.payment-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--ink));
}

.payment-section h3,
.payment-section .payment-list h4 {
  color: var(--mint);
}

.payment-section .payment-list article {
  color: var(--ink);
}

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

.payment-section-light h3,
.payment-section-light .payment-list h4 {
  color: var(--deep);
}

.rules-section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 106, 120, .86), rgba(8, 45, 53, .94)),
    radial-gradient(circle at 76% 26%, rgba(246, 201, 88, .22), transparent 28%);
}

.rules-section-dark h3 {
  color: var(--mint);
}

.rules-section-dark .rules-grid article {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
}

.plans-section {
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(217, 244, 240, .78), rgba(248, 251, 250, .96)),
    var(--paper);
}

.plans-section .section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.plans-gallery {
  margin-top: clamp(28px, 4vw, 48px);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 338px;
  padding: 22px 16px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(0, 106, 120, .14);
  border-radius: 8px;
  box-shadow: none;
}

.plan-card > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.plan-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -42px -54px auto;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--teal), var(--deep));
  border-radius: 50%;
  opacity: .16;
  pointer-events: none;
}

.plan-card-title {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 34px;
}

.plan-card-title span {
  display: block;
  color: var(--teal);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}

.plan-card-title h4 {
  margin: 4px 0 0;
  color: #3d4245;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 900;
  line-height: .95;
  white-space: nowrap;
  text-transform: uppercase;
}

.plan-card-title i {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--deep);
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .8);
}

.plan-subtitle {
  margin: -4px 0 0;
  color: var(--teal);
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: normal;
  text-transform: uppercase;
}

.plan-callout {
  align-self: end;
  margin: 6px 0 0;
  color: #3d4245;
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.15;
}

.plan-price {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: #3d4245;
  line-height: .82;
  min-width: 0;
}

.plan-price span {
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1;
}

.plan-price strong {
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.plan-price sup {
  top: auto;
  margin-bottom: .42em;
  font-size: clamp(1rem, 1.6vw, 1.38rem);
  font-weight: 900;
}

.plan-link {
  position: relative;
  align-self: end;
  justify-self: start;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-link:hover,
.plan-link:focus-visible {
  color: var(--white);
  background: var(--teal);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(217, 244, 240, .78), rgba(248, 251, 250, .96)),
    var(--paper);
}

.document-page {
  min-height: auto;
  padding-top: 150px;
  background: var(--paper);
}

.document-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.document-heading h1 {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  text-transform: none;
}

.document-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
}

.document-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 900;
}

.document-link:hover,
.document-link:focus-visible {
  color: var(--white);
  background: var(--teal);
}

.document-list {
  display: grid;
  gap: 28px;
}

.document-card {
  padding: clamp(16px, 3vw, 24px);
  background: var(--white);
  border: 1px solid rgba(0, 106, 120, .12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 45, 53, .08);
}

.document-card-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.document-card-heading h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
}

.pdf-frame {
  overflow: hidden;
  height: min(78vh, 820px);
  min-height: 560px;
  background: #e9f2f0;
  border: 1px solid rgba(0, 106, 120, .16);
  border-radius: 8px;
}

.pdf-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--deep);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
}

.contact-links a,
.contact-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-links i,
.contact-hours i {
  color: var(--sun);
  font-size: .9em;
}

.contact-address {
  margin-top: 22px;
  color: rgba(8, 45, 53, .82);
  font-style: normal;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 900;
  transition: background .18s ease, transform .18s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-2px);
}

.social-links i {
  width: 18px;
  font-size: 1.08rem;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(0, 106, 120, .12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f3f8f7;
  border: 1px solid rgba(0, 106, 120, .18);
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .erro {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(239, 107, 95, .12);
}

.field-error {
  color: #b23b31;
  font-weight: 800;
}

.form-response-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 45, 53, .58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.form-response-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.form-response-dialog {
  width: min(460px, 100%);
  padding: 28px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform .2s ease;
}

.form-response-backdrop.is-open .form-response-dialog {
  transform: translateY(0);
}

.form-response-close {
  float: right;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--aqua);
}

.form-response-close::before,
.form-response-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-response-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.response-errors {
  margin-top: 12px;
}

.footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--ink);
}

.footer .container {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: block;
  width: 150px;
  height: 58px;
  background: url("../assets/svg/logo_associacao.svg") left center / contain no-repeat;
}

.footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.footer-hours i {
  color: var(--sun);
}

.footer-meta {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-admin-link,
.footer-dev-link {
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
}

.footer-dev-link img {
  width: 54px;
  height: auto;
  opacity: .5;
}

.footer-dev-link:hover img,
.footer-dev-link:focus-visible img {
  opacity: .75;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible,
.footer-dev-link:hover,
.footer-dev-link:focus-visible {
  color: rgba(255, 255, 255, .72);
  text-decoration: underline;
}

.floating-whatsapp {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--white);
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(8, 45, 53, .28);
  font-size: .92rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  color: var(--white);
  background: #1ebe5d;
  box-shadow: 0 22px 52px rgba(8, 45, 53, .34);
  transform: translateY(-3px);
}

.floating-whatsapp i {
  flex: 0 0 auto;
  font-size: 1.72rem;
  line-height: 1;
}

[data-reveal],
.story-copy > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible,
.story-copy > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-story-pending {
  opacity: .22 !important;
  transform: translateY(18px) scale(.98) !important;
}

.is-story-active {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

@media (min-width: 992px) {
  .col-lg-6 {
    width: 50%;
  }

  .hero .story-copy {
    transform: translateY(-58px);
  }

  .hero .story-visual {
    position: static;
  }

  .hero {
    min-height: 122vh;
  }

  .hero > .container {
    position: sticky;
    top: 0;
    min-height: 100vh;
  }

  .story-section,
  .benefit-band,
  .rules-section,
  .payment-section,
  .plans-section {
    min-height: 240vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .story-section > .container,
  .payment-section > .container,
  .plans-section > .container {
    min-height: 240vh;
  }

  #diferenciais,
  #diferenciais > .container {
    min-height: 120vh;
  }

  #bem-estar,
  #bem-estar > .container {
    min-height: 200vh;
  }

  .contact-section {
    min-height: 130vh;
  }

  .story-layout,
  .benefit-band .container,
  .rules-section .container,
  .payment-section .story-layout {
    position: sticky;
    top: 0;
    min-height: auto;
    height: 100vh;
    padding-top: 136px;
    padding-bottom: 52px;
  }

  .no-story-effect {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 84px;
  }

  .no-story-effect > .container {
    min-height: auto;
  }

  .no-story-effect .container,
  .no-story-effect .story-layout,
  .no-story-effect .contact-layout {
    position: relative;
    top: auto;
    min-height: auto;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-layout {
    position: sticky;
    top: 0;
    min-height: auto;
    height: 100vh;
    padding-top: 136px;
    padding-bottom: 52px;
  }

  .plans-section {
    min-height: 420vh;
  }

  .plans-section > .container {
    position: sticky;
    top: 0;
    min-height: auto;
    height: 100vh;
    padding-top: 132px;
    padding-bottom: 46px;
  }

  .plans-section .section-heading {
    max-width: 680px;
  }

  .plans-section .section-heading h2 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
  }

  .plans-section .section-heading h3 {
    font-size: clamp(1.05rem, 2vw, 1.55rem);
  }

  .plans-gallery {
    position: relative;
    height: min(390px, calc(100vh - 356px));
    min-height: 310px;
    margin-top: clamp(20px, 3vh, 34px);
  }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    height: 100%;
  }

  .plans-section .plan-card {
    position: relative;
    width: auto;
    height: 100%;
    min-height: 0;
    transform: translateY(10px) scale(.98);
    transform-origin: center;
    opacity: .28;
    filter: saturate(.42);
    transition: transform .42s ease, opacity .42s ease, filter .42s ease;
  }

  .plans-section .plan-card.is-plan-future {
    opacity: .28;
  }

  .plans-section .plan-card.is-plan-active {
    opacity: 1;
    filter: saturate(1);
    transform: translateY(0) scale(1);
  }

  .story-progress {
    position: fixed;
    z-index: 3;
    bottom: 26px;
    left: calc(50% - min(580px, 50vw - 16px));
    display: block;
    width: min(360px, calc(100% - 32px));
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 106, 120, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease;
  }

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

  .story-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--sun);
    border-radius: inherit;
    transform: scaleX(var(--progress, 0));
    transform-origin: left center;
    transition: transform .08s linear;
  }

  .story-section[data-progress] .story-visual,
  .story-section[data-progress] .specialty-stage,
  .story-section[data-progress] .exam-board,
  .story-section[data-progress] .wellness-card,
  .story-section[data-progress] .food-visual,
  .story-section[data-progress] .differentials-stack {
    transform: translateY(calc((.5 - var(--progress, .5)) * 26px));
    transition: transform .18s linear;
  }

  .is-story-pending.is-visible {
    transform: translateY(18px) scale(.98);
  }

  .is-story-pending.is-visible.is-story-active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  .story-copy > * {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .brand {
    width: 154px;
    height: 64px;
  }

  .brand-logo {
    height: 48px;
  }

  .site-nav {
    gap: 9px;
    font-size: .78rem;
  }

  .header-cta {
    padding: 11px 13px;
  }

  #como-funciona .story-layout {
    gap: clamp(26px, 4vw, 46px);
    padding-top: 112px;
    padding-bottom: 34px;
  }

  #como-funciona .story-steps {
    gap: 12px;
  }

  #como-funciona .step-card {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .plans-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .plans-section .plan-card {
    padding-inline: 12px;
  }

  .plans-section .plan-card-title span {
    font-size: 1rem;
  }

  .plans-section .plan-card-title h4 {
    font-size: 1.05rem;
  }

  .plans-section .plan-price strong {
    font-size: 2.35rem;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .plans-grid {
    gap: 14px;
  }

  .plan-card {
    padding-inline: 14px;
  }

  .plan-card-title h4 {
    font-size: 1.25rem;
  }

  .plan-card-title span {
    font-size: 1.2rem;
  }

  .plan-price strong {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  html {
    overflow-x: hidden;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 991px) {
  .plan-card::before {
    inset: 0;
    width: auto;
    height: auto;
    background: var(--plan-image) right bottom / contain no-repeat;
    border-radius: 0;
    opacity: 1;
  }

  .plan-card-title span {
    font-size: 1.35rem;
  }

  .plan-card-title h4 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
    line-height: .96;
  }

  .section-panel {
    min-height: auto;
    padding: 104px 0 64px;
  }

  .story-progress {
    display: none;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }

  .story-layout,
  .contact-layout,
  .exam-board,
  .wellness-card,
  .differential-card,
  .conditions-card,
  .payment-card {
    grid-template-columns: 1fr;
  }

  .differential-card img {
    justify-self: start;
  }

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

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

  .wellness-card-bg ul {
    grid-template-columns: 1fr;
  }

  .hero .row {
    min-height: auto !important;
  }

  .hero {
    min-height: 112vh;
    padding-bottom: 210px;
  }

  .hero > .container {
    position: relative;
    z-index: 1;
  }

  .hero-family {
    position: absolute;
    left: calc(50% + 16vw);
    right: auto;
    bottom: calc(-96px + (var(--progress, 0) * 96px));
    z-index: 0;
    width: min(620px, 132vw);
    margin: 0;
    opacity: .78;
    transform: translateX(-50%) scale(calc(1.1 + (var(--progress, 0) * .035)));
    transform-origin: center bottom;
  }

  .hero-family img {
    max-height: 94vh;
    margin-inline: 0;
  }

  .document-page {
    padding-top: 120px;
  }

  .document-card-heading {
    display: grid;
    align-items: start;
  }

  .pdf-frame {
    height: 70vh;
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.05rem, 9.8vw, 2.85rem);
  }

  .hero {
    min-height: 118vh;
    padding-bottom: 240px;
  }

  .hero-family {
    left: calc(50% + 18vw);
    right: auto;
    bottom: calc(-86px + (var(--progress, 0) * 86px));
    width: 148vw;
    opacity: .82;
    transform: translateX(-50%) scale(calc(1.12 + (var(--progress, 0) * .025)));
  }

  .hero-family img {
    max-height: 98vh;
  }

  .hero h2 {
    font-size: 1.25rem;
  }

  .lead {
    font-size: .98rem;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 18px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    width: 132px;
    height: 58px;
  }

  .brand-logo {
    height: 42px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: .82rem;
  }

  .benefit-grid,
  .rules-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 0;
  }

  .footer .container {
    display: grid;
  }

  .pdf-frame {
    min-height: 360px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }
}
