:root {
  --blue-950: #162a66;
  --blue-900: #203980;
  --blue-800: #29479a;
  --blue-600: #38aef6;
  --blue-500: #58c7ff;
  --ink: #17306d;
  --text: #4d5f87;
  --white: #ffffff;
  --line: #dbe5f8;
  --shadow: 0 24px 60px rgba(18, 42, 104, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(88, 199, 255, 0.06), transparent 26%),
    radial-gradient(circle at left center, rgba(32, 57, 128, 0.05), transparent 28%);
  z-index: -1;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #152031;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.topbar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 10px 0;
}

.topbar__inner p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32, 57, 128, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  position: relative;
}

.brand img {
  width: 112px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.nav-toggle__button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle__button span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--blue-950);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue-800);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.button--header,
.button--primary {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: var(--white);
}

.button--light {
  background: #ffffff;
  color: var(--blue-950);
}

.button--whatsapp {
  min-width: 220px;
  background: #25d366;
  color: #ffffff;
  gap: 12px;
}

.button__icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  min-height: 82vh;
  background: #0f1728;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 22, 52, 0.88) 0%, rgba(10, 22, 52, 0.56) 52%, rgba(10, 22, 52, 0.36) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 130px;
  color: #ffffff;
}

.eyebrow,
.section-tag {
  margin: 0 0 14px;
  color: var(--blue-500);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag--light {
  color: #91dcff;
}

.hero h1,
.about h2,
.section-heading h2,
.split-highlight h2,
.help-strip h2,
.faq h2,
.instagram__intro h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 0.94;
}

.hero__copy {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.hero__content h1 {
  max-width: 12ch;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-features {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

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

.feature-card {
  padding: 28px 26px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(32, 57, 128, 0.06);
}

.feature-card span,
.service-text-card span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: #ffffff;
  font-size: 1.45rem;
}

.feature-card strong,
.service-text-card h3,
.process-steps h3,
.site-footer h3 {
  display: block;
  margin-top: 18px;
  color: var(--blue-950);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.feature-card p,
.section-heading p,
.about__copy p,
.service-text-card p,
.process-steps p,
.faq__copy p,
.site-footer p,
.instagram__intro p {
  line-height: 1.8;
}

.about,
.services,
.process,
.faq {
  padding: 120px 0;
}

.about {
  padding-top: 132px;
}

.about__inner,
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img,
.faq__media img,
.services-layout__media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: 26px;
  bottom: -32px;
  padding: 24px 26px;
  border-radius: 10px;
  background: var(--blue-950);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}

.about h2,
.section-heading h2,
.faq h2,
.instagram__intro h2 {
  color: var(--blue-950);
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.about__copy h2,
.section-heading h2,
.faq__copy h2,
.instagram__intro h2 {
  max-width: none;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-top: 14px;
  padding-left: 28px;
}

.check-list li::before {
  content: "\F26E";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-500);
  font-family: bootstrap-icons;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.9);
}

.about-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.about-contact__seal {
  min-width: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
}

.about-contact__seal strong {
  display: block;
  color: var(--blue-950);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
}

.about-contact__info small {
  display: block;
  color: #7d90b8;
}

.about-contact__info a {
  color: var(--blue-600);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.services {
  background: linear-gradient(180deg, #eef3fc 0%, #f8fbff 100%);
}

.section-heading {
  margin: 0 auto 52px;
  text-align: center;
}

.services-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.services-layout__media {
  position: sticky;
  top: 128px;
}

.services-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-text-card {
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(32, 57, 128, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-text-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(18, 42, 104, 0.18);
}

.stats-band {
  padding: 0 0 80px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #f8fbff 50%, transparent 50%, transparent 100%);
}

.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.09), transparent 22%),
    linear-gradient(135deg, var(--blue-950), var(--blue-600));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.stats-band__inner article {
  position: relative;
}

.stats-band__inner article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  right: -9px;
  bottom: 14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stats-band article {
  text-align: center;
}

.stats-band i {
  font-size: 2rem;
}

.stats-band strong {
  display: block;
  margin-top: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
}

.split-highlight {
  padding: 90px 0 110px;
  background:
    linear-gradient(rgba(22, 42, 102, 0.95), rgba(22, 42, 102, 0.95)),
    url("lavando-carro.png") center/cover no-repeat;
}

.split-highlight__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.split-highlight__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: center;
}

.split-highlight__content img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.help-strip {
  padding: 0 0 120px;
}

.help-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  border-radius: 10px;
  background: var(--blue-950);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(18, 42, 104, 0.22);
}

.help-strip h2 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.help-strip p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.video-cta {
  position: relative;
  min-height: 520px;
  margin: 0 0 120px;
  overflow: hidden;
  background: var(--blue-950);
}

.video-cta__video,
.video-cta__overlay {
  position: absolute;
  inset: 0;
}

.video-cta__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cta__overlay {
  background:
    linear-gradient(180deg, rgba(10, 22, 52, 0.68), rgba(10, 22, 52, 0.74)),
    linear-gradient(90deg, rgba(10, 22, 52, 0.72), rgba(56, 174, 246, 0.2));
}

.video-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 120px 0;
  color: #ffffff;
}

.video-cta__content h2 {
  max-width: 14ch;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.video-cta__content p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.85;
}

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

.process-steps article {
  position: relative;
  padding: 36px 26px 28px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(32, 57, 128, 0.06);
}

.process-steps span {
  position: absolute;
  right: 18px;
  top: -14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.process-steps i {
  font-size: 2.6rem;
  color: var(--blue-950);
}

.faq {
  background:
    linear-gradient(180deg, var(--blue-600) 0, var(--blue-600) 32%, #ffffff 32%, #ffffff 100%);
}

.faq-list details {
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(32, 57, 128, 0.06);
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-950);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.instagram {
  padding: 0 0 80px;
  background: #ffffff;
}

.instagram__intro {
  margin-bottom: 28px;
  text-align: center;
}

.instagram__embed {
  width: 100%;
  padding: 0 0 20px;
  background: #ffffff;
}

.brands-strip {
  padding: 0 0 110px;
  background: #ffffff;
}

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

.brand-logo {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-logo img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(18, 42, 104, 0.12);
}

.site-footer {
  padding: 72px 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
  color: #ffffff;
}

.site-footer p,
.site-footer h3 {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-logo {
  width: 110px;
  margin-bottom: 18px;
}

@media (max-width: 1100px) {
  .site-header__inner,
  .about__inner,
  .faq__inner,
  .split-highlight__inner,
  .footer-grid,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-text-grid,
  .stats-band__inner,
  .brands-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .services-layout__media {
    position: static;
  }

  .hero-cards,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .split-highlight__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .topbar__inner,
  .header-cta,
  .help-strip__inner,
  .about-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
  }

  .nav-toggle__button {
    display: inline-flex;
    justify-self: end;
    order: 2;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 0;
    padding: 10px 20px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(18, 42, 104, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle:checked + .nav-toggle__button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle__button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle__button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-cards,
  .services-text-grid,
  .process-steps,
  .stats-band__inner,
  .brands-strip__inner {
    grid-template-columns: 1fr;
  }

  .video-cta {
    min-height: auto;
    margin-bottom: 100px;
  }

  .video-cta__content {
    padding: 88px 0;
  }

  .stats-band__inner article:not(:last-child)::after {
    display: none;
  }

  .button,
  .button--whatsapp {
    width: 100%;
  }

  .hero__content {
    padding: 90px 0 90px;
  }

  .hero-features {
    margin-top: 32px;
  }

  .about__media img,
  .faq__media img,
  .services-layout__media img {
    min-height: 320px;
    height: 320px;
  }
}
