:root {
  --navy: #0b243d;
  --navy-2: #123b60;
  --blue: #4068a7;
  --blue-light: #e8eef7;
  --cyan: #19aabd;
  --orange: #f28a2e;
  --ink: #172331;
  --muted: #5d6b79;
  --line: #dce4ec;
  --surface: #ffffff;
  --surface-alt: #f4f7fa;
  --shadow: 0 22px 60px rgba(11, 36, 61, 0.12);
  --radius: 22px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

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.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
}

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

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

:focus-visible {
  outline: 3px solid rgba(25, 170, 189, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(64, 104, 167, 0.98);
  border-bottom: 1px solid rgba(24, 57, 105, 0.35);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: 220px;
  height: 48px;
  object-fit: cover;
  object-position: center 70%;
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 3px;
  text-underline-offset: 9px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(20, 89, 166, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-nav > .nav-actions .button {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 9px 22px rgba(11, 36, 61, 0.18);
}

.site-nav > .nav-actions .button:hover {
  color: var(--navy);
  background: #eef4fb;
  border-color: #eef4fb;
}

.nav-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 18px;
}

.language-switcher {
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.language-button {
  min-width: 34px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.language-button:hover,
.language-button[aria-pressed="true"] {
  color: var(--blue);
  background: #fff;
}

.button:hover {
  color: #fff;
  background: var(--navy-2);
  border-color: var(--navy-2);
  box-shadow: 0 12px 28px rgba(11, 36, 61, 0.22);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--blue);
  background: var(--blue-light);
  border-color: #bfd6ef;
}

.button-light {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  color: var(--navy);
  background: #eaf5ff;
  border-color: #eaf5ff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

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

p {
  margin-top: 0;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0 74px;
  background:
    radial-gradient(circle at 7% 18%, rgba(25, 170, 189, 0.12), transparent 27%),
    linear-gradient(135deg, #f7fbff 0%, #fff 58%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.hero-copy .lead {
  max-width: 630px;
  margin-bottom: 30px;
}

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

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -28px 38px 38px -28px;
  z-index: 0;
  content: "";
  background: var(--blue-light);
  border-radius: 36px;
  transform: rotate(-3deg);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: 24px;
  z-index: 2;
  max-width: 235px;
  padding: 18px 20px;
  color: #fff;
  background: var(--blue);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(11, 36, 61, 0.28);
}

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

.hero-note strong {
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.hero-note span {
  color: #bed0df;
  font-size: 0.86rem;
}

.trust-bar {
  background: var(--blue);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 0;
  color: #fff;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 22px 28px 22px 52px;
  font-size: 0.92rem;
  font-weight: 750;
  text-align: center;
}

.trust-list li::before {
  position: absolute;
  top: 50%;
  margin-left: -27px;
  color: var(--cyan);
  content: "✓";
  transform: translateY(-50%);
}

.trust-list li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.section {
  padding: clamp(76px, 9vw, 120px) 0;
}

.section-muted {
  background: var(--surface-alt);
}

.section-dark {
  color: #d6e0e9;
  background: linear-gradient(135deg, var(--blue), #68a4c4);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .eyebrow {
  color: #79d3dd;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-head > div {
  max-width: 760px;
}

.section-head p:last-child {
  margin-bottom: 0;
}

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

.solution-card,
.value-card,
.step-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.solution-card:hover,
.value-card:hover {
  border-color: #b9d0e7;
  box-shadow: 0 14px 38px rgba(11, 36, 61, 0.09);
  transform: translateY(-4px);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 900;
}

.solution-card p,
.value-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 36, 61, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f7f9fb;
  border-bottom: 1px solid var(--line);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-tag {
  align-self: flex-start;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-content p {
  color: var(--muted);
  font-size: 0.93rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-button {
  padding: 9px 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(46px, 8vw, 100px);
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--navy);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  content: "✓";
  font-weight: 900;
}

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

.step-card {
  position: relative;
  color: var(--ink);
}

.section-dark .step-card h3 {
  color: var(--navy);
}

.section-dark .step-card p {
  color: var(--muted);
}

.step-card::before {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 22px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
}

.video-wrap {
  overflow: hidden;
  background: #081a2b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(2, 14, 26, 0.38);
}

.video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 112px) 0;
  background:
    linear-gradient(90deg, rgba(64, 104, 167, 0.96), rgba(104, 164, 196, 0.9)),
    url("../img/slides/3.jpg") center / cover;
}

.page-hero .eyebrow {
  color: #78d6e0;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
}

.page-hero .lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #d2e0ec;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat {
  padding: 28px;
  background: #fff;
}

.stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
}

.contact-panel,
.form-panel {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-panel {
  color: #d7e3ed;
  background: var(--blue);
}

.contact-panel h2,
.contact-panel h3 {
  color: #fff;
}

.contact-panel a {
  color: #fff;
}

.contact-item {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-item:first-of-type {
  border-top: 0;
}

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

.contact-item strong {
  margin-bottom: 6px;
  color: #79d3dd;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd6e0;
  border-radius: 11px;
}

input,
select {
  min-height: 50px;
  padding: 10px 13px;
}

textarea {
  min-height: 155px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(20, 89, 166, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  display: none;
  padding: 13px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #135e3a;
  background: #e4f7ed;
  border: 1px solid #b7e8cd;
}

.form-status.is-error {
  color: #8c2828;
  background: #fff0f0;
  border: 1px solid #f1c1c1;
}

.map-frame {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--radius);
}

.client-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.client-regions li {
  padding: 8px 13px;
  color: var(--navy);
  background: var(--blue-light);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.client-directory {
  columns: 3 280px;
  column-gap: 20px;
}

.client-card {
  display: inline-block;
  width: 100%;
  padding: 22px;
  margin: 0 0 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 14px;
  break-inside: avoid;
  box-shadow: 0 8px 24px rgba(11, 36, 61, 0.05);
}

.client-card h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.client-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.empty-state {
  padding: clamp(34px, 7vw, 64px);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.cta-band {
  padding: 52px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--blue), #68a4c4);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.cta-band p {
  margin-bottom: 0;
  color: #dceaf5;
}

.site-footer {
  padding: 68px 0 26px;
  color: #b9c8d5;
  background: var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 260px;
  height: 58px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center 70%;
  background: transparent;
  border-radius: 0;
  filter: none;
}

.footer-brand p {
  max-width: 390px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links,
.social-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li,
.social-links li + li {
  margin-top: 10px;
}

.site-footer a {
  color: #d7e3ed;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom p:last-child a + a {
  margin-left: 14px;
}

.whatsapp-float {
  position: fixed;
  z-index: 850;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 9px;
  color: #fff;
  background: #25d366;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(9, 54, 35, 0.28);
  font-weight: 850;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  background: #1ebe5d;
  box-shadow: 0 16px 34px rgba(9, 54, 35, 0.34);
  text-decoration: none;
  transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.whatsapp-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    width: min(100%, 720px);
  }

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

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

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    top: 82px;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 82px);
    height: calc(100dvh - 82px);
    display: block;
    padding: 24px 20px calc(32px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #31598f;
    box-shadow: 0 24px 50px rgba(8, 35, 66, 0.32);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav li {
    border: 0;
  }

  .site-nav ul a {
    display: block;
    padding: 15px 16px;
    font-size: 1.05rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
  }

  .site-nav ul a:hover,
  .site-nav ul a:focus-visible {
    background: rgba(255, 255, 255, 0.18);
  }

  .site-nav ul a[aria-current="page"] {
    color: var(--blue-dark);
    background: #fff;
    text-decoration: none;
  }

  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .site-nav .button {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

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

  .section-head,
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 170px;
    height: 38px;
  }

  .site-nav {
    top: 72px;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
  }

  .hero {
    padding-top: 54px;
  }

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

  .hero-media img {
    min-height: 300px;
  }

  .hero-media::before {
    inset: -16px 20px 28px -14px;
  }

  .hero-note {
    right: 10px;
    bottom: 14px;
    max-width: 210px;
  }

  .card-grid,
  .product-grid,
  .video-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 60px;
    height: 60px;
    min-height: 60px;
    justify-content: center;
    padding: 9px;
  }

  .whatsapp-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
