:root {
  --black: #070807;
  --ink: #10110f;
  --panel: #151613;
  --muted: #6f716d;
  --line: rgba(238, 141, 45, .34);
  --orange: #f18a22;
  --orange-dark: #c86518;
  --gold: #f2b660;
  --white: #ffffff;
  --soft: #f6f6f3;
  --shadow: 0 22px 70px rgba(0, 0, 0, .45);
  --glow: 0 0 22px rgba(241, 138, 34, .42);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 42px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(7, 8, 7, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 72px;
  display: grid;
  grid-template-columns: 210px 1fr 230px;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 188px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #f5f5ef;
  font-size: 12px;
  font-weight: 500;
}

.main-nav a {
  opacity: .92;
  transition: color .25s ease, opacity .25s ease;
}

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

.whatsapp-top {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffae4e, #ef8521);
  color: #1c1006;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(241, 138, 34, .28);
}

.wa-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .22));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: transparent;
  border-radius: 7px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--orange);
}

.hero {
  position: relative;
  min-height: 535px;
  padding-top: 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 42%, rgba(241, 138, 34, .18), transparent 23%),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .08), transparent 17%),
    linear-gradient(180deg, #0b0c0b 0%, #050605 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background: url("../assets/images/bancada-bg.svg") center bottom / cover no-repeat;
  opacity: .48;
}

.tech-lines {
  position: absolute;
  inset: 72px 0 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(241, 138, 34, .95) 46%, transparent 47%) 72% 0 / 180px 210px no-repeat,
    linear-gradient(90deg, transparent 0 45%, rgba(241, 138, 34, .55) 46%, transparent 47%) 95% 0 / 150px 180px no-repeat,
    linear-gradient(180deg, transparent, rgba(241, 138, 34, .42), transparent) 91% 0 / 4px 160px no-repeat,
    linear-gradient(180deg, transparent, rgba(241, 138, 34, .38), transparent) 55% 40px / 3px 120px no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 390px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 24px;
}

.hero-copy {
  padding-top: 12px;
}

.hero-mini-logo {
  width: 150px;
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 640px;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
}

.hero h1 span,
.services h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero p {
  width: min(430px, 100%);
  margin-top: 26px;
  color: #f8f0e7;
  font-size: 16px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 17px;
  margin-top: 30px;
}

.hero-actions .btn {
  align-items: center;
}

.hero-actions .btn-primary {
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  min-width: 232px;
}

.hero-actions .btn-primary .wa-icon {
  grid-row: 1 / 3;
}

.hero-actions .btn-outline {
  display: grid;
  grid-template-columns: 1fr 18px;
  grid-template-rows: auto auto;
  column-gap: 10px;
  min-width: 218px;
  padding-right: 18px;
}

.hero-actions .btn-outline .btn-arrow {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--orange);
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 22px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn strong {
  font-weight: 600;
}

.btn small {
  display: block;
  color: inherit;
  font-size: 10px;
  font-weight: 500;
  opacity: .86;
}

.btn-primary {
  background: linear-gradient(180deg, #ffad49, #f08420);
  color: #190f07;
  box-shadow: var(--glow);
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(241, 138, 34, .5);
}

.btn.compact {
  width: fit-content;
  min-height: 52px;
  padding-inline: 18px;
}

.btn .wa-icon {
  width: 24px;
  height: 24px;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.hero-phone {
  position: absolute;
  right: 8px;
  top: -2px;
  width: min(510px, 96%);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, .78)) drop-shadow(0 0 28px rgba(241, 138, 34, .34));
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  50% { transform: translateY(-10px); }
}

.benefits-strip {
  position: relative;
  z-index: 3;
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.benefits-strip div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff7ed;
  font-size: 12px;
  font-weight: 500;
}

.benefits-strip img,
.mini-benefit img {
  width: 32px;
  height: 32px;
}

.floating-whatsapp {
  position: absolute;
  right: 70px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(11, 14, 12, .9);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .04), var(--glow);
  font-size: 12px;
}

.floating-whatsapp .wa-icon {
  width: 36px;
  height: 36px;
}

.light-section {
  background: var(--soft);
  color: #151515;
}

.dark-section {
  background: var(--black);
  color: #fff;
}

.section-head {
  padding-top: 32px;
  padding-bottom: 18px;
}

.split-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}

.eyebrow {
  color: #141414;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.eyebrow.orange {
  color: var(--orange);
}

.section-head h2,
.choice h2,
.reviews h2,
.bottom h2 {
  margin-top: 7px;
  font-size: clamp(26px, 3vw, 35px);
  line-height: 1.14;
  font-weight: 600;
}

.split-head p {
  max-width: 360px;
  margin-bottom: 14px;
  color: #343434;
  font-size: 12px;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-bottom: 36px;
}

.service-card {
  min-height: 306px;
  padding: 14px;
  background: #fff;
  border: 1px solid #deded9;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover,
.product-card:hover,
.review-card:hover,
.mini-benefit:hover {
  transform: translateY(-4px);
}

.service-card:hover {
  border-color: rgba(241, 138, 34, .38);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .11);
}

.service-title {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
}

.service-title img {
  width: 34px;
  height: 34px;
}

.service-title h3,
.product-card h3 {
  font-size: 11px;
  font-weight: 600;
}

.service-card > img {
  width: 100%;
  height: 118px;
  margin-top: 13px;
  object-fit: cover;
  border-radius: 6px;
  background: #111;
}

.service-card p {
  min-height: 62px;
  margin-top: 13px;
  color: #4d4e4a;
  font-size: 12px;
  font-weight: 400;
}

.service-card a {
  color: #111;
  font-size: 12px;
  font-weight: 600;
}

.choice {
  padding: 34px 0 30px;
  border-top: 1px solid #171917;
  border-bottom: 1px solid #171917;
}

.choice-grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 38px;
  align-items: center;
}

.choice-copy p {
  width: min(360px, 100%);
  margin: 18px 0;
  color: #d7d4cd;
  font-size: 13px;
  font-weight: 400;
}

.choice-copy ul {
  display: grid;
  gap: 7px;
  margin-bottom: 22px;
  list-style: none;
  color: #fff1df;
  font-size: 13px;
  font-weight: 500;
}

.choice-copy li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-size: 11px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 13px;
}

.gallery img,
.final-cta,
.process-phone {
  border: 1px solid rgba(241, 138, 34, .65);
  box-shadow: 0 0 28px rgba(241, 138, 34, .18);
}

.gallery-main {
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-stack {
  display: grid;
  gap: 13px;
}

.gallery-stack img {
  height: 173px;
  width: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.products {
  padding-bottom: 30px;
}

.product-carousel {
  position: relative;
  padding-bottom: 8px;
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 22px;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.product-card {
  flex: 0 0 calc((100% - 110px) / 6);
  min-width: 155px;
  padding: 14px 13px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 13px 32px rgba(0, 0, 0, .08);
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, .13);
}

.product-card img {
  width: 114px;
  height: 145px;
  margin: 0 auto 10px;
  object-fit: contain;
  border-radius: 7px;
}

.product-card p,
.product-card span {
  display: block;
  color: #343434;
  font-size: 10px;
  font-weight: 500;
}

.product-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  margin-top: 10px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffac4a, #ee8420);
  color: #1d1208;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.product-card a .wa-icon {
  width: 15px;
  height: 15px;
}

.carousel-btn {
  position: absolute;
  top: 49%;
  z-index: 4;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--glow);
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.reviews {
  padding: 30px 0 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.38fr .82fr repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}

.reviews-title h2 {
  font-size: 29px;
}

.google-score {
  text-align: center;
}

.google-score strong {
  font-size: 28px;
  line-height: 1;
}

.google-score strong span:nth-child(1),
.review-card span { color: #4285f4; }
.google-score strong span:nth-child(2) { color: #ea4335; }
.google-score strong span:nth-child(3) { color: #fbbc05; }
.google-score strong span:nth-child(4) { color: #4285f4; }
.google-score strong span:nth-child(5) { color: #34a853; }
.google-score strong span:nth-child(6) { color: #ea4335; }

.google-score b {
  display: block;
  margin-top: 3px;
  font-size: 28px;
}

.google-score div,
.review-card small {
  color: var(--gold);
  letter-spacing: 3px;
}

.google-score small {
  color: #e4dfd6;
  font-size: 10px;
  font-weight: 500;
}

.review-card {
  min-height: 154px;
  padding: 15px;
  color: #151515;
  background: #f7f7f7;
  border-radius: 8px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.review-card div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.review-card strong {
  flex: 1;
  font-size: 12px;
}

.review-card p {
  margin: 14px 0 8px;
  color: #30302e;
  font-size: 11px;
  font-weight: 400;
}

.all-reviews {
  text-align: center;
}

.all-reviews a {
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
}

.bottom {
  padding: 24px 0 26px;
  background:
    radial-gradient(circle at 82% 55%, rgba(241, 138, 34, .11), transparent 22%),
    #070807;
}

.benefit-blocks {
  display: grid;
  grid-template-columns: 1.28fr repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.benefit-intro h2,
.process-title h2,
.faq-block h2 {
  font-size: 27px;
}

.mini-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 88px;
  padding: 13px;
  background: linear-gradient(180deg, #11130f, #0b0c0a);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 7px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.mini-benefit:hover {
  border-color: rgba(241, 138, 34, .5);
}

.mini-benefit strong {
  color: #f6eee4;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 600;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.32fr repeat(4, 1fr);
  gap: 24px;
  padding: 25px 0 22px;
  overflow: hidden;
}

.step {
  position: relative;
  z-index: 2;
}

.step:not(:last-of-type)::after {
  content: "→";
  position: absolute;
  top: 31px;
  right: -17px;
  color: var(--orange);
}

.step span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}

.step h3 {
  margin: 9px 0 6px;
  color: #fff;
  font-size: 13px;
  line-height: 1.16;
}

.step p {
  color: #a5a399;
  font-size: 10px;
  font-weight: 400;
}

.process-phone {
  position: absolute;
  right: 8px;
  bottom: -45px;
  width: 185px;
  border: 0;
  opacity: .9;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.accordion {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  overflow: hidden;
}

.accordion button {
  width: 100%;
  height: 33px;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #11120f;
  color: #f3eee7;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.accordion button:hover,
.accordion button.active {
  background: #171710;
  color: #fff;
}

.accordion button::after {
  content: "+";
  float: right;
}

.accordion button.active::after {
  content: "-";
}

.accordion div {
  max-height: 0;
  overflow: hidden;
  background: #0b0c0a;
  transition: max-height .28s ease;
}

.accordion p {
  padding: 11px 16px;
  color: #cfc9bd;
  font-size: 11px;
}

.final-cta {
  min-height: 174px;
  display: grid;
  grid-template-columns: 215px 1fr;
  gap: 26px;
  align-items: center;
  padding: 18px 24px 18px 6px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10120f, #070807);
}

.final-cta img {
  width: 220px;
  filter: drop-shadow(0 0 25px rgba(241, 138, 34, .22));
}

.final-cta h2 {
  font-size: 29px;
}

.final-cta p {
  width: min(310px, 100%);
  margin: 8px 0 15px;
  color: #cfc9bd;
  font-size: 12px;
  font-weight: 400;
}

.final-cta .btn {
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 11px;
}

.final-cta .btn .wa-icon {
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
}

.site-footer {
  background: #060706;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 210px;
  gap: 24px;
  align-items: center;
}

.footer-grid span {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.footer-grid p {
  margin-top: 5px;
  color: #bdb8ae;
  font-size: 11px;
  font-weight: 400;
}

.footer-grid img {
  width: 185px;
  justify-self: end;
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: 170px 1fr 190px;
  }

  .main-nav {
    gap: 16px;
    font-size: 11px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .choice-grid,
  .faq-cta-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-basis: calc((100% - 44px) / 3);
  }

  .reviews-grid,
  .benefit-blocks,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-phone {
    display: none;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    grid-template-columns: 150px 1fr 46px;
    height: 64px;
  }

  .brand img {
    width: 145px;
  }

  .whatsapp-top {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    background: rgba(7, 8, 7, .96);
    border-bottom: 1px solid rgba(241, 138, 34, .2);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
    gap: 8px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero p {
    margin-top: 18px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    width: min(330px, 100%);
    margin-top: 22px;
  }

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

  .hero-visual {
    min-height: 290px;
  }

  .hero-phone {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto;
    width: min(350px, 92%);
  }

  .benefits-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .benefits-strip div {
    min-height: 48px;
    font-size: 11px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 12px;
  }

  .split-head {
    display: block;
  }

  .split-head p {
    margin-top: 12px;
  }

  .services-grid,
  .gallery,
  .reviews-grid,
  .benefit-blocks,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 14px;
  }

  .service-card {
    min-height: auto;
  }

  .gallery-main,
  .gallery-stack img {
    height: auto;
  }

  .product-card {
    flex-basis: calc((100% - 22px) / 2);
    min-width: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 12px;
  }

  .final-cta img {
    width: 190px;
    margin: -42px auto 0;
  }

  .footer-grid img {
    justify-self: start;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 30px;
  }

  .section-head h2,
  .choice h2,
  .reviews h2,
  .bottom h2 {
    font-size: 23px;
    line-height: 1.18;
  }

  .benefits-strip {
    grid-template-columns: 1fr;
  }

  .benefits-strip div {
    justify-content: flex-start;
    padding: 0 4px;
  }

  .product-card {
    flex-basis: 100%;
  }

  .reviews-title h2,
  .final-cta h2,
  .benefit-intro h2,
  .process-title h2,
  .faq-block h2 {
    font-size: 23px;
  }

  .faq-cta-grid {
    gap: 24px;
  }

  .carousel-btn.prev { left: 2px; }
  .carousel-btn.next { right: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
