:root {
  --aco-red: #ce1c1a;
  --aco-red-btn: #d00b1b;
  --aco-red-nav-active: #ff4255;
  --aco-ink: #272b36;
  --aco-muted: #7a7a7a;
  --aco-white: #ffffff;
  --aco-line: #e8e8e8;
  --aco-bg-soft: #f5f5f5;
  --aco-footer: #1b1d21;
  --aco-overlay: rgba(0, 0, 0, .5);
  --aco-font-body: "Heebo", sans-serif;
  --aco-font-ui: "Inter", sans-serif;
  --aco-shell: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--aco-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--aco-muted);
  background: var(--aco-white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--aco-font-ui);
  color: var(--aco-ink);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .75rem;
}
p { margin: 0 0 1rem; }
button, input, select, textarea { font: inherit; }

.aco-skip {
  position: absolute;
  left: -9999px;
}
.aco-skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  padding: .5rem 1rem;
}

.aco-shell {
  width: min(var(--aco-shell), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ===== HEADER (overlay no hero) ===== */
.aco-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  background: transparent;
}
.aco-header.is-solid {
  position: fixed;
  background: rgba(20, 24, 35, .92);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.aco-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 96px;
}
.aco-logo img {
  width: 218px;
  height: auto;
}
.aco-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}
.aco-nav a {
  font-family: var(--aco-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.aco-nav a.is-active,
.aco-nav a:hover {
  color: var(--aco-red-nav-active);
}
.aco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--aco-font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, background .2s ease, box-shadow .2s ease;
}
.aco-btn--client {
  background: var(--aco-red-btn);
  color: #fff;
  border-radius: 30px;
  min-height: 50px;
  padding: 0 1.55rem;
  margin-left: 1rem;
}
.aco-btn--client:hover,
.aco-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(208, 11, 27, .28);
}
.aco-btn--primary {
  background: var(--aco-red);
  color: #fff;
  border-radius: 20px;
  min-height: 50px;
  padding: 0 1.7rem;
}
.aco-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  min-height: 50px;
  padding: 0 1.5rem;
}
.aco-btn--outline-dark {
  background: transparent;
  color: var(--aco-red);
  border: 2px solid var(--aco-red);
  border-radius: 20px;
  min-height: 50px;
  padding: 0 1.5rem;
}
.aco-btn--outline-dark:hover {
  background: var(--aco-red);
  color: #fff;
}
.aco-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--aco-red);
  color: #fff;
  cursor: pointer;
  padding: 0;
}
.aco-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

/* ===== HERO ===== */
.aco-hero {
  position: relative;
  min-height: 831px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.aco-hero__slides {
  position: absolute;
  inset: 0;
}
.aco-hero__slide {
  position: absolute;
  inset: 0;
  background: #1a1a1a center/cover no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.aco-hero__slide.is-active { opacity: 1; }
.aco-hero__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .5;
  z-index: 1;
}
.aco-hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 700px;
  margin: 0;
}
.aco-hero__content h1 {
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.aco-hero__content p {
  color: #fff;
  font-family: var(--aco-font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 678px;
  margin-bottom: 1.75rem;
}
.aco-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* ===== PAGE HERO / BANNER ===== */
.aco-page-hero {
  position: relative;
  background: #1a2030 center/cover no-repeat;
  color: #fff;
  padding: 9rem 0 3.5rem;
}
.aco-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.aco-page-hero > .aco-shell { position: relative; z-index: 1; }
.aco-page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.aco-breadcrumb {
  display: flex;
  gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.aco-breadcrumb a:hover { color: #fff; }

/* Banner interno (Contato, Locação, etc.) — foto contida + overlay escuro */
.aco-page-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background-color: #14171c;
  background-image: url('../img/hero-1.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.aco-page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 12, 16, .78) 0%, rgba(10, 12, 16, .72) 100%),
    rgba(169, 0, 13, .22);
}
.aco-page-banner > * {
  position: relative;
  z-index: 1;
}
.aco-page-banner,
.aco-page-banner h1,
.aco-page-banner h2,
.aco-page-banner h3,
.aco-page-banner p,
.aco-page-banner span,
.aco-page-banner a,
.aco-page-banner strong {
  color: #fff;
}
.aco-page-banner a:hover {
  color: #fff;
  opacity: .9;
  text-decoration: underline;
}

/* ===== SECTIONS ===== */
.aco-section { padding: 5rem 0; }
.aco-section--soft { background: var(--aco-bg-soft); }
.aco-eyebrow {
  font-family: var(--aco-font-ui);
  color: var(--aco-red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 .65rem;
}
.aco-section h2 {
  font-size: 26px;
  margin-bottom: 1rem;
}
.aco-lead {
  max-width: 640px;
  margin-bottom: 2rem;
}

.aco-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
}
.aco-stat {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  padding: 1.6rem 1rem;
  text-align: center;
}
.aco-stat strong {
  display: block;
  font-family: var(--aco-font-ui);
  color: var(--aco-red);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .4rem;
}
.aco-stat span {
  font-family: var(--aco-font-ui);
  color: var(--aco-ink);
  font-size: 15px;
  font-weight: 600;
}

.aco-grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.aco-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.aco-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.aco-card {
  background: #fff;
  border: 1px solid var(--aco-line);
  border-radius: 6px;
  padding: 1.6rem 1.35rem;
}
.aco-card h3 {
  font-size: 18px;
  margin: .7rem 0 .55rem;
}
.aco-card p {
  margin: 0;
  font-size: 15px;
}
.aco-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(206, 28, 26, .08);
  color: var(--aco-red);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.aco-media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.aco-media-pair img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.aco-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.aco-prop {
  background: #fff;
  border: 1px solid var(--aco-line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.aco-prop img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #ddd;
}
.aco-prop__body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.aco-prop h3 {
  font-size: 16px;
  margin: 0;
}
.aco-prop p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}
.aco-prop .aco-btn {
  align-self: flex-start;
  min-height: 40px;
  font-size: 12px;
  padding: 0 1.1rem;
}

.aco-cta-band {
  position: relative;
  padding: 5rem 0;
  background: #151820 center/cover no-repeat;
  color: #fff;
  text-align: left;
}
.aco-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}
.aco-cta-band > .aco-shell { position: relative; z-index: 1; }
.aco-cta-band h2 { color: #fff; font-size: 26px; max-width: 520px; }
.aco-cta-band p { color: rgba(255,255,255,.88); max-width: 540px; margin-bottom: 1.5rem; }

.aco-footer {
  background: var(--aco-footer);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 1.4rem;
}
.aco-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.aco-footer h3,
.aco-footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.aco-footer a:hover { color: #fff; }
.aco-footer li + li { margin-top: .45rem; }
.aco-social { display: flex; gap: .75rem; }
.aco-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
}
.aco-copy {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.aco-form {
  background: #fff;
  border: 1px solid var(--aco-line);
  border-radius: 6px;
  padding: 1.5rem;
  display: grid;
  gap: .85rem;
}
.aco-form label {
  display: grid;
  gap: .35rem;
  font-family: var(--aco-font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--aco-ink);
}
.aco-form input,
.aco-form select,
.aco-form textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: .8rem .9rem;
  color: var(--aco-ink);
  font-weight: 400;
  background: #fff;
}
.aco-form textarea { min-height: 120px; resize: vertical; }
.aco-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.aco-form__msg {
  font-size: .9rem;
  padding: .7rem .85rem;
  border-radius: 4px;
  display: none;
}
.aco-form__msg.is-ok { display: block; background: #e8f8ef; color: #176b3a; }
.aco-form__msg.is-err { display: block; background: #fdecec; color: #8f1010; }

.aco-portal {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
}
.aco-portal__box {
  background: #fff;
  border: 1px solid var(--aco-line);
  border-radius: 6px;
  padding: 1.4rem;
}
.aco-portal__box h3 { margin-top: 0; }

.aco-whatsapp-float {
  position: fixed !important;
  right: 1.1rem;
  bottom: 5.5rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: aco-wa-soft-pulse 2.4s ease-in-out infinite;
  isolation: isolate;
}
.aco-whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .45);
  animation: aco-wa-ring 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
.aco-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
  animation: none;
}
.aco-whatsapp-float:hover::before {
  animation: none;
}
.aco-whatsapp-float:focus-visible {
  outline: 2px solid #128c7e;
  outline-offset: 3px;
}
.aco-whatsapp-float svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}
@keyframes aco-wa-soft-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes aco-wa-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (min-width: 768px) {
  .aco-whatsapp-float {
    bottom: 1.25rem;
  }
}
.aco-top {
  position: fixed;
  right: 1.1rem;
  bottom: 4.6rem;
  z-index: 60;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--aco-red);
  color: #fff;
  display: none;
  place-items: center;
  border: 0;
  cursor: pointer;
}
.aco-top.is-visible { display: grid; }

@media (max-width: 1024px) {
  .aco-benefits,
  .aco-props { grid-template-columns: repeat(2, 1fr); }
  .aco-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .aco-hero { min-height: 720px; }
  .aco-hero__content h1 { font-size: 40px; }
}

@media (max-width: 900px) {
  .aco-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 76px;
    background: rgba(20, 24, 35, .98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    display: none;
    margin: 0;
  }
  .aco-nav.is-open { display: flex; }
  .aco-nav a {
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .aco-btn--client {
    margin: .85rem 0 0;
    width: 100%;
  }
  .aco-nav-toggle { display: inline-block; }
  .aco-header__inner { min-height: 76px; }
  .aco-logo img { width: 168px; }
  .aco-stats,
  .aco-grid-2,
  .aco-portal,
  .aco-media-pair,
  .aco-form__row,
  .aco-footer__grid {
    grid-template-columns: 1fr;
  }
  .aco-hero { min-height: 78vh; }
  .aco-hero__content { padding: 7rem 0 3.5rem; }
  .aco-hero__content h1 { font-size: 32px; }
  .aco-page-hero { padding: 7rem 0 2.5rem; }
}

@media (max-width: 640px) {
  .aco-benefits,
  .aco-props,
  .aco-grid-4,
  .aco-stats { grid-template-columns: 1fr; }
}

/* Modal de lead */
.aco-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.aco-lead-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.aco-lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
}
.aco-lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.aco-lead-modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #64748b;
  background: #f1f5f9;
}
.aco-lead-modal__close:hover { color: #0f172a; }
body.aco-lead-modal-open { overflow: hidden; }

/* ===== Lightbox galeria ===== */
.aco-lightbox-trigger {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.aco-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.aco-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.aco-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, .88);
}
.aco-lightbox__stage {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  height: min(86vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem;
}
.aco-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: .5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  user-select: none;
  transition: opacity .18s ease, transform .18s ease;
}
.aco-lightbox__img.is-switching {
  opacity: 0;
  transform: translateX(12px);
}
.aco-lightbox__img.is-switching-back {
  opacity: 0;
  transform: translateX(-12px);
}
.aco-lightbox__btn {
  position: absolute;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.aco-lightbox__btn:hover {
  background: var(--aco-red);
}
.aco-lightbox__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.aco-lightbox__btn--prev { left: .5rem; }
.aco-lightbox__btn--next { right: .5rem; }
.aco-lightbox__btn--close {
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, .16);
}
.aco-lightbox__counter {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .85);
  font-family: var(--aco-font-ui);
  font-size: .85rem;
  letter-spacing: .04em;
  background: rgba(0, 0, 0, .35);
  padding: .35rem .75rem;
  border-radius: 999px;
}
.aco-lightbox__btn.is-hidden { display: none; }
body.aco-lightbox-open { overflow: hidden; }

/* FAQ GEO / SEO */
.aco-faq__item summary::-webkit-details-marker { display: none; }
.aco-faq__item summary { list-style: none; }
.aco-faq__item[open] summary .material-symbols-outlined {
  transform: rotate(180deg);
}
.aco-faq__item summary .material-symbols-outlined {
  transition: transform .2s ease;
}
.aco-geo-box__points { list-style: none; padding: 0; margin: 0; }

@media (max-width: 640px) {
  .aco-lightbox__stage { padding: 2.5rem 2.75rem; height: min(78vh, 700px); }
  .aco-lightbox__btn { width: 2.4rem; height: 2.4rem; }
  .aco-lightbox__btn--prev { left: .15rem; }
  .aco-lightbox__btn--next { right: .15rem; }
}

/* ===== Blog ===== */
.aco-blog-prose {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.75;
}
.aco-blog-prose > * + * { margin-top: 1.15rem; }
.aco-blog-prose h2,
.aco-blog-prose h3,
.aco-blog-prose h4 {
  color: #272b36;
  font-family: var(--aco-font-ui);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
}
.aco-blog-prose h2 { font-size: 1.55rem; }
.aco-blog-prose h3 { font-size: 1.25rem; }
.aco-blog-prose a { color: var(--aco-red); text-decoration: underline; }
.aco-blog-prose img {
  border-radius: .75rem;
  margin: 1.5rem auto;
}
.aco-blog-prose ul,
.aco-blog-prose ol {
  padding-left: 1.25rem;
  list-style: disc;
}
.aco-blog-prose ol { list-style: decimal; }
.aco-blog-prose blockquote {
  border-left: 3px solid var(--aco-red);
  padding: .25rem 0 .25rem 1rem;
  color: #64748b;
  font-style: italic;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
