/* AcessoMenu - Site institucional (CSS) */
:root {
  --bg: #061027;
  --bg2: #030a18;
  --card: rgba(255, 255, 255, .06);
  --card2: rgba(255, 255, 255, .09);
  --line: rgba(255, 255, 255, .12);
  --text: rgba(255, 255, 255, .9);
  --muted: rgba(255, 255, 255, .68);
  --lime: #7CFF00;
  --lime2: #B7FF5A;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --radius: 18px;
  --radius2: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(124, 255, 0, .18), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(81, 166, 255, .20), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
  font-size: .82rem;
  margin: 0 0 10px;
}

/* NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(3, 10, 24, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .25s ease, border-color .25s ease;
}

.navbar.scrolled {
  background: rgba(3, 10, 24, .72);
  border-bottom-color: rgba(255, 255, 255, .12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 14px;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, .06);
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  box-shadow: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .09);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 10px 14px;
  font-weight: 800;
}

.btn-lime {
  background: linear-gradient(180deg, var(--lime2), var(--lime));
  color: #071022 !important;
  font-weight: bold !important;
  border-color: rgba(0, 0, 0, .0);
  box-shadow: 0 12px 30px rgba(124, 255, 0, .20);
}

.btn-lime:hover {
  background: linear-gradient(180deg, #D6FF9B, var(--lime));
}

.btn-ghost {
  background: transparent;
}

/* HERO */
.hero {
  padding: 118px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.0rem, 2.8vw + 1rem, 3.15rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.pill {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  color: rgba(255, 255, 255, .84);
  font-weight: 650;
  font-size: .92rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .70);
  font-weight: 600;
  font-size: .95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(124, 255, 0, .12);
}

/* DEVICES */
.device {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
  border: 15px solid rgba(0, 0, 0, 1);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-phone {
  width: min(345px, 100%);
  margin-left: auto;
  aspect-ratio: 9.5/20;
}

.device-notch {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 44%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: rgba(0, 0, 0, .35);
  z-index: 5;
}

.device-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  background-color: rgba(0, 0, 0, .35);
}

.media-caption {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
  color: rgba(255, 255, 255, .70);
  font-weight: 600;
}

.spark {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: rgba(124, 255, 0, .85);
  box-shadow: 0 0 0 6px rgba(124, 255, 0, .12);
}

/* SECTIONS */
.section {
  padding: 76px 0;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .00));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.55rem, 1.2vw + 1rem, 2.1rem);
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 820px;
}

/* CARDS GRID */
.grid {
  display: grid;
  gap: 0px;
}

.cards {
  grid-template-columns: repeat(6, 1fr);
}

.cards-tablet {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  grid-column: span 2;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .20);
}

.card img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 10/20;
  object-fit: contain;
  background: rgba(0, 0, 0, .2);
}

.card-img-tablet {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 6/4 !important;
  object-fit: contain;
  background: rgba(0, 0, 0, .2);
}

.card figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  font-size: .95rem;
}

/* STEPS */
.steps {
  grid-template-columns: repeat(12, 1fr);
}

.step {
  grid-column: span 6;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.step h3 {
  margin: 10px 0 8px;
  font-size: 1.15rem;
}

.step p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.step ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(124, 255, 0, .10);
  border: 1px solid rgba(124, 255, 0, .22);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.feature {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .82);
  font-weight: 650;
}

.check {
  color: var(--lime);
  font-weight: 900;
  margin-right: 10px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* VIDEO PREVIEW */
.video-preview {
  min-height: 320px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(700px 260px at 30% 10%, rgba(124, 255, 0, .12), transparent 60%),
    radial-gradient(600px 260px at 90% 10%, rgba(81, 166, 255, .20), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  background-image: url(../../public/images/site/img/video-balanca-bg.jpg) !important;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.play-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 255, 255, .14);
}

.triangle {
  width: 0;
  height: 0;
  border-left: 14px solid rgba(255, 255, 255, .92);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.video-preview-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, .86);
}

.video-preview-text span {
  color: rgba(255, 255, 255, .70);
  font-weight: 650;
}

/* TABLET GRID */
.tablet-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.device-tablet {
  border-radius: 30px;
  padding: 5px;
  background: rgba(255, 255, 255, .05);
}

.device-tablet img {
  border-radius: 18px;
  aspect-ratio: 16/9;
  object-fit: contain;
}

/* FEATURE CARDS */
.feature-cards {
  grid-template-columns: repeat(12, 1fr);
}

.fcard {
  grid-column: span 4;
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
}

.fcard h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.fcard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.section-cta {
  padding: 86px 0 92px;
}

.cta-box {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(900px 360px at 0% 0%, rgba(124, 255, 0, .14), transparent 60%),
    radial-gradient(900px 360px at 100% 0%, rgba(81, 166, 255, .20), transparent 55%),
    rgba(255, 255, 255, .04);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.contact-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-item {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .16);
  min-width: 220px;
}

.label {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 6px;
}

.value {
  display: block;
  font-weight: 850;
  color: rgba(255, 255, 255, .92);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  color: rgba(255, 255, 255, .72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-left p {
  margin: 0;
  max-width: 500px;
  line-height: 1.5;
}

.footer-logo {
  max-height: 25px;
  width: auto;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .60);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(980px, calc(100% - 24px));
  margin: 72px auto 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(3, 10, 24, .80);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-head {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .86);
  font-weight: 850;
}

.modal-title {
  display: block;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  font-size: 24px;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(255, 255, 255, .10);
}

#modalVideo {
  width: 100%;
  height: auto;
  max-height: 72vh;
  background: black;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .device-phone {
    margin: 0 auto;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .tablet-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-tablet {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    grid-column: span 1;
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .fcard {
    grid-column: span 1;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    grid-column: span 12;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1002;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(3, 10, 24, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 108px;
  }

  .card img {
    aspect-ratio: 10/20;
  }

  .card-img-tablet {
    aspect-ratio: 1/1 !important;
  }
}