:root {
  --adb-ink: #171119;
  --adb-purple: #4f235f;
  --adb-green: #65cc2e;
  --adb-soft: #f7f1ed;
  --adb-white: #ffffff;
  --adb-muted: #6d6470;
}

.adb-main,
.adb-main * {
  box-sizing: border-box;
}

.adb-main {
  color: var(--adb-ink);
  background: var(--adb-white);
}

.adb-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.adb-section {
  padding: 82px 0;
}

.adb-section--soft {
  background: var(--adb-soft);
}

.adb-section--dark {
  color: var(--adb-white);
  background: var(--adb-ink);
}

.adb-eyebrow {
  margin: 0 0 12px;
  color: #50a92a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.adb-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
}

.adb-heading {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.adb-lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.adb-copy {
  color: var(--adb-muted);
  font-size: 16px;
  line-height: 1.7;
}

.adb-prose {
  max-width: 720px;
}

.adb-prose p {
  margin: 0 0 22px;
  color: #ded6df;
  font-size: 18px;
  line-height: 1.75;
}

.adb-prose p:last-child {
  margin-bottom: 0;
}

.adb-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 110px 0 72px;
  color: var(--adb-white);
  background:
    linear-gradient(90deg, rgba(12, 8, 14, .92), rgba(12, 8, 14, .48)),
    url('/images/hero-desktop-bases.jpg') center/cover no-repeat;
}

.adb-hero--plain {
  min-height: 390px;
  background:
    radial-gradient(circle at 82% 20%, rgba(101, 204, 46, .16), transparent 30%),
    radial-gradient(circle at 65% 80%, rgba(98, 32, 120, .36), transparent 35%),
    var(--adb-ink);
}

.adb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.adb-actions--center {
  justify-content: center;
}

.adb-heading--single-line {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(20px, 4vw, 50px);
  font-weight: 400;
}

.adb-heading--single-line strong {
  font-weight: 800;
}

.adb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #101010;
  background: var(--adb-green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.adb-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.adb-button--ghost {
  color: var(--adb-white);
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
}

.adb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.adb-card {
  overflow: hidden;
  border: 1px solid rgba(43, 25, 47, .1);
  border-radius: 22px;
  background: var(--adb-white);
  box-shadow: 0 18px 50px rgba(35, 18, 38, .08);
}

.adb-card__image {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  display: block;
  object-fit: cover;
  background: #0c0b0e;
}

.adb-card__body {
  padding: 26px;
}

.adb-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.adb-card p {
  margin: 0 0 22px;
  color: var(--adb-muted);
  line-height: 1.65;
}

.adb-link {
  color: #449d20;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.adb-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.adb-gallery img {
  width: 100%;
  height: 310px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  background: #25152b;
}

.adb-gallery img:nth-child(4n + 1),
.adb-gallery img:nth-child(4n + 4) {
  grid-column: span 7;
}

.adb-gallery img:nth-child(4n + 2),
.adb-gallery img:nth-child(4n + 3) {
  grid-column: span 5;
}

.adb-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.adb-feature {
  padding: 22px;
  border: 1px solid rgba(43, 25, 47, .1);
  border-radius: 16px;
  background: var(--adb-white);
  font-weight: 700;
}

.adb-feature::before {
  content: '✓';
  margin-right: 10px;
  color: #4ca826;
}

.adb-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.adb-option-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.16);
}

.adb-option-strip span {
  padding: 22px 16px;
  background: #181219;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.adb-list {
  display: grid;
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.adb-list li {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}

.adb-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--adb-green);
  font-size: 18px;
}

.adb-product-detail__image {
  width: 100%;
  max-height: 660px;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  background: #09090b;
}

.adb-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.adb-spec {
  padding: 24px;
  border-radius: 18px;
  background: var(--adb-soft);
}

.adb-spec h3 {
  margin: 0 0 12px;
}

.adb-spec ul {
  margin: 0;
  padding-left: 18px;
  color: var(--adb-muted);
  line-height: 1.8;
}

.adb-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.adb-contact-card {
  min-width: 0;
  padding: 28px;
  border-radius: 18px;
  background: var(--adb-soft);
}

.adb-contact-card small {
  display: block;
  margin-bottom: 8px;
  color: #4a9d28;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.adb-contact-card a,
.adb-contact-card p {
  max-width: 100%;
  margin: 0;
  color: var(--adb-ink);
  font-size: 17px;
  font-weight: 650;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.adb-email-nowrap {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.adb-contact-card--email .adb-email-nowrap {
  display: inline-block;
  font-size: clamp(11px, 4vw, 17px);
}

footer {
  overflow-wrap: anywhere;
}

.adb-commercial {
  position: relative;
  overflow: hidden;
}

.adb-commercial::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(101, 204, 46, .12);
}

/* Keep the WhatsApp shortcut out of the document flow. The compiled button
   animation styles otherwise override Tailwind's `.fixed` utility. */
body > a.fixed[href*="wa.me"] {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  margin: 0;
}

.adb-cursor-berry {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity .2s ease;
}

.adb-cursor-berry::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 25%, rgba(255, 255, 255, .7) 0 3%, transparent 4%),
    radial-gradient(circle at 34% 29%, #9f65ad 0 8%, #632575 18%, #290b34 60%, #0b030e 100%);
  box-shadow:
    inset -4px -6px 8px rgba(0, 0, 0, .42),
    0 7px 18px rgba(12, 3, 15, .4);
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), filter .25s ease;
}

.adb-cursor-berry::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 9px;
  width: 7px;
  height: 4px;
  border-radius: 60% 35% 60% 35%;
  background: #342039;
  transform: rotate(-18deg);
  transition: transform .25s cubic-bezier(.2, .8, .2, 1);
}

.adb-cursor-berry.is-visible {
  opacity: .78;
}

.adb-cursor-berry.is-active::before {
  transform: scale(1.45);
  filter: saturate(1.18) brightness(1.08);
}

.adb-cursor-berry.is-active::after {
  transform: translateY(-2px) rotate(-28deg) scale(1.12);
}

@media (prefers-reduced-motion: no-preference) {
  html.adb-motion-ready .adb-reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(.988);
    will-change: transform, opacity;
    transition:
      opacity .72s ease var(--adb-reveal-delay, 0ms),
      transform .82s cubic-bezier(.2, .8, .2, 1) var(--adb-reveal-delay, 0ms);
  }

  html.adb-motion-ready .adb-reveal.adb-reveal--left {
    transform: translate3d(-22px, 12px, 0) scale(.992);
  }

  html.adb-motion-ready .adb-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  html.adb-motion-ready .adb-hero .adb-shell > * {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity .7s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
  }

  html.adb-motion-ready .adb-hero.adb-hero-animated .adb-shell > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  html.adb-motion-ready .adb-hero.adb-hero-animated .adb-shell > :nth-child(2) {
    transition-delay: 90ms;
  }

  html.adb-motion-ready .adb-hero.adb-hero-animated .adb-shell > :nth-child(3) {
    transition-delay: 180ms;
  }

  html.adb-motion-ready .adb-hero.adb-hero-animated .adb-shell > :nth-child(4) {
    transition-delay: 260ms;
  }

  .adb-card,
  .adb-feature,
  .adb-gallery img,
  .adb-product-detail__image {
    transition:
      transform .45s cubic-bezier(.2, .8, .2, 1),
      box-shadow .45s ease,
      filter .45s ease;
  }

  .adb-card:hover,
  .adb-feature:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 24px 58px rgba(35, 18, 38, .14);
  }

  .adb-card__image,
  .adb-gallery img {
    transform: translateZ(0) scale(1.002);
  }

  .adb-card:hover .adb-card__image,
  .adb-gallery img:hover {
    transform: translateZ(0) scale(1.035);
    filter: saturate(1.06) contrast(1.02);
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .adb-cursor-berry {
    display: none;
  }

  .adb-reveal,
  .adb-hero .adb-shell > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 800px) {
  .adb-shell {
    width: min(100% - 28px, 680px);
  }

  .adb-section {
    padding: 60px 0;
  }

  .adb-hero {
    min-height: 460px;
    padding: 100px 0 54px;
  }

  .adb-hero:not(.adb-hero--plain) {
    background:
      linear-gradient(90deg, rgba(12, 8, 14, .9), rgba(12, 8, 14, .48)),
      url('/images/hero-mobile-linha.jpg') center/cover no-repeat;
  }

  .adb-grid,
  .adb-split,
  .adb-specs,
  .adb-contact-grid {
    grid-template-columns: 1fr;
  }

  .adb-split {
    gap: 34px;
  }

  .adb-contact-card--email {
    padding-inline: 18px;
  }

  .adb-option-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .adb-gallery img,
  .adb-gallery img:nth-child(n) {
    height: 240px;
    grid-column: span 12;
  }
}

@media (max-width: 520px) {
  .adb-feature-grid,
  .adb-option-strip {
    grid-template-columns: 1fr;
  }

  .adb-button {
    width: 100%;
  }
}
