@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #031b31;
  --navy-soft: #052b49;
  --card: #07395f;
  --blue: #087ce5;
  --lime: #d8ec31;
  --white: #f8fbff;
  --muted: #c5d4e1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--navy); color: var(--white); font-family: Manrope, Arial, sans-serif; }

.site-header {
  height: 100px;
  padding: 0 3.8%;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 30px;
  background: var(--navy);
}
.brand { display: block; width: 250px; height: 104px; overflow: hidden; }
.brand img { display: block; width: 270px; max-width: none; height: auto; transform: translate(-19px, -13px); }
.site-header nav { display: flex; justify-content: center; gap: 42px; }
.site-header nav a { color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; padding: 12px 0; }
.site-header nav a.active { border-bottom: 2px solid var(--lime); }
.menu-toggle { display: none; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid #389af0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.header-cta { white-space: nowrap; }

.hero {
  height: 565px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 27, 49, .08) 0%, rgba(3, 27, 49, .02) 48%, transparent 66%),
    url('hero-gustavo.png') right top / auto 100% no-repeat,
    #031b31;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    radial-gradient(circle at 39% 24%, #168cf1 0 2px, transparent 3px) 0 0 / 18px 18px;
  mask-image: linear-gradient(90deg, transparent 24%, #000 38%, transparent 53%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 57px 4%;
  background: linear-gradient(90deg, rgba(2, 20, 37, .1) 0%, rgba(2, 20, 37, .03) 52%, transparent 68%);
}
.kicker, .section-label { margin: 0 0 22px; color: var(--lime); font-size: 14px; font-weight: 500; }
.kicker::before, .section-label::before { content: ""; display: inline-block; width: 34px; height: 3px; margin: 0 16px 4px 0; background: var(--lime); }
.hero h1 { margin: 0; max-width: 680px; font-size: clamp(50px, 4.25vw, 66px); line-height: 1.05; letter-spacing: -.055em; }
.lead { margin: 22px 0 25px; color: #e9f1f7; font-size: 18px; line-height: 1.55; }
.experience { display: flex; align-items: center; gap: 13px; width: max-content; padding: 12px 18px; border: 1px solid #32698e; border-radius: 8px; }
.shield { width: 24px; height: 24px; display: grid; place-items: center; border: 2px solid var(--lime); border-radius: 50%; color: var(--lime); font-size: 12px; }

.services { padding: 22px 3.8% 36px; background: linear-gradient(120deg, var(--navy-soft), var(--navy)); }
.section-label { margin-bottom: 15px; color: #20a0f5; font-size: 11px; letter-spacing: .24em; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-grid article { min-height: 258px; padding: 18px 22px 27px; position: relative; border: 1px solid #1477ba; border-radius: 10px; background: linear-gradient(145deg, #08385e, #052640); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); }
.service-icon svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 1.8; }
.service-grid h2 { margin: 17px 0 10px; font-size: 18px; letter-spacing: -.035em; }
.service-grid p { margin: 0; color: #e7f0f7; font-size: 13px; line-height: 1.62; }
.service-grid article > i { position: absolute; bottom: 20px; left: 50%; width: 48px; height: 3px; transform: translateX(-50%); background: var(--lime); }

.about { padding: 90px 8%; display: grid; grid-template-columns: 1fr 1.2fr; gap: 85px; background: #f5f9fc; color: #0a2a44; }
.about h2, .contact h2 { margin: 0; font-size: 44px; line-height: 1.1; letter-spacing: -.045em; }
.about > div:last-child { color: #50687a; font-size: 16px; line-height: 1.72; }
.about > div:last-child p:first-child { margin-top: 0; }
.section-label.dark { color: var(--blue); }
.benefits { padding: 68px 8%; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid div { padding: 24px; border: 1px solid #176da8; border-radius: 10px; }
.benefit-grid strong, .benefit-grid span { display: block; }
.benefit-grid strong { margin-bottom: 8px; font-size: 20px; }
.benefit-grid span { color: var(--muted); font-size: 13px; }
.contact { padding: 90px 20px; text-align: center; background: #06253e; }
.contact .section-label::before { display: none; }
.contact > p:not(.section-label) { margin: 21px 0 29px; color: var(--muted); line-height: 1.7; }
footer { padding: 27px 4%; display: flex; justify-content: space-between; color: #9eb5c6; font-size: 12px; }
footer a { color: #fff; text-decoration: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 240px 1fr auto; padding: 0 24px; }
  .brand { width: 225px; height: 94px; }
  .brand img { width: 243px; transform: translate(-17px, -12px); }
  .site-header nav { gap: 20px; }
  .header-cta { padding: 0 14px; }
  .hero h1 { font-size: 52px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .site-header { height: 80px; grid-template-columns: 1fr auto; padding: 0 18px; }
  .brand { width: 210px; height: 80px; }
  .brand img { width: 227px; transform: translate(-16px, -11px); }
  .menu-toggle { display: block; padding: 9px 12px; border: 1px solid #2a668e; border-radius: 7px; background: none; color: #fff; }
  .site-header nav { display: none; position: absolute; z-index: 10; top: 76px; left: 16px; right: 16px; padding: 15px 20px; flex-direction: column; gap: 3px; border-radius: 10px; background: #073151; }
  .site-header nav.open { display: flex; }
  .header-cta { display: none; }
  .hero { height: 690px; background-position: 68% bottom; background-size: auto 72%; }
  .hero-inner { padding: 42px 22px; background: linear-gradient(180deg, rgba(3,27,49,.98), rgba(3,27,49,.92) 62%, rgba(3,27,49,.35)); }
  .hero h1 { font-size: 43px; }
  .lead { font-size: 16px; }
  .desktop { display: none; }
  .services { padding: 38px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .about { padding: 64px 24px; grid-template-columns: 1fr; gap: 30px; }
  .benefits { padding: 58px 24px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .contact { padding: 68px 22px; }
  footer { padding: 25px 20px; flex-direction: column; gap: 12px; }
}
@media (max-width: 460px) {
  .brand { width: 185px; height: 75px; }
  .brand img { width: 200px; transform: translate(-14px, -10px); }
  .hero h1 { font-size: 37px; }
  .benefit-grid { grid-template-columns: 1fr; }
}
