:root {
  color-scheme: light;
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-2: #eaf2fb;
  --surface-3: #dceaf7;
  --text: #102033;
  --muted: #5d6f83;
  --line: rgba(15, 55, 95, 0.13);
  --primary: #0b5cad;
  --primary-strong: #084885;
  --primary-soft: #dceeff;
  --cyan: #0d8ea6;
  --green: #0b5cad;
  --green-soft: #dceeff;
  --whatsapp: #25d366;
  --whatsapp-strong: #16b957;
  --whatsapp-soft: #dcfce7;
  --gold: #c8911f;
  --shadow: 0 24px 70px rgba(22, 60, 100, 0.14);
  --shadow-strong: 0 32px 90px rgba(8, 72, 133, 0.22);
  --radius: 8px;
  --header-height: 78px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07111c;
  --surface: #0e1b2a;
  --surface-2: #132840;
  --surface-3: #183554;
  --text: #edf6ff;
  --muted: #a8bacd;
  --line: rgba(183, 217, 249, 0.16);
  --primary: #52a9ff;
  --primary-strong: #8bc7ff;
  --primary-soft: rgba(82, 169, 255, 0.16);
  --cyan: #37c6d9;
  --green: #52a9ff;
  --green-soft: rgba(82, 169, 255, 0.16);
  --whatsapp: #25d366;
  --whatsapp-strong: #35e277;
  --whatsapp-soft: rgba(37, 211, 102, 0.16);
  --gold: #ffd36a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 34px 100px rgba(2, 10, 23, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(13, 142, 166, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, var(--surface-2) 48%, var(--bg) 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(10, 36, 63, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 196px;
  height: auto;
  object-fit: contain;
}

.brand-logo-dark {
  display: none;
}

[data-theme="dark"] .brand-logo-light {
  display: none;
}

[data-theme="dark"] .brand-logo-dark {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 11px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-strong);
  background: var(--primary-soft);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.icon-button:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--primary) 45%, var(--line));
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-moon,
[data-theme="dark"] .icon-sun {
  display: none;
}

[data-theme="dark"] .icon-moon {
  display: block;
}

.menu-toggle {
  display: inline-grid;
  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  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,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  box-shadow: 0 14px 34px rgba(11, 92, 173, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(11, 92, 173, 0.32);
}

.button-whatsapp {
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.26);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: var(--whatsapp-strong);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
}

.button-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--primary-strong);
}

.button-light {
  background: #fff;
  color: #084885;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 76px 0;
}

.hero {
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.08rem);
  letter-spacing: 0;
}

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

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.58;
  margin-bottom: 18px;
}

.hero-text-secondary {
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-points a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  color: var(--primary-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-points a:hover,
.hero-points a:focus-visible {
  border-color: color-mix(in srgb, var(--primary) 42%, var(--line));
  background: var(--primary-soft);
  outline: none;
}

.hero-visual {
  position: relative;
}

.hero-image-shell {
  position: relative;
  aspect-ratio: 7 / 4;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(11, 92, 173, 0.08));
  pointer-events: none;
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.section-heading p:not(.eyebrow),
.benefits-copy p,
.company p,
.backup-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.align-left {
  text-align: left;
  margin-left: 0;
}

.company {
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 42px;
  align-items: center;
}

.company .section-heading {
  margin-bottom: 0;
}

.experience-panel {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 26%, var(--line));
  border-radius: 8px;
  padding: 30px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 88%, transparent), color-mix(in srgb, var(--primary-soft) 70%, transparent)),
    radial-gradient(circle at top right, rgba(31, 157, 114, 0.2), transparent 60%);
  box-shadow: var(--shadow);
}

.experience-panel strong {
  color: var(--primary-strong);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
}

.experience-panel span {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
}

.services {
  padding-top: 36px;
  padding-bottom: 44px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface) 74%, transparent), transparent);
}

.ged-section .section-heading h2 {
  margin-bottom: 0;
}

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

.service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--surface-2) 76%, transparent));
  box-shadow: var(--shadow);
}

.service-card-backup {
  border-color: color-mix(in srgb, var(--primary) 36%, var(--line));
}

.service-icon,
.feature-icon,
.premium-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--primary-strong);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--primary-soft);
}

.service-card-backup .service-icon {
  color: var(--primary-strong);
  background: var(--primary-soft);
}

.service-icon svg,
.feature-icon svg,
.premium-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-label {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p:not(.service-label) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--primary-strong);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan);
  outline: none;
}

.ged-section {
  padding-top: 42px;
  padding-bottom: 40px;
}

.ged-section .section-heading {
  margin-bottom: 28px;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.premium-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--surface-2) 78%, transparent));
  box-shadow: var(--shadow);
}

.premium-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(13, 142, 166, 0.2), transparent 68%);
  pointer-events: none;
}

.premium-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.premium-card-header h3 {
  flex: 1 1 220px;
  min-width: 0;
  margin-bottom: 0;
}

.premium-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--primary-soft);
}

.premium-card-header .premium-icon {
  margin-bottom: 0;
}

.premium-icon svg {
  width: 30px;
  height: 30px;
}

.check-list,
.feature-card ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li,
.feature-card li {
  position: relative;
  padding-left: 25px;
  margin: 10px 0;
  color: var(--muted);
}

.check-list li::before,
.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}

.backup-features li::before {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}

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

.feature-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 91%, transparent);
  box-shadow: 0 18px 44px rgba(15, 55, 95, 0.08);
}

.feature-card p {
  color: var(--muted);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--primary-soft);
}

.backup-icon {
  color: var(--primary-strong);
  background: var(--primary-soft);
}

.highlight-card {
  border-color: color-mix(in srgb, var(--cyan) 40%, var(--line));
}

.backup-highlight {
  border-color: color-mix(in srgb, var(--primary) 44%, var(--line));
}

.backup-section {
  padding-top: 38px;
  padding-bottom: 46px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.backup-layout {
  margin-bottom: 28px;
}

.backup-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.benefits {
  padding-top: 52px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

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

.benefit-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
}

.cta-section {
  padding: 82px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 40px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 49, 93, 0.96), rgba(13, 142, 166, 0.9)),
    linear-gradient(90deg, var(--primary), var(--cyan));
  box-shadow: var(--shadow-strong);
}

.cta-panel .eyebrow,
.cta-panel h2 {
  color: #fff;
}

.cta-panel h2 {
  margin-bottom: 0;
}

.contact {
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: end;
}

.contact-copy {
  max-width: 520px;
  margin-bottom: 0;
}

.contact-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  letter-spacing: 0.08em;
}

.contact-copy h2 {
  max-width: 410px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.35vw, 3.15rem);
  line-height: 1.08;
}

.contact-copy > p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-list a,
.contact-list > span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list a {
  color: var(--primary);
  font-weight: 800;
}

.contact-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card {
  display: grid;
  justify-items: center;
  align-content: center;
  align-self: end;
  gap: 10px;
  min-height: 260px;
  padding: 26px 36px;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--line));
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 22px 52px rgba(15, 55, 95, 0.09);
  text-align: center;
}

.whatsapp-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--whatsapp-soft);
  color: var(--whatsapp);
}

.whatsapp-badge svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.2;
}

.contact-card > p {
  max-width: 400px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-card .button-whatsapp {
  min-width: 268px;
  min-height: 44px;
  margin-top: 0;
  padding-inline: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.footer-inner {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

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

@media (min-width: 861px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1060px) {
  .main-nav a {
    font-size: 0.86rem;
    padding: 9px 8px;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 54px;
  }

  .hero-grid,
  .premium-grid,
  .benefits-grid,
  .contact-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .contact-card {
    width: 100%;
    max-width: 680px;
  }

  .experience-panel {
    min-height: 220px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    position: relative;
  }

  .header-actions {
    position: static;
    display: flex;
    transform: none;
  }

  .theme-toggle {
    display: none;
  }

  .menu-toggle {
    position: static;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: none;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 14px;
    font-size: 0.95rem;
  }

  .header-actions .menu-toggle {
    display: inline-grid !important;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 28px, 1160px);
    max-width: 1160px;
  }

  .section {
    padding: 56px 0;
  }

  .ged-section,
  .backup-section {
    padding-top: 34px;
  }

  .brand-logo {
    width: 160px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    font-size: 2.24rem;
  }

  .hero-text {
    font-size: 1.05rem;
    overflow-wrap: anywhere;
  }

  .service-grid,
  .feature-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .premium-card,
  .service-card,
  .cta-panel,
  .contact-card {
    padding: 24px;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-copy h2 {
    font-size: 2.08rem;
  }

  .contact-copy > p,
  .contact-card > p {
    font-size: 1rem;
  }

  .contact-card {
    min-height: auto;
    border-radius: 16px;
  }

  .contact-card .button-whatsapp {
    width: min(100%, 300px);
  }

  .button-row {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 220px;
    min-width: 0;
  }

  .hero-copy,
  .hero-points,
  .hero-points a,
  .button-row,
  .hero-visual {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.96rem;
  }

  h2 {
    font-size: 1.72rem;
  }

}

@media (max-width: 460px) {
  .header-inner {
    gap: 10px;
  }

  .icon-button,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .header-actions .menu-toggle {
    position: fixed;
    top: 15px;
    left: clamp(266px, 86vw, 336px);
    z-index: 60;
  }

  .brand-logo {
    width: 136px;
  }

  .container {
    width: calc(100% - 28px);
    max-width: 362px;
  }

  .button {
    width: 100%;
  }

  .hero-points a {
    width: 100%;
    border-radius: 8px;
  }

  .experience-panel strong {
    font-size: 3rem;
  }

}
