:root {
  --navy: #062f52;
  --navy-2: #041f37;
  --blue: #1669bd;
  --yellow: #f2e90b;
  --mint: #2ac7a8;
  --coral: #ff6b57;
  --ink: #071522;
  --muted: #5e6b77;
  --line: #dfe6ec;
  --paper: #f7fafc;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(3, 22, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 47, 82, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #20384f;
  font-size: 0.94rem;
  font-weight: 700;
}

nav a,
.footer-links a {
  text-decoration: none;
}

.header-action,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-action,
.btn-primary {
  color: var(--navy-2);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(242, 233, 11, 0.25);
}

.btn-quiet {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 47, 82, 0.14);
}

.btn-quiet.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px) clamp(36px, 6vw, 70px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 47, 82, 0.93), rgba(4, 31, 55, 0.8)),
    url("./assets/hero.png") center right / min(54vw, 540px) no-repeat,
    var(--navy);
  color: var(--white);
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background: linear-gradient(90deg, var(--yellow), var(--mint), var(--coral));
}

.hero-media {
  position: relative;
  min-height: 480px;
  order: 2;
}

.route-map {
  position: absolute;
  inset: 28px 0 0;
}

.route-map svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(242, 233, 11, 0.9);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 10 16;
}

.route-map circle {
  fill: var(--yellow);
  stroke: var(--white);
  stroke-width: 6;
}

.pin {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.pin-us {
  left: 7%;
  top: 50%;
}

.pin-br {
  right: 12%;
  top: 43%;
  background: var(--mint);
}

.floating {
  position: absolute;
  width: min(210px, 42vw);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating strong,
.floating small {
  display: block;
}

.floating small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
}

.product-a {
  left: 2%;
  top: 16%;
}

.product-b {
  right: 2%;
  top: 10%;
}

.product-c {
  right: 16%;
  bottom: 6%;
}

.hero-badge {
  position: absolute;
  left: 36%;
  top: 33%;
  width: min(180px, 30vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

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

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  font-weight: 800;
}

.commerce-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.commerce-strip div {
  min-height: 132px;
  padding: 26px;
  background: var(--paper);
}

.commerce-strip strong,
.commerce-strip span {
  display: block;
}

.commerce-strip strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.commerce-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 720px;
}

.section h2,
.final-cta h2 {
  color: var(--navy-2);
  font-size: clamp(2.2rem, 5vw, 5.3rem);
}

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

.service-card,
.testimonial,
.calculator,
.flow-step,
.mini-proof,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card.active,
.service-card:hover {
  border-color: rgba(22, 105, 189, 0.35);
  box-shadow: 0 22px 55px rgba(3, 22, 42, 0.1);
  transform: translateY(-3px);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(242, 233, 11, 0.38);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3,
.flow-step h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.55rem;
}

.service-card p,
.flow-step p,
.calculator-copy p,
.faq-list p,
.testimonial p {
  color: var(--muted);
  line-height: 1.62;
}

.service-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.flow-section,
.proof-section {
  background: var(--paper);
}

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

.flow-step {
  min-height: 260px;
  padding: 26px;
}

.flow-step span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 900;
}

.calculator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.calculator-copy {
  max-width: 680px;
}

.mini-proof {
  margin-top: 24px;
  padding: 22px;
  background: #fff9cf;
  border-color: rgba(242, 233, 11, 0.55);
}

.mini-proof strong,
.mini-proof span {
  display: block;
}

.mini-proof span {
  margin-top: 6px;
  color: #5b5700;
  line-height: 1.5;
}

.calculator {
  padding: 24px;
  box-shadow: var(--shadow);
}

.calculator label,
.calculator legend {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.calculator input[type="number"] {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.calculator fieldset {
  margin: 4px 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 700;
}

.calc-output {
  display: grid;
  gap: 4px;
  margin: 16px 0;
  padding: 20px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.calc-output span,
.calc-output small {
  color: rgba(255, 255, 255, 0.72);
}

.calc-output strong {
  font-size: 2.25rem;
  letter-spacing: 0;
}

.full {
  width: 100%;
}

.proof-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(220px, 0.7fr);
  gap: 16px;
  align-items: stretch;
}

.testimonial {
  padding: 28px;
}

.testimonial p {
  margin-top: 0;
  font-size: 1.08rem;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  margin-top: 4px;
  color: var(--muted);
}

.image-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.image-proof img {
  width: 100%;
  min-height: 156px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 47, 82, 0.96), rgba(22, 105, 189, 0.88)),
    var(--navy);
}

.final-cta h2 {
  max-width: 850px;
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--navy-2);
  color: var(--white);
}

.site-footer span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #20c268;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(32, 194, 104, 0.32);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
    background:
      linear-gradient(135deg, rgba(6, 47, 82, 0.96), rgba(4, 31, 55, 0.88)),
      var(--navy);
  }

  .hero-media {
    order: 0;
    min-height: 390px;
  }

  .commerce-strip,
  .service-grid,
  .flow,
  .calculator-section,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span {
    max-width: 148px;
    white-space: normal;
    line-height: 1.05;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-media {
    min-height: 340px;
  }

  .floating {
    width: 178px;
  }

  .product-a {
    left: 0;
    top: 10%;
  }

  .product-b {
    right: 0;
    top: 26%;
  }

  .product-c {
    right: 10%;
    bottom: 0;
  }

  .hero-badge {
    left: 28%;
    top: 37%;
    width: 132px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    display: none;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
