:root {
  color-scheme: light;
  --blue-950: #07182d;
  --blue-900: #0b2545;
  --blue-800: #103b66;
  --blue-650: #1d65a6;
  --blue-500: #3a91d8;
  --blue-100: #dceeff;
  --ink: #0b1727;
  --muted: #526477;
  --surface: rgba(255, 255, 255, .84);
  --surface-strong: rgba(255, 255, 255, .96);
  --line: rgba(29, 101, 166, .18);
  --shadow: 0 24px 70px rgba(7, 24, 45, .18);
  --radius: 28px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f3f5f7;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(circle at 18% 14%, rgba(58, 145, 216, .1), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(11, 37, 69, .08), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #f1f4f7 48%, #e5eaef 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='168' height='168' viewBox='0 0 168 168' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23103b66' stroke-opacity='.075' stroke-width='1.35'%3E%3Cpath d='M24 56h120M24 112h120M56 24v120M112 24v120'/%3E%3Ccircle cx='56' cy='56' r='8'/%3E%3Ccircle cx='112' cy='112' r='8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 168px 168px;
}

body::after {
  position: fixed;
  right: -12rem;
  bottom: -16rem;
  z-index: -1;
  width: min(52vw, 38rem);
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(58, 145, 216, .12), rgba(29, 101, 166, .05) 50%, transparent 70%);
  pointer-events: none;
}

a {
  color: inherit;
}

.site-shell {
  display: grid;
  min-width: 0;
  min-height: calc(100vh - 4.5rem);
  padding: clamp(1rem, 3vw, 2rem);
  place-items: center;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(100%, 1120px);
  min-width: 0;
  min-height: min(760px, calc(100vh - 8rem));
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(235, 247, 255, .74)),
    linear-gradient(135deg, rgba(58, 145, 216, .18), rgba(11, 37, 69, .08));
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -9rem;
  right: -9rem;
  width: min(44vw, 31rem);
  aspect-ratio: 1;
  border: 1px solid rgba(29, 101, 166, .16);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(58, 145, 216, .22), transparent 58%),
    repeating-radial-gradient(circle, rgba(16, 59, 102, .16) 0 1px, transparent 1px 24px);
}

.hero::after {
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(1rem, 5vw, 4rem);
  width: min(30vw, 18rem);
  aspect-ratio: 1;
  border-radius: 32% 68% 54% 46% / 46% 38% 62% 54%;
  background: linear-gradient(145deg, rgba(11, 37, 69, .1), rgba(58, 145, 216, .16));
}

.hero__content {
  min-width: 0;
  max-width: 700px;
  animation: reveal .65s ease-out both;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1.2rem;
  padding: .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, .74);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid rgba(29, 101, 166, .2);
  border-radius: 1.35rem;
  color: var(--blue-650);
  background: var(--surface-strong);
  box-shadow: 0 16px 36px rgba(16, 59, 102, .13);
}

.brand-mark svg {
  width: 3.5rem;
  height: 3.5rem;
}

h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(3.15rem, 8.5vw, 6.25rem);
  line-height: .94;
  letter-spacing: 0;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.hero__subtitle {
  margin: 1.15rem 0 0;
  color: var(--blue-800);
  font-size: clamp(1.35rem, 3.1vw, 2.25rem);
  font-weight: 850;
  line-height: 1.16;
}

.hero__lead {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  color: var(--blue-900);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero__note {
  max-width: 62ch;
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.contact-card {
  display: grid;
  width: fit-content;
  max-width: 100%;
  gap: 1rem;
  margin-top: 1.65rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(29, 101, 166, .16);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(7, 24, 45, .08);
}

.contact-card__item {
  display: grid;
  grid-template-columns: 1.15rem auto 1fr;
  align-items: center;
  gap: .55rem .7rem;
  min-height: 2.2rem;
}

.contact-card__item svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--blue-650);
}

.contact-card__label {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.contact-card__link {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  color: var(--blue-950);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-card__link:focus-visible,
.site-footer a:focus-visible {
  border-radius: .35rem;
  outline: 3px solid rgba(58, 145, 216, .5);
  outline-offset: 4px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  will-change: transform;
}

.button svg {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
}

.button--whatsapp {
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .28);
}

.button--phone {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 14px 30px rgba(29, 101, 166, .24);
}

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

.button--whatsapp:hover {
  background: #1fbd5a;
  box-shadow: 0 18px 36px rgba(37, 211, 102, .34);
}

.button--phone:hover {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-650));
  box-shadow: 0 18px 36px rgba(29, 101, 166, .32);
}

.button:focus-visible {
  outline: 3px solid rgba(58, 145, 216, .55);
  outline-offset: 4px;
}

.site-footer {
  min-height: 4.5rem;
  padding: 0 1rem 1.4rem;
  color: rgba(11, 23, 39, .72);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: .95rem;
}

.site-footer a {
  color: var(--blue-800);
  font-weight: 850;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: .2em;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-shell {
    display: block;
    min-height: calc(100vh - 4rem);
    padding: .75rem;
  }

  .hero {
    width: 100%;
    max-width: calc(100vw - 1.5rem);
    min-height: auto;
    padding: clamp(1.4rem, 8vw, 2.2rem);
    border-radius: 22px;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero::before {
    top: -6rem;
    right: -8rem;
    width: 22rem;
  }

  .hero::after {
    width: 12rem;
    opacity: .65;
  }

  .brand-mark {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1.1rem;
  }

  .brand-mark svg {
    width: 3rem;
    height: 3rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.82rem, 12.8vw, 3.6rem);
  }

  .hero__lead,
  .hero__note {
    max-width: min(100%, 20rem);
    line-height: 1.62;
  }

  .contact-card {
    width: 100%;
    max-width: min(100%, 20rem);
  }

  .contact-card__item {
    grid-template-columns: 1.15rem 1fr;
  }

  .contact-card__link {
    grid-column: 2;
  }

  .actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
    max-width: min(100%, 20rem);
    min-height: 3.65rem;
    padding: 1rem 1.1rem;
  }

  .site-footer {
    min-height: 4rem;
    padding-bottom: 1.1rem;
  }
}

@media (max-width: 390px) {
  .eyebrow {
    width: min(100%, 20rem);
    max-width: 100%;
    font-size: .74rem;
    text-align: center;
  }

  h1 {
    font-size: 2.65rem;
  }
}
