:root {
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-800: #0c1b2e;
  --navy-700: #18314f;
  --blue-600: #1769ff;
  --blue-500: #2f7cff;
  --blue-100: #eaf2ff;
  --cyan-400: #3bd8ff;
  --green-500: #20c878;
  --green-100: #e8fbf2;
  --white: #ffffff;
  --slate-50: #f7f9fc;
  --slate-100: #eef2f7;
  --slate-200: #dfe6ef;
  --slate-500: #66758a;
  --slate-700: #344154;
  --shadow-sm: 0 12px 35px rgba(7, 17, 31, 0.08);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.26);
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-500), var(--cyan-400));
  border-radius: 12px 12px 12px 4px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 8px 24px rgba(47, 124, 255, 0.35);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(59, 216, 255, 0.7);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 14px 35px rgba(23, 105, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(23, 105, 255, 0.38);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
}

.button-dark:hover {
  background: var(--navy-700);
  box-shadow: var(--shadow-sm);
}

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

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 124, 255, 0.22), transparent 29%),
    linear-gradient(135deg, var(--navy-950) 0%, #09172a 58%, #0b213e 100%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -55%;
  width: 750px;
  height: 750px;
  border: 1px solid rgba(59, 216, 255, 0.12);
  border-radius: 50%;
  content: "";
}

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

.hero-glow-one {
  top: 180px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: rgba(23, 105, 255, 0.12);
}

.hero-glow-two {
  right: 6%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  background: rgba(59, 216, 255, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 810px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.74fr);
  gap: clamp(50px, 7vw, 100px);
  padding-top: 118px;
  padding-bottom: 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #b8cced;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(59, 216, 255, 0.1);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  font-weight: 820;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(110deg, #62a0ff 10%, var(--cyan-400) 95%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #aebed3;
  font-size: clamp(1.04rem, 1.5vw, 1.17rem);
  line-height: 1.75;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d5e4fa;
  font-weight: 750;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 42px 0 0;
  padding: 0;
  color: #91a5c1;
  font-size: 0.88rem;
  font-weight: 650;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points span,
.offer-list span,
.price-card li span {
  color: var(--green-500);
  font-weight: 900;
}

.hero-card {
  position: relative;
  padding: 34px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.hero-card::before {
  position: absolute;
  z-index: -1;
  inset: -14px;
  border: 1px solid rgba(59, 216, 255, 0.18);
  border-radius: 36px;
  content: "";
}

.hero-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pill {
  padding: 6px 10px;
  color: #087746;
  background: var(--green-100);
  border-radius: 999px;
  font-size: 0.7rem;
}

.hero-card-kicker {
  margin: 34px 0 0;
  color: var(--slate-500);
  font-weight: 750;
}

.hero-price {
  display: flex;
  align-items: flex-start;
  margin-top: 2px;
  line-height: 1;
}

.hero-price .currency {
  margin-top: 14px;
  margin-right: 5px;
  color: var(--slate-500);
  font-size: 1rem;
  font-weight: 800;
}

.hero-price strong {
  font-size: 5rem;
  letter-spacing: -0.07em;
}

.hero-price .cents {
  margin-top: 10px;
  font-size: 1.35rem;
  font-weight: 850;
}

.monthly-equivalent {
  margin: 9px 0 0;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.monthly-equivalent strong {
  color: var(--blue-600);
}

.hero-divider {
  height: 1px;
  margin: 26px 0;
  background: var(--slate-200);
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 0 0 27px;
  padding: 0;
  color: var(--slate-700);
  font-size: 0.92rem;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 0.75rem;
  text-align: center;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 28px;
}

.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--slate-200);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.trust-grid span {
  color: var(--slate-500);
  font-size: 0.85rem;
}

.section {
  padding-block: 110px;
}

.section-muted {
  background: var(--slate-50);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 50px;
}

.section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-label.light {
  color: #89dfff;
}

.section-heading h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--slate-500);
  font-size: 1.02rem;
}

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

.benefit-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(7, 17, 31, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #c9d9f0;
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 26px 0 9px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-grid li {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.step-number {
  display: grid;
  flex: 0 0 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-weight: 850;
}

.steps-grid h3 {
  margin: 0 0 7px;
  font-size: 1.04rem;
}

.steps-grid p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.87rem;
}

.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 32px 25px 26px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(7, 17, 31, 0.04);
}

.price-card.featured {
  border: 2px solid var(--blue-500);
  box-shadow: 0 22px 52px rgba(23, 105, 255, 0.14);
  transform: translateY(-12px);
}

.price-card.annual {
  background: linear-gradient(180deg, #fbfffd, var(--white));
  border-color: #b9e8d2;
}

.saving-badge,
.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: calc(100% - 28px);
  padding: 7px 12px;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 0 0 10px 10px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.popular-badge {
  top: -28px;
  width: calc(100% + 4px);
  max-width: none;
  padding-block: 8px;
  color: var(--white);
  background: var(--blue-500);
  border-radius: 13px 13px 0 0;
}

.saving-badge-green {
  color: #087746;
  background: var(--green-100);
}

.price-card-header {
  min-height: 80px;
  padding-top: 18px;
}

.price-card-header h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.price-card-header p {
  margin: 5px 0 0;
  color: var(--slate-500);
  font-size: 0.81rem;
}

.card-price {
  display: flex;
  align-items: flex-start;
  margin-top: 12px;
  line-height: 1;
}

.card-price strong {
  font-size: 3.3rem;
  letter-spacing: -0.065em;
}

.card-price span:first-child {
  margin: 9px 5px 0 0;
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-price span:last-child {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 850;
}

.billing-period {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--slate-500);
  font-size: 0.78rem;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 25px 0 0;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-size: 0.81rem;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 8px;
}

.price-card .button {
  min-height: 48px;
  margin-top: auto;
  padding-inline: 14px;
  font-size: 0.82rem;
}

.pricing-note {
  margin: 30px 0 0;
  color: var(--slate-500);
  font-size: 0.76rem;
  text-align: center;
}

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

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(50px, 9vw, 110px);
}

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

.faq-intro p {
  margin: 20px 0 28px;
  color: var(--slate-500);
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  cursor: pointer;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--blue-600);
  font-size: 1.45rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

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

.faq-list details p {
  margin: -6px 26px 0;
  padding: 0 36px 24px 0;
  color: var(--slate-500);
  font-size: 0.9rem;
}

.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 50%, rgba(59, 216, 255, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy-950), #102d51);
}

.final-cta-inner {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 60px;
}

.final-cta h2 {
  max-width: 650px;
}

.final-cta p {
  margin: 16px 0 0;
  color: #aebed3;
}

.site-footer {
  padding-top: 70px;
  color: #91a5c1;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 54px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-grid > div:first-child p {
  max-width: 340px;
  margin: 0;
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 0.84rem;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-links a:hover,
.footer-link-button:hover {
  color: var(--white);
}

.footer-link-button {
  width: fit-content;
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 7px;
  color: var(--white);
  background: #1ebd6a;
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(8, 119, 70, 0.35);
  font-size: 0.84rem;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(8, 119, 70, 0.45);
}

.whatsapp-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-weight: 900;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 20, 0.76);
  backdrop-filter: blur(7px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 670px);
  max-height: min(82vh, 700px);
  overflow-y: auto;
  padding: 38px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.modal-panel h2 {
  margin: 0 0 20px;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.modal-panel p {
  color: var(--slate-500);
  font-size: 0.92rem;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--slate-700);
  background: var(--slate-100);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(3.1rem, 6.5vw, 4.7rem);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .price-card.featured {
    transform: none;
  }

  .popular-badge {
    top: 0;
    width: auto;
    max-width: calc(100% - 28px);
    border-radius: 0 0 10px 10px;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 82px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 92px;
  }

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

  .hero-card {
    width: min(100%, 520px);
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
  }
}

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

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

  .header-inner > .button {
    display: none;
  }

  .hero-grid {
    padding-top: 122px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-lead {
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 32px;
  }

  .hero-card {
    padding: 28px 22px;
  }

  .hero-price strong {
    font-size: 4.35rem;
  }

  .trust-grid {
    gap: 0;
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-grid > div {
    justify-content: flex-start;
    padding: 16px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--slate-100);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .benefit-card,
  .steps-grid li {
    padding: 25px;
  }

  .steps-grid li {
    align-items: flex-start;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .price-card {
    padding: 31px 25px 26px;
  }

  .faq-list summary {
    padding: 21px 20px;
  }

  .faq-list details p {
    margin-inline: 20px;
    padding-right: 10px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 5px;
  }

  .whatsapp-symbol {
    width: 42px;
    height: 42px;
  }

  .float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .modal-panel {
    padding: 34px 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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