:root {
  --vermelho: #d71920;
  --preto: #0b0b0b;
  --preto-2: #111111;
  --cinza: #1a1a1a;
  --branco: #ffffff;
  --texto: #1e1e1e;
  --texto-claro: rgba(255, 255, 255, 0.78);
  --amarelo: #ffd300;
  --borda: rgba(255, 255, 255, 0.08);
  --container: 1180px;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--branco);
  color: var(--texto);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borda);
  overflow: visible;
}

.lp-header.is-scrolled {
  background: rgba(11, 11, 11, 0.98);
}

.lp-header__inner {
  width: 100%;
  max-width: var(--container);
  min-height: 68px;
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: visible;
}

.lp-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 16px;
  transition: transform 220ms ease;
}

.lp-header__brand:hover {
  transform: translateY(-1px);
}

.lp-header__brand-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 14px;
}

.lp-header__brand-plus {
  color: var(--branco);
  font-weight: 900;
  opacity: 0.85;
}

.lp-header__logo {
  display: block;
  width: auto;
  height: clamp(28px, 2.6vw, 32px);
  max-width: 64px;
  object-fit: contain;
}

.lp-header__logo--abc {
  max-width: 84px;
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.lp-header__link {
  color: rgba(228, 228, 228, 0.78);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 220ms ease,
    transform 220ms ease;
  text-decoration: none;
}

.lp-header__link:hover {
  color: var(--vermelho);
  transform: translateY(-1px);
}

.lp-header__link:focus-visible,
.lp-header__cta:focus-visible,
.lp-header__menu-btn:focus-visible,
.btn:focus-visible,
.accordion__button:focus-visible {
  outline: 3px solid rgba(255, 211, 0, 0.35);
  outline-offset: 4px;
}

.lp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--vermelho), #b90f17);
  color: var(--branco);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.22);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.lp-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(215, 25, 32, 0.28);
}

.lp-header__menu-btn {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(228, 228, 228, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.lp-header__menu-btn:hover {
  background: rgba(228, 228, 228, 0.12);
}

.lp-header__menu-btn span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--branco);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.lp-header__menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.lp-header__menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: calc(100svh - 68px);
  background: linear-gradient(135deg, var(--preto) 0%, #121212 100%);
}

.hero__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
}

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

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 72px);
  color: var(--branco);
}

.hero__eyebrow,
.section-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--branco);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-kicker {
  color: var(--vermelho);
}

.hero__title,
.section-title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero__text,
.section-text {
  margin-top: 18px;
  font-size: 1.02rem;
  color: var(--texto-claro);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

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

.btn--primary {
  background: linear-gradient(180deg, var(--vermelho), #b90f17);
  color: var(--branco);
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.24);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Strip */
.strip {
  padding: 56px 0;
}

.strip--dark {
  background: var(--preto);
  color: var(--branco);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.strip .section-title,
.company .section-title,
.faq .section-title,
.gallery .section-title,
.story .section-title,
.cta-final .section-title {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
}

.strip .section-text {
  max-width: 68ch;
}

/* Benefits */
.benefits {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

.section-heading {
  margin-bottom: 28px;
}

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

.benefit-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
  border-color: rgba(215, 25, 32, 0.18);
}

.benefit-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.benefit-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}

.benefit-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.benefit-card:hover .benefit-card__image {
  transform: scale(1.05);
}

.benefit-card__content {
  padding: 20px 20px 22px;
}

.benefit-card__tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--vermelho);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--preto);
}

.benefit-card p {
  color: #555;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card__media {
    aspect-ratio: 16 / 9;
  }
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  background: var(--preto);
  color: var(--branco);
}

.story__media {
  overflow: hidden;
}

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

.story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 64px);
}

/* Company */
.company {
  padding: 80px 0;
  background: var(--branco);
}

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

.company__image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.stat {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--vermelho);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  color: #555;
  font-weight: 600;
}

/* Gallery */
.gallery {
  padding: 80px 0;
  background: linear-gradient(180deg, #111111, #0b0b0b);
  color: var(--branco);
}

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

.gallery__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #f7f7f7;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  background: var(--branco);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.accordion__header {
  margin: 0;
}

.accordion__button {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  text-align: left;
  font-weight: 800;
  font-size: 1rem;
  color: var(--preto);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.accordion__button::after {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  color: var(--vermelho);
  transition: transform 220ms ease;
}

.accordion__button[aria-expanded="true"]::after {
  content: "–";
}

.accordion__panel {
  padding: 0 20px 18px;
  color: #555;
}

/* cadastro */
.form-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0b0b0b, #111111);
  color: #fff;
}

.form-section .section-text {
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
}

.form-wizard {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.form-wizard__progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.form-wizard__step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
}

.form-wizard__step span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 25, 32, 0.18);
  color: #ffd300;
  font-weight: 900;
}

.form-wizard__step.is-active {
  background: rgba(215, 25, 32, 0.16);
  color: #fff;
  border-color: rgba(215, 25, 32, 0.35);
}

.form-wizard__announce {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.form-step {
  border: 0;
  padding: 0;
  margin: 0;
}

.form-step legend {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 700;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 211, 0, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.form-step__note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 58ch;
}

.form-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.form-btn {
  min-width: 140px;
}

.form-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .form-wizard {
    padding: 18px;
  }

  .form-wizard__progress {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wizard__actions {
    flex-direction: column-reverse;
  }

  .form-btn {
    width: 100%;
  }
}
/* FIM - cadastro */

/* Footer */
.lp-footer {
  background: #0b0b0b;
  color: #fff;
  overflow: hidden;
}

.lp-footer__cta {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.lp-footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

.lp-footer__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.62) 45%, rgba(0,0,0,0.28) 100%),
    linear-gradient(180deg, rgba(11,11,11,0.18), rgba(11,11,11,0.35));
}

.lp-footer__cta-inner {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

.lp-footer__cta-copy {
  max-width: 620px;
}

.lp-footer__cta-copy .section-title {
  margin-top: 8px;
}

.lp-footer__cta-copy .section-text {
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
}

.lp-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lp-footer__bottom {
  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}

.lp-footer__bottom-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.lp-footer__brandline {
  display: grid;
  gap: 12px;
}

.lp-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.lp-footer__brand span {
  font-weight: 900;
  color: rgba(255,255,255,0.88);
}

.lp-footer__brand-logo {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}

.lp-footer__brand-logo--abc {
  max-height: 30px;
}

.lp-footer__legal {
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  line-height: 1.4;
}

.lp-footer__nav,
.lp-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
  align-items: center;
}

.lp-footer__nav a,
.lp-footer__social a {
  color: rgba(255,255,255,0.76);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 220ms ease, transform 220ms ease;
}

.lp-footer__nav a:hover,
.lp-footer__social a:hover {
  color: var(--vermelho);
  transform: translateY(-1px);
}

.lp-footer__nav a:focus-visible,
.lp-footer__social a:focus-visible,
.lp-footer__brand:focus-visible {
  outline: 3px solid rgba(255, 211, 0, 0.35);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .lp-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .lp-footer__nav,
  .lp-footer__social {
    justify-content: flex-start;
  }

  .lp-footer__cta {
    min-height: 460px;
  }

  .lp-footer__cta-inner {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .lp-footer__cta {
    min-height: 420px;
  }

  .lp-footer__cta-inner {
    min-height: 420px;
    padding: 42px 0;
  }

  .lp-footer__cta-copy {
    max-width: 100%;
  }

  .lp-footer__actions {
    flex-direction: column;
  }

  .lp-footer__actions .btn {
    width: 100%;
  }

  .lp-footer__brand {
    flex-wrap: wrap;
  }

  .lp-footer__nav,
  .lp-footer__social {
    gap: 12px 16px;
  }
}

/* Mobile */
@media (max-width: 860px) {
  .lp-header__inner {
    min-height: 60px;
    gap: 12px;
  }

  .lp-header__menu-btn {
    display: inline-flex;
  }

  .lp-header__cta {
    display: none;
  }

  .lp-header__nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 14px 16px 18px;
    background: rgba(11, 11, 11, 0.98);
    border-bottom: 1px solid rgba(228, 228, 228, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    z-index: 2000;
  }

  .lp-header__nav.is-open {
    display: flex;
  }

  .lp-header__link {
    display: block;
    padding: 14px 6px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .hero,
  .story,
  .company {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .story__media {
    min-height: 320px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 28px 20px 40px;
  }

  .benefits__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .company__grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-final {
    min-height: 420px;
  }

  .cta-final__image,
  .cta-final__content {
    min-height: 420px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .lp-header__inner {
    min-height: 56px;
    padding-inline: 14px;
  }

  .lp-header__menu-btn {
    width: 40px;
    height: 40px;
  }

  .lp-header__logo {
    height: 28px;
  }

  .lp-header__logo--abc {
    max-width: 72px;
  }

  .lp-header__nav {
    top: 56px;
  }

  .hero__title,
  .section-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero__text,
  .section-text {
    font-size: 0.98rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .accordion__button,
  .accordion__panel {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Scroll lock */
body.menu-open {
  overflow: hidden;
}

.back-home-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(10, 14, 39, 0.88);
  border: 1px solid rgba(0, 212, 212, 0.35);
  color: #eaf0f7;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 212, 0.7);
  background: rgba(10, 14, 39, 0.96);
  box-shadow: 0 18px 40px rgba(0, 212, 212, 0.12), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.back-home-btn:focus-visible {
  outline: 3px solid rgba(0, 212, 212, 0.55);
  outline-offset: 4px;
}

.back-home-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 212, 212, 0.12);
  color: #00d4d4;
  font-size: 1rem;
  line-height: 1;
}

.back-home-btn__text {
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 640px) {
  .back-home-btn {
    right: 14px;
    bottom: 14px;
    padding: 11px 13px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .back-home-btn__text {
    display: none;
  }

  .back-home-btn__icon {
    width: 30px;
    height: 30px;
  }
}