:root {
  --navy: #102a43;
  --navy-soft: #1b3f5f;
  --teal: #0f8b8d;
  --teal-deep: #08777a;
  --green: #43a86e;
  --mint: #e9f8f2;
  --ice: #f6fbfb;
  --gold: #d6a84f;
  --ink: #13202e;
  --muted: #657489;
  --line: #dbe8e8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 42, 67, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.hidden-field {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 42, 67, 0.86), rgba(16, 42, 67, 0));
}

.brand,
.main-nav,
.header-cta {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 3px;
}

.brand-mark::before {
  width: 16px;
  height: 5px;
  top: 15px;
  left: 9px;
}

.brand-mark::after {
  width: 5px;
  height: 16px;
  top: 9px;
  left: 15px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a {
  opacity: 0.9;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-link {
  gap: 8px;
}

.whatsapp-link img {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.header-cta {
  padding: 0 18px;
  color: var(--navy);
  background: var(--white);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 16px 34px rgba(15, 139, 141, 0.32);
}

.button.primary:hover {
  background: var(--teal-deep);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.button.large {
  min-height: 54px;
  padding: 0 28px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding: 112px 6vw 64px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.76) 0%, rgba(16, 42, 67, 0.5) 34%, rgba(16, 42, 67, 0.04) 66%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 139, 141, 0.08), rgba(255, 255, 255, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(670px, 100%);
}

.eyebrow,
.section-kicker,
.plan-tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 58px;
  line-height: 1.03;
  font-weight: 900;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-logo-strip {
  position: relative;
  z-index: 2;
  top: auto;
  left: auto;
  right: auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0 0 28px;
}

.hero-logo-strip div {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 28px rgba(9, 24, 38, 0.1);
  backdrop-filter: blur(12px);
}

.hero-logo-strip img {
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
}

.more-operators {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button.primary {
  min-height: 58px;
  padding: 0 30px;
  font-size: 16px;
  box-shadow: 0 18px 42px rgba(15, 139, 141, 0.38);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
  max-width: 640px;
}

.hero-metrics div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.hero-metrics strong {
  font-size: 18px;
}

.hero-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-section {
  padding: 34px 6vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.proof-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--ice));
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.proof-item span {
  margin-top: 6px;
  color: var(--muted);
}

.trust-item {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: var(--white);
}

.trust-item span {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(67, 168, 110, 0.13);
}

.trust-item p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.section {
  padding: 88px 6vw;
}

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

.two-column,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 68px;
  align-items: start;
}

.about-layout {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 44px;
  text-align: center;
}

.intro-section {
  background: var(--white);
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  width: min(500px, 100%);
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.about-photo-frame::before,
.about-photo-frame::after {
  display: none;
}

.about-photo-frame::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.about-photo-frame::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.about-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-photo-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px 22px;
  border-top: 0;
  background: var(--white);
}

.about-photo-card strong {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
}

.about-photo-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 900;
}

.about-text p,
.intro-copy p,
.section-heading p,
.benefit-card p,
.highlight-card p,
.plan-card p,
.plan-card li,
.process-step p,
.contact-content p {
  color: var(--muted);
}

.about-text p,
.intro-copy p {
  margin: 0 0 18px;
  font-size: 18px;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text {
  max-width: 900px;
}

.about-text p:last-child,
.intro-copy p:last-child {
  margin-bottom: 0;
}

.benefits-section {
  background: var(--ice);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.benefit-grid,
.highlight-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card,
.highlight-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.benefit-card {
  min-height: 246px;
  padding: 30px;
}

.highlight-card {
  min-height: 190px;
  padding: 28px;
  background: linear-gradient(180deg, var(--white), var(--ice));
}

.highlight-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-card h3,
.highlight-card h3,
.plan-card h3,
.process-step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.benefit-card p,
.highlight-card p,
.plan-card p,
.process-step p {
  margin: 14px 0 0;
}

.icon-dot {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 0 0 10px rgba(15, 139, 141, 0.1);
}

.plans-section {
  background: var(--white);
}

.operators-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), var(--ice));
}

.plan-highlights-section {
  background: var(--white);
}

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

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--ice));
}

.faq-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--ice), rgba(246, 251, 251, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--ice), rgba(246, 251, 251, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: logo-scroll 34s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-slide {
  display: flex;
  width: 230px;
  height: 112px;
  flex: 0 0 230px;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.logo-slide img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.hero-logo-strip img[src*="logo-medsenior"],
.logo-slide img[src*="logo-medsenior"] {
  object-position: center;
  transform: translateY(-4px);
}

.hero-logo-strip img[src*="hapvida-notredame"] {
  max-height: 38px;
  transform: scale(1.06);
}

.logo-slide img[src*="hapvida-notredame"] {
  max-height: 92px;
  transform: scale(1.12);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 72px));
  }
}

.plan-card {
  position: relative;
  min-height: 420px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

.plan-card.featured {
  border-color: rgba(15, 139, 141, 0.35);
  box-shadow: var(--shadow);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.plan-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: var(--mint);
  font-size: 11px;
}

.process-section {
  background: linear-gradient(180deg, var(--mint), var(--ice));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-step {
  padding: 0 28px 0 0;
}

.process-step span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.contact-section {
  padding: 94px 6vw;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(8, 119, 122, 0.92)),
    radial-gradient(circle at 12% 10%, rgba(214, 168, 79, 0.28), transparent 34%);
}

.contact-content {
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-section .section-kicker,
.contact-section h2,
.contact-content p {
  color: var(--white);
}

.contact-content p {
  max-width: 660px;
  margin: 20px auto 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw;
  color: var(--white);
  background: var(--navy);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a,
.footer-contact span {
  color: var(--gold);
  font-weight: 800;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1ebd5a;
  box-shadow: 0 16px 38px rgba(30, 189, 90, 0.32);
  font-weight: 900;
}

.floating-whatsapp img {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.exit-popup {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 88px;
  width: min(360px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid rgba(15, 139, 141, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(9, 24, 38, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.exit-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.exit-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--ice);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.exit-popup-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.exit-popup strong {
  display: block;
  padding-right: 24px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.exit-popup p:not(.exit-popup-kicker) {
  margin: 12px 0 18px;
  color: var(--muted);
}

.quote-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.quote-modal:target {
  display: flex;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 38, 0.72);
  backdrop-filter: blur(7px);
}

.quote-dialog {
  position: relative;
  overflow: auto;
  width: min(760px, 100%);
  max-height: min(92vh, 900px);
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(9, 24, 38, 0.34);
}

.quote-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--ice);
  font-size: 28px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.quote-intro {
  max-width: 620px;
  padding-right: 34px;
}

.quote-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.18;
}

.quote-intro p:last-child,
.quote-help {
  margin: 14px 0 0;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span {
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.quote-result textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  padding: 0 14px;
}

.quote-form textarea,
.quote-result textarea {
  resize: vertical;
  padding: 13px 14px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.quote-result textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.12);
}

.quote-wide,
.quote-actions,
.quote-result {
  grid-column: 1 / -1;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.quote-result {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.quote-result-title {
  margin: 0 0 10px;
  color: var(--navy);
  font-weight: 900;
}

body.quote-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .site-header {
    padding: 14px 5vw;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 108px 5vw 48px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 28px;
  }

  .hero-logo-strip div {
    height: 48px;
  }

  .hero-metrics,
  .trust-strip,
  .proof-grid,
  .benefit-grid,
  .highlight-grid,
  .plans-grid,
  .process-list,
  .faq-list,
  .two-column,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    max-width: 420px;
  }

  .trust-item {
    justify-content: flex-start;
    padding-left: 5vw;
  }

  .proof-section {
    padding: 28px 5vw;
  }

  .section {
    padding: 68px 5vw;
  }

  .section h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .two-column {
    gap: 24px;
  }

  .about-layout {
    gap: 34px;
  }

  .about-photo-card {
    max-width: 430px;
  }

  .plan-card,
  .benefit-card,
  .highlight-card,
  .faq-item {
    min-height: auto;
  }

  .logo-slide {
    width: 190px;
    height: 100px;
    flex-basis: 190px;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 64px;
  }

  .quote-dialog {
    padding: 28px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 120px;
    line-height: 1.15;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 42, 67, 0.78), rgba(16, 42, 67, 0.38), rgba(255, 255, 255, 0.1)),
      linear-gradient(180deg, rgba(16, 42, 67, 0.08), rgba(255, 255, 255, 0.12));
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy,
  .about-text p,
  .intro-copy p,
  .contact-content p {
    font-size: 16px;
  }

  .hero-logo-strip {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-logo-strip div {
    height: 46px;
    padding: 10px;
  }

  .hero-logo-strip img {
    max-height: 28px;
  }

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

  .quote-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .quote-dialog {
    max-height: 94vh;
    padding: 24px 18px;
  }

  .quote-intro {
    padding-right: 28px;
  }

  .quote-intro h2 {
    font-size: 24px;
  }

  .quote-actions {
    width: 100%;
  }

  .hero-metrics div {
    min-height: 78px;
  }

  .section h2,
  .contact-section h2 {
    font-size: 29px;
  }

  .benefit-card,
  .highlight-card,
  .plan-card {
    padding: 24px;
  }

  .logo-track {
    gap: 12px;
    animation-duration: 28s;
  }

  .logo-slide {
    width: 168px;
    height: 90px;
    flex-basis: 168px;
    padding: 16px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .exit-popup {
    right: 14px;
    bottom: 76px;
  }
}
