﻿:root {
  /* primary background taken from theme-color (#0e1726) of the reference site */
  --bg: #0e1726;
  /* panels a little lighter/darker than the bg to maintain contrast */
  --panel: #111b2c;
  --panel-2: #0d1824;
  /* text should be white on the dark background */
  --text: #ffffff;
  /* muted text / secondary copy */
  --muted: #adb8c0;
  --line: rgba(255, 255, 255, 0.12);
  /* keep the original teal accent used by the reference site */
  --accent: #0089b3;
  --accent-2: #1872d8;
  --warn: #ff7a59;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(0, 92, 179, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(24, 107, 216, 0.14), transparent 35%),
    linear-gradient(160deg, #07111f 0%, #0d1a2d 45%, #0a1527 100%);
  color: var(--text);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding: 4rem 0 3rem;
}

.hero__content {
  padding-top: 0.5rem;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  max-width: 14ch;
}

.hero__lead {
  margin: 1rem 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.benefits li {
  position: relative;
  padding-left: 1.4rem;
  color: #dce8f5;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(0, 179, 164, 0.15);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

#botoes .container {
  text-align: center;
}

.section-title {
  font-size: 2em;
  margin: 50px 0 30px;
}

/* new button grid layout for the trust links */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 1fr; /* equal height rows */
  gap: 1rem;
  justify-items: center;
  background: #f4f8fc;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: 14px;
}

/* ensure each span fills its grid cell */
.trust span {
  display: flex;
  width: 100%;
}

.trust span {
  width: 100%;
}

.trust a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fff;
  color: #0e1726;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.trust a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.trust .icon {
  font-size: 2.25rem;
  margin: 0px 0px 0px 10px;
  max-width: 20%;
}

.form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.form-card__intro {
  margin: 0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.lead-form {
  display: grid;
  gap: 0.55rem;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #d9e7f6;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 23, 39, 0.85);
  color: #fff;
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #94aac1;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(0, 179, 164, 0.8);
  box-shadow: 0 0 0 4px rgba(0, 179, 164, 0.16);
}

.form-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.25);
  outline-offset: 2px;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  color: #062025;
  background: linear-gradient(135deg, #1994ea, #188bd8);
  box-shadow: 0 8px 22px rgba(24, 123, 216, 0.2);
}

.btn--ghost {
  color: #eff6ff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.btn--whatsapp {
  color: #062111;
  background: linear-gradient(135deg, #54e088, #22c55e);
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.22);
}

.form-message {
  min-height: 1.25rem;
  margin: 0.1rem 0 0;
  color: #cfe0f1;
  font-size: 0.9rem;
}

.section {
  padding: 4rem 0;
}

.section--light {
  background: #f4f8fc;
}

.section--light .servicos {
  position: relative;
  margin: 1.75rem auto;
  padding: 1.6rem 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96)),
    linear-gradient(135deg, rgba(0, 137, 179, 0.08), rgba(24, 114, 216, 0.04));
  border: 1px solid rgba(13, 61, 103, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(13, 32, 53, 0.08);
  overflow: hidden;
}

.section--light .servicos::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d8eb6, #2e7de0);
}

.servicos p,
.servicos h2,
.servicos ul,
.servicos li {
  color: #051e38 !important;
}

.servicos h2 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(5, 30, 56, 0.1);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.2;
}

.servicos h2::before {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #dff4fb, #dfeaff);
  box-shadow: inset 0 0 0 1px rgba(13, 61, 103, 0.08);
  font-size: 1.3rem;
}

#hab_radar h2::before {
  content: "🚀";
}

#hab_radar_exp h2::before {
  content: "📤";
}

#hab_radar_imp h2::before {
  content: "📦";
}

#hab_radar_rural h2::before {
  content: "🌾";
}

#radar_ilimitado h2::before {
  content: "📈";
}

#radar_limitado h2::before {
  content: "📊";
}

#revisao_ilimitada h2::before {
  content: "🔎";
}

#revisao_limitada h2::before {
  content: "🧾";
}

.servicos p {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #28445f !important;
}

.servicos p:last-child,
.servicos ul:last-child {
  margin-bottom: 0;
}

.servicos p > strong:first-child,
.servicos li strong:first-child {
  color: #0a5e87;
}

.servicos ul {
  margin: 0.35rem 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.servicos li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.45rem;
  background: rgba(0, 137, 179, 0.05);
  border: 1px solid rgba(0, 137, 179, 0.08);
  border-radius: 14px;
  line-height: 1.6;
}

.servicos li::before {
  content: "•";
  position: absolute;
  left: 0.95rem;
  top: 0.62rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d8eb6, #2e7de0);
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
}

.section--light hr {
  width: min(100% - 2rem, var(--container));
  margin: 0.75rem auto;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 61, 103, 0.18), transparent);
}
.section--dark {
  background: linear-gradient(180deg, #0b1524, #09101d);
  color: #eef5ff;
}

.section__heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: #0d1a2d;
}

.section__heading .eyebrow {
  color: #1994ea;
}

.steps {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(17, 32, 51, 0.05);
}

.step-card__number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3da4e9, #1075b9);
  color: #fff;
  font-weight: 700;
}

.step-card h3 {
  margin: 0.75rem 0 0.35rem;
  color: #0f2035;
}

.step-card p {
  margin: 0;
  color: #51657c;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: 16px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.cta-band p:last-child {
  margin: 0.4rem 0 0;
  color: #c6d6e9;
}

/* Back to top button */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1994ea, #188bd8);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(24, 123, 216, 0.3);
  z-index: 999;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(24, 123, 216, 0.4);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 2.5rem;
    height: 2.5rem;
    bottom: calc(1rem + 100px);
    right: 1rem;
    font-size: 1.2rem;
  }
}

.site-footer {
  background: #07111f;
  color: #d6e2f0;
  padding: 1.2rem 0 5.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid-top {
  display: block;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
}

.site-footer__grid p {
  margin: 0.35rem 0 0;
  color: #9db0c5;
}

.site-footer__contacts {
  display: grid;
  gap: 0.25rem;
  text-align: right;
}

.site-footer__contacts a {
  color: #d8e8fa;
  text-decoration: none;
}

.mobile-footer-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.5rem;
  background: rgba(7, 17, 31, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-footer-nav__item {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  color: #ebf4fe;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.45rem 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.mobile-footer-nav__item .icon {
  width: 1.2rem;
  height: 1.2rem;
  display: grid;
  place-items: center;
}

.mobile-footer-nav__item .icon svg {
  width: 100%;
  height: 100%;
}

.mobile-footer-nav__item--wa {
  color: #d8ffea;
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.25);
}
.form-card {
    /*margin-top: 150px;*/
  }
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 2.5rem;
  }

  .hero h1 {
    max-width: 18ch;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__grid-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__contacts {
    text-align: left;
  }
  .form-card {
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 5.25rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-footer-nav {
    display: grid;
  }

  .site-footer {
    padding-bottom: 1.2rem;
  }
  .form-card {
    margin-top: 0px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

