/* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  background: linear-gradient(214deg, rgba(2, 40, 115, 1) 0%, rgba(1, 22, 64, 1) 50%, rgba(13, 13, 13, 1) 100%);
  overflow: hidden;
}

body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  color: #f7f9fc;
  background: transparent;
}

.page-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.page-header {
  padding: 0.7rem 2rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.site-nav a {
  color: #f7f9fc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.page-content {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(320px, 1.25fr);
  grid-template-areas:
    "hero copy"
    "hero services"
    "hero cta";
  gap: clamp(0.75rem, 2vw, 1.4rem) clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 1.6vh, 1rem) 2rem;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  grid-area: hero;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
}

.hero img {
  width: min(100%, 260px, 34vh);
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-copy {
  grid-area: copy;
  max-width: 760px;
  text-align: left;
  margin: 0;
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: #fee9bf;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.hero-copy p {
  margin: 0.7rem 0 0;
  max-width: 600px;
  color: rgba(247, 249, 252, 0.85);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
}

.services {
  grid-area: services;
  width: 100%;
  max-width: 760px;
  margin-top: 0;
}

.services h2 {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  text-transform: capitalize;
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.services li {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.services li a {
  display: block;
  width: 100%;
  min-height: 3.15rem;
  padding: 0.72rem 0.9rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.services li a:hover {
  transform: translateY(-2px);
  background: rgba(254, 233, 191, 0.18);
}

.cta {
  grid-area: cta;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-secondary {
  background: #fee9bf;
  color: #0d0d0d;
  box-shadow: 0 14px 40px rgba(255, 233, 191, 0.22);
}

.site-footer {
  text-align: center;
  padding: 0.7rem 1rem;
  color: rgba(247, 249, 252, 0.8);
  font-size: 0.9rem;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
}

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

@media (max-height: 720px) {
  .page-header,
  .site-footer {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .hero img {
    width: min(210px, 28vh);
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.45rem);
  }

  .hero-copy p {
    margin-top: 0.45rem;
  }

  .services li a {
    min-height: 2.75rem;
    padding: 0.55rem 0.8rem;
  }
}

@media (max-width: 640px) {
  html, body {
    overflow: hidden;
  }

  .page-shell {
    min-height: 0;
    height: 100svh;
    overflow: hidden;
  }

  .page-header {
    padding: 0.45rem 1rem;
  }

  .page-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "copy"
      "services"
      "cta";
    gap: 0.45rem;
    align-content: start;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .hero img {
    width: min(120px, 18vh);
  }

  .hero-copy,
  .services h2 {
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 0.25rem;
    font-size: 0.68rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.35rem, 8vw, 1.75rem);
    line-height: 1.05;
  }

  .hero-copy p {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .site-nav ul {
    justify-content: center;
    gap: 0.55rem;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .services ul {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .services h2 {
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
  }

  .services li a {
    min-height: 2.15rem;
    padding: 0.42rem 0.65rem;
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .button {
    width: 100%;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
  }

  .site-footer {
    padding: 0.45rem 0.7rem;
    font-size: 0.75rem;
  }
}
