:root {
  --green-950: #0c3d1f;
  --green-900: #125529;
  --green-800: #1f6f2b;
  --green-700: #2a8736;
  --green-600: #369c3f;
  --lime-500: #70b030;
  --blue-700: #145f98;
  --blue-600: #1c84bc;
  --blue-100: #dff2fb;
  --ink: #163324;
  --muted: #5e7065;
  --line: #dce9df;
  --surface: #ffffff;
  --surface-soft: #f3f8f4;
  --surface-lime: #eff8e8;
  --shadow: 0 24px 70px rgba(12, 61, 31, 0.13);
  --shadow-soft: 0 14px 42px rgba(12, 61, 31, 0.09);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(28, 132, 188, 0.45);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: #fff;
  background: var(--green-950);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(220, 233, 223, 0.9);
  box-shadow: 0 10px 34px rgba(12, 61, 31, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 102;
  display: flex;
  width: 128px;
  height: 62px;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 118px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #385244;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 19px;
  height: 2px;
  background: var(--green-900);
  transition:
    transform 180ms ease,
    top 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span:nth-child(2) {
  top: 15px;
}

.menu-toggle span:nth-child(3) {
  top: 22px;
}

.menu-toggle span:nth-child(4) {
  top: 29px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 22px;
  transform: rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  top: 22px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31, 111, 43, 0.2);
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(31, 111, 43, 0.28);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.88rem;
}

.button-dark {
  background: var(--green-950);
}

.button-white {
  color: var(--green-900);
  background: #fff;
  box-shadow: 0 16px 36px rgba(4, 35, 16, 0.17);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(22, 51, 36, 0.28);
  font-weight: 750;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.text-link:hover {
  color: var(--green-700);
  border-color: var(--green-700);
}

.text-link-green {
  color: var(--green-800);
  border-color: rgba(31, 111, 43, 0.28);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  background: var(--lime-500);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(112, 176, 48, 0.15);
}

.eyebrow-blue {
  color: var(--blue-700);
}

.eyebrow-light {
  color: #d7f4d2;
}

.hero {
  min-height: 820px;
  padding-top: 154px;
  padding-bottom: 62px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(239, 248, 232, 0.95) 0%, rgba(255, 255, 255, 0.95) 57%),
    #fff;
}

.hero-grid {
  display: grid;
  min-height: 570px;
  align-items: center;
  gap: 84px;
  grid-template-columns: 0.92fr 1.08fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
  color: var(--green-700);
}

.hero-copy h1 span::after {
  position: absolute;
  right: 2%;
  bottom: -2px;
  left: 2%;
  height: 10px;
  background: var(--lime-500);
  border-radius: 999px;
  content: "";
  opacity: 0.25;
  transform: rotate(-1deg);
}

.hero-copy > p {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.19rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-points {
  display: flex;
  padding: 0;
  margin: 38px 0 0;
  gap: 22px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #466052;
  font-size: 0.88rem;
  font-weight: 680;
}

.hero-points li span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--green-800);
  background: #e3f3dd;
  border-radius: 50%;
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, transparent 72%, rgba(12, 61, 31, 0.24)),
    url("./assets/hero-beneficios.webp");
  background-position: center;
  background-size: cover;
  border-radius: 45% 45% 38px 38px;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: inherit;
  content: "";
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 19px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

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

.hero-card strong {
  font-size: 0.92rem;
}

.hero-card div > span {
  color: var(--muted);
  font-size: 0.77rem;
}

.hero-card-top {
  top: 17%;
  left: 0;
}

.hero-card-bottom {
  right: -22px;
  bottom: 12%;
}

.mini-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--blue-600);
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 300;
}

.pulse-dot {
  position: relative;
  width: 14px;
  height: 14px;
  margin: 11px;
  background: var(--green-600);
  border-radius: 50%;
}

.pulse-dot::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(54, 156, 63, 0.38);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 80px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: rgba(112, 176, 48, 0.08);
}

.hero-glow-two {
  bottom: 90px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(28, 132, 188, 0.07);
}

.trust-strip {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 46px rgba(12, 61, 31, 0.06);
}

.trust-strip > span {
  color: var(--green-800);
  font-weight: 780;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #65766b;
  font-size: 0.88rem;
  font-weight: 650;
}

.trust-items i {
  width: 5px;
  height: 5px;
  background: var(--lime-500);
  border-radius: 50%;
}

.ecosystem {
  background: #fff;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1.25fr 0.75fr;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.05rem;
}

.pillars {
  display: grid;
  margin-top: 68px;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.pillars article {
  position: relative;
  min-height: 220px;
  padding: 34px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid #e4efe6;
  border-radius: var(--radius-md);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.pillars article:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.pillars article::after {
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  background: rgba(112, 176, 48, 0.12);
  border-radius: 50%;
  content: "";
}

.pillar-number {
  display: block;
  margin-bottom: 40px;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.pillars p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted);
}

.benefits-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(112, 176, 48, 0.12), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(28, 132, 188, 0.1), transparent 30%),
    var(--green-950);
}

.section-heading-light p {
  color: #bcd0c1;
}

.benefits-grid {
  display: grid;
  margin-top: 68px;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.benefit-card {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(3, 31, 14, 0.24);
}

.benefit-card-featured,
.benefit-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
}

.benefit-media {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  background-color: var(--surface-soft);
  background-repeat: no-repeat;
}

.benefit-card-featured .benefit-media,
.benefit-card-wide .benefit-media {
  min-height: 390px;
}

.benefit-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 40, 18, 0.02) 45%, rgba(6, 40, 18, 0.45));
  content: "";
}

.media-telemedicina {
  background-image: url("./assets/telemedicina.webp");
  background-position: center;
  background-size: cover;
}

.media-pet {
  background-image: url("./assets/assistencia-pet.webp");
  background-position: center;
  background-size: cover;
}

.media-funeral {
  background-image: url("./assets/assistencia-funeral.webp");
  background-position: center;
  background-size: cover;
}

.media-clube {
  background-image: url("./assets/clube-beneficios.webp");
  background-position: center;
  background-size: cover;
}

.media-medicamentos {
  background:
    linear-gradient(135deg, rgba(20, 95, 152, 0.96), rgba(31, 111, 43, 0.96)),
    #145f98;
}

.media-medicamentos::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12) 0 8px, transparent 9px),
    radial-gradient(circle at 82% 74%, rgba(112, 176, 48, 0.22) 0 11px, transparent 12px);
  background-size: 85px 85px, 120px 120px;
  content: "";
}

.benefit-index,
.benefit-category {
  position: absolute;
  z-index: 2;
  top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(12, 61, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.benefit-index {
  left: 22px;
  width: 44px;
  height: 44px;
  font-size: 0.76rem;
  font-weight: 850;
}

.benefit-category {
  right: 22px;
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pill-art {
  position: absolute;
  z-index: 2;
  inset: 24% 18%;
}

.pill-art span {
  position: absolute;
  display: block;
  width: 118px;
  height: 52px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(3, 28, 17, 0.2);
}

.pill-art span::after {
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: 50%;
  width: 3px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.pill-art span:nth-child(1) {
  top: 18px;
  left: 18%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 50%, rgba(112, 176, 48, 0.75) 50%);
  transform: rotate(-28deg);
}

.pill-art span:nth-child(2) {
  top: 104px;
  right: 12%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 50%, rgba(28, 132, 188, 0.8) 50%);
  transform: rotate(22deg);
}

.pill-art span:nth-child(3) {
  bottom: -2px;
  left: 34%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 50%, rgba(54, 156, 63, 0.8) 50%);
  transform: rotate(-4deg);
}

.benefit-content {
  display: grid;
  padding: 34px;
  gap: 22px;
  grid-template-columns: auto 1fr;
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-800);
  background: var(--surface-lime);
  border-radius: 15px;
  font-size: 1.35rem;
  font-weight: 800;
}

.benefit-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.benefit-actions a:first-child {
  color: var(--green-800);
  font-weight: 780;
}

.benefit-actions a:last-child {
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(94, 112, 101, 0.3);
  text-underline-offset: 4px;
}

.benefit-actions a:hover {
  color: var(--blue-700);
}

.how-section {
  background: var(--surface-soft);
}

.how-grid {
  display: grid;
  align-items: center;
  gap: 92px;
  grid-template-columns: 1fr 0.92fr;
}

.how-visual {
  position: relative;
  min-height: 690px;
}

.how-photo {
  position: absolute;
  inset: 0 8% 0 0;
  background-image:
    linear-gradient(180deg, transparent 72%, rgba(12, 61, 31, 0.18)),
    url("./assets/como-funciona.webp");
  background-position: center;
  background-size: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.how-badge {
  position: absolute;
  right: 0;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 16px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: var(--shadow-soft);
}

.how-badge img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.how-badge span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.how-badge strong {
  color: var(--green-800);
}

.how-intro {
  max-width: 510px;
  color: var(--muted);
  font-size: 1.05rem;
}

.steps {
  padding: 0;
  margin: 42px 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  padding-bottom: 28px;
  gap: 18px;
  grid-template-columns: 48px 1fr;
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 47px;
  bottom: 0;
  left: 23px;
  width: 1px;
  background: #c9ddce;
  content: "";
}

.steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-800);
  background: #fff;
  border: 1px solid #cfe2d3;
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 850;
}

.steps h3 {
  margin: 4px 0 5px;
  font-size: 1.08rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.statement {
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(12, 61, 31, 0.97), rgba(31, 111, 43, 0.96)),
    var(--green-950);
}

.statement-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.statement-content img {
  width: 78px;
  height: 78px;
  padding: 12px;
  margin: 0 auto 25px;
  object-fit: contain;
  background: #fff;
  border-radius: 22px;
}

.statement-kicker {
  margin-bottom: 18px;
  color: #bfe9b6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.statement h2 span {
  color: #a6df80;
}

.statement-content > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: #d3e3d6;
  font-size: 1.12rem;
}

.statement-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.statement-shape-one {
  top: -260px;
  left: -140px;
  width: 650px;
  height: 650px;
}

.statement-shape-two {
  right: -170px;
  bottom: -350px;
  width: 760px;
  height: 760px;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 96px;
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro p {
  max-width: 420px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 52px 27px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 2px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green-800);
  background: var(--surface-soft);
  border-radius: 50%;
  content: "+";
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  padding: 0 48px 26px 0;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding-top: 0;
  background: #fff;
}

.final-cta-inner {
  display: grid;
  align-items: center;
  padding: 62px;
  gap: 64px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(112, 176, 48, 0.28), transparent 30%),
    linear-gradient(130deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  grid-template-columns: 1.2fr 0.8fr;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.final-cta-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.final-cta-action p {
  color: #d7ead9;
}

.phone-label {
  margin: 12px 0 0 22px;
  color: #d7ead9;
  font-size: 0.85rem;
  font-weight: 650;
}

.site-footer {
  padding: 76px 0 24px;
  color: #c8d5ca;
  background: #092c18;
}

.footer-main {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.35fr 0.65fr 0.9fr 0.7fr;
}

.footer-brand img {
  width: 140px;
  padding: 10px;
  background: #fff;
  border-radius: 15px;
}

.footer-brand p {
  max-width: 290px;
  margin: 22px 0 0;
  color: #a9baad;
  font-size: 0.9rem;
}

.footer-links,
.footer-contact,
.footer-support {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-main strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main span {
  color: #a9baad;
  font-size: 0.88rem;
}

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

.footer-support img {
  width: 92px;
  padding: 8px;
  background: #fff;
  border-radius: 13px;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  max-width: 680px;
  margin-bottom: 0;
  color: #8fa093;
  font-size: 0.76rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 13px;
  color: #fff;
  background: #1f9d50;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(7, 73, 35, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 16px 36px rgba(7, 73, 35, 0.35);
  transform: translateY(-3px);
}

.whatsapp-float span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 1rem;
}

.whatsapp-float strong {
  font-size: 0.87rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal[data-delay="2"] {
  transition-delay: 180ms;
}

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

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    gap: 50px;
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-card-bottom {
    right: 0;
  }

  .how-grid {
    gap: 56px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-support {
    display: none;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 120px 32px 48px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 28px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid {
    gap: 54px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-photo {
    left: 0;
  }

  .trust-strip {
    margin-top: 56px;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }

  .trust-items {
    flex-wrap: wrap;
  }

  .section-heading {
    gap: 24px;
    grid-template-columns: 1fr;
  }

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

  .pillars article {
    min-height: auto;
  }

  .benefit-card-featured,
  .benefit-card-wide {
    display: block;
  }

  .how-grid,
  .faq-grid,
  .final-cta-inner {
    gap: 54px;
    grid-template-columns: 1fr;
  }

  .how-visual {
    min-height: 600px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    padding: 48px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.75rem, 13.4vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 105px;
    height: 54px;
  }

  .brand img {
    width: 100px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-copy > p {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-photo {
    inset: 0;
    background-position: 79% center;
    border-radius: 140px 140px 28px 28px;
  }

  .hero-card {
    padding: 12px 14px;
  }

  .hero-card-top {
    top: 13%;
    left: -8px;
  }

  .hero-card-bottom {
    right: -7px;
    bottom: 8%;
  }

  .hero-card strong {
    font-size: 0.8rem;
  }

  .hero-card div > span {
    font-size: 0.68rem;
  }

  .trust-items {
    gap: 12px;
  }

  .trust-items i {
    display: none;
  }

  .trust-items span {
    padding: 6px 10px;
    background: var(--surface-soft);
    border-radius: 999px;
  }

  .pillars {
    margin-top: 42px;
  }

  .benefits-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .benefit-card-featured,
  .benefit-card-wide {
    grid-column: auto;
  }

  .benefit-media,
  .benefit-card-featured .benefit-media,
  .benefit-card-wide .benefit-media {
    min-height: 280px;
  }

  .media-telemedicina {
    background-position: center;
    background-size: cover;
  }

  .media-clube {
    background-position: center;
    background-size: cover;
  }

  .benefit-content {
    padding: 25px;
  }

  .benefit-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .how-visual {
    min-height: 500px;
  }

  .how-photo {
    inset: 0;
    background-position: center;
    border-radius: 28px;
  }

  .how-badge {
    right: 14px;
    bottom: 14px;
  }

  .statement {
    min-height: 560px;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .final-cta-inner {
    width: min(calc(100% - 24px), var(--container));
    padding: 38px 26px;
    border-radius: 28px;
  }

  .button-white {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    width: 40px;
    height: 40px;
  }

  .whatsapp-float strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
