:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #0a1d3f;
  --muted: #50617f;
  --navy: #0c2248;
  --navy-strong: #07142d;
  --orange: #f07b2d;
  --orange-dark: #d7671d;
  --ok: #2dbf69;
  --ok-dark: #249756;
  --line: #dbe3ef;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(10, 29, 63, 0.08);
  --shadow-strong: 0 18px 34px rgba(10, 29, 63, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#missao,
#como-funciona,
#atendimento,
#contato,
#orcamento {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.top-contact {
  background: var(--navy-strong);
  color: #c8d7f6;
  font-size: 0.9rem;
}

.top-contact-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-contact-items {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.top-contact a:hover {
  color: #fff;
}

.top-social a {
  font-weight: 700;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  margin-right: auto;
}

.brand-logo {
  width: 238px;
  height: 72px;
  object-fit: cover;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 800;
}

.nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a:hover {
  color: var(--orange);
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.76rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-accent {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(240, 123, 45, 0.32);
}

.btn-accent:hover {
  background: var(--orange-dark);
}

.btn-whatsapp {
  color: #fff;
  background: var(--ok);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: var(--ok-dark);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.13);
}

.btn-outline-dark {
  color: var(--ink);
  border: 1px solid #b5c4dc;
  background: #fff;
}

.btn-outline-dark:hover {
  background: #f6f8fc;
}

.btn-header {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem 0.82rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 3.5rem;
  background: linear-gradient(120deg, #0e2c5f 0%, #10254b 48%, #0a1834 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 14%, rgba(240, 123, 45, 0.25), transparent 38%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.8rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffceac;
  font-weight: 800;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0.4rem 0 0.85rem;
  font-family: "Sora", sans-serif;
  color: #fff;
  line-height: 1.1;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  max-width: 18ch;
}

.hero p {
  margin: 0;
  color: #deebff;
  font-size: 1rem;
  max-width: 45ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero-points {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  color: #d6e7ff;
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  margin-right: 0.45rem;
  color: var(--orange);
}

.hero-image {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(4, 14, 34, 0.42);
  background: #dfe8f6;
}

.van-base {
  width: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: #fdfefe;
}

.trust-grid h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.trust-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section {
  padding: 4.2rem 0;
}

.section-light {
  background: #f0f4fa;
}

.section-head {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.section-head p {
  margin: 0.65rem auto 0;
  color: var(--muted);
  max-width: 68ch;
}

.section-mission {
  background: linear-gradient(180deg, #f6f9ff, #f1f6ff);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.mission-card,
.mission-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.mission-card {
  background: #fff;
}

.mission-eyebrow {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.mission-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.mission-card p {
  margin: 0.9rem 0 0;
  line-height: 1.62;
  color: var(--muted);
}

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

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e6efff;
  color: #174eaa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.step h3 {
  margin: 0.68rem 0 0.35rem;
  font-family: "Sora", sans-serif;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  margin-top: 0.4rem;
}

.service-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #121a58;
  transform: rotate(45deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.service-icon {
  transform: rotate(-45deg);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

.service-item h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.service-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.collection-cta {
  padding-top: 0;
}

.collection-wrap {
  border-radius: 16px;
  border: 1px solid #cfdced;
  background: linear-gradient(120deg, #ffffff 0%, #f4f8ff 58%, #ecf2fc 100%);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.collection-wrap .eyebrow {
  color: #1c5bc0;
}

.collection-wrap h2 {
  margin: 0.4rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
}

.collection-wrap p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.collection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.contact-list {
  margin: 1.2rem 0 1.3rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.quote-form {
  background: linear-gradient(160deg, #16386f, #0e2248);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 16px 34px rgba(7, 20, 45, 0.3);
}

.quote-form h3 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
}

.quote-form label {
  display: block;
  margin: 0.75rem 0 0.35rem;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.78rem 0.8rem;
  font: inherit;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #dbe8ff;
}

.quote-form .btn {
  width: 100%;
  margin-top: 0.95rem;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.7rem 0 0;
}

.cta-final {
  padding: 3.4rem 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(122deg, #f08a43, #dc7330, #ca6322);
}

.cta-final h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.cta-final p {
  margin: 0.75rem 0 1.2rem;
  color: #fff3e9;
}

.site-footer {
  background: var(--navy-strong);
  color: #d3e1fc;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.4rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.75rem;
  color: #fff;
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  min-width: 128px;
  padding: 0.68rem 0.86rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 800;
  color: #fff;
  background: var(--ok);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  font-size: 0.95rem;
}

.whatsapp-float:hover {
  background: var(--ok-dark);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .collection-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .top-contact {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 4vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .btn-header {
    display: none;
  }

  .hero-grid,
  .trust-grid,
  .mission-grid,
  .steps,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

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

  .brand-logo {
    width: 178px;
    height: 56px;
  }

  .section {
    padding: 3.8rem 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-width: 124px;
    font-size: 0.92rem;
    padding: 0.78rem 0.9rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1140px, 94vw);
  }

  .hero h1 {
    font-size: clamp(1.5rem, 7.8vw, 2rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .van-base {
    min-height: 250px;
  }

  .quote-form {
    padding: 1rem;
  }

}
