/* Fonte global */
html, body, button, input, textarea, select{
  font-family: "Oxanium", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
:root{
  --bg:#ffffff;
  --text:#0b1020;
  --muted:#4b5563;

  --brand:#3d05b1;          /* azul principal */
  --brand-weak: rgba(61,5,177,.10);
  --brand-border: rgba(61,5,177,.18);

  --panel: rgba(255,255,255,.70);
  --border: rgba(11,16,32,.10);

  --radius:18px;
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Oxanium", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.container{ width:min(1120px, 100%); margin:0 auto; padding:16px; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header (menu estilo Nexus: clean, branco, underline) */
.header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid rgba(11,16,32,.10);
  box-shadow: 0 6px 18px rgba(11,16,32,.06);
}

/* Estado com rolagem: fundo azul + textos brancos */
.header.header--scrolled{
  background: var(--brand);
  border-bottom-color: rgba(255,255,255,.10);
  box-shadow: 0 10px 24px rgba(11,16,32,.14);
}

.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  min-height: 78px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.brand img{
  width:auto;
  height: 50px;
}

/* ============================
   AJUSTE 1: LOGO BRANCA -> #3d05b1 QUANDO HEADER É BRANCO
   (quando rola, volta ao normal branca)
============================ */
.header:not(.header--scrolled) .brand img{
  filter: brightness(0) saturate(100%)
          invert(13%) sepia(96%)
          saturate(6100%) hue-rotate(256deg)
          brightness(55%) contrast(110%);
}
.header.header--scrolled .brand img{
  filter: none;
}

/* Botão mobile */
.navbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  border-radius:12px;
  cursor:pointer;
}
.navbtn:focus-visible{ outline: 2px solid rgba(61,5,177,.35); outline-offset: 2px; }
.navbtn__icon{
  width:22px;
  height:2px;
  background: var(--brand);
  position:relative;
  border-radius:999px;
}
.navbtn__icon::before,
.navbtn__icon::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background: var(--brand);
  border-radius:999px;
}

.header.header--scrolled .navbtn__icon,
.header.header--scrolled .navbtn__icon::before,
.header.header--scrolled .navbtn__icon::after{
  background:#fff;
}
.navbtn__icon::before{ top:-7px; }
.navbtn__icon::after{ top:7px; }

/* Navegação */
.nav{
  display:flex;
  align-items:center;
}

.nav__list{
  display:flex;
  align-items:center;
  gap: 26px;
  list-style:none;
  padding:0;
  margin:0;
}

/* Links (sem borda; underline via background) */
.nav__link{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 0;
  font-weight: 600;
  color: var(--brand);
  transition: transform .18s ease, opacity .18s ease;
}
.nav__link::after{
  content:"";
  position:absolute;
  left:50%;
  bottom: 6px;
  height: 2px;
  width: 0;
  opacity: 0;
  background: currentColor;
  transform: translateX(-50%);
  transition: width .22s ease, opacity .22s ease;
}
.nav__link:hover{ transform: translateY(-1px); }
.nav__link:hover::after{ width: 100%; opacity: 1; }
.nav__link:focus-visible{
  outline:2px solid rgba(61,5,177,.35);
  outline-offset: 4px;
  border-radius: 6px;
}
.nav__link--active::after{
  width: 100%;
  opacity: 1;
}

.header.header--scrolled .nav__link{
  color:#fff;
}

/* Item com dropdown */
.nav__item{ position:relative; }
.nav__link--btn{
  border:0;
  background:transparent;
  cursor:pointer;
  font: inherit;
}

/* ============================
   AJUSTE 2: MENU TODO EM NEGRITO IGUAL
   (inclui botões do dropdown e children)
============================ */
.nav__link,
.nav__link--btn,
.dropdown__link{
  font-weight: 700;
}

/* Chevron */
.chev{
  width: 10px;
  height: 10px;
  display:inline-block;
  transform: translateY(1px) rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  margin-left: 2px;
  transition: transform .18s ease;
}
.nav__item.is-open .chev{ transform: translateY(2px) rotate(225deg); }

/* Dropdown */
.dropdown{
  position:absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(11,16,32,.10);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(11,16,32,.10);
  display:none;
}

/* “ponte” para o mouse chegar no submenu sem fechar */
.dropdown::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-14px;
  height:14px;
}
.nav__item.is-open > .dropdown{ display:block; }

.dropdown__link{
  display:block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--brand);
  font-weight: 600;
  transition: background-color .18s ease, transform .18s ease;
}
.dropdown__link:hover{
  background: rgba(61,5,177,.08);
  transform: translateX(2px);
}

/* Desktop */
@media (min-width: 920px){
  .navbtn{ display:none; }
}

/* Mobile drawer */
@media (max-width: 919.98px){
  .nav{
    position:fixed;
    inset: 78px 12px auto 12px;
    background:#fff;
    border: 1px solid rgba(11,16,32,.10);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(11,16,32,.16);
    padding: 14px;
    display:none;
  }
  .nav.is-open{ display:block; }

  .nav__list{
    flex-direction:column;
    align-items:flex-start;
    gap: 6px;
  }
  .nav__link{
    width:100%;
    padding: 12px 10px;
    background-position: 10px calc(100% - 6px);
  }
  .dropdown{
    position:static;
    display:none;
    width:100%;
    min-width:0;
    margin-top: 6px;
    box-shadow:none;
    border-radius: 14px;
  }
  .nav__item.is-open > .dropdown{ display:block; }
}


.hero{
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__media{
  position:absolute;
  inset:0;
}

.hero__video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(61,5,177,.76) 0%, rgba(61,5,177,.38) 52%, rgba(61,5,177,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.35) 100%);
}
.hero__kicker,
.hero__title,
.hero__lead,
.hero__bullets{
  color:#fff;
}

.hero__content{
  position:relative;
  z-index:2;
  padding-top: 34px;
  padding-bottom: 34px;
  max-width: 820px;
}

.hero__kicker{
  margin:0 0 10px;
  color: rgba(234,240,255,.78);
  font-weight: 600;
  letter-spacing: .02em;
}

.hero__title{
  margin:0 0 12px;
  font-weight: 800;
  line-height: 1.06;
  font-size: clamp(1.9rem, 2.4vw + 1.2rem, 3.1rem);
}

.hero__lead{
  margin:0 0 14px;
  color: rgba(234,240,255,.80);
  font-size: 1.05rem;
  max-width: 62ch;
}

.hero__bullets{
  margin:0 0 18px;
  color: rgba(234,240,255,.72);
  max-width: 72ch;
}

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

/* Botões: padroniza tamanho da fonte (mesmo do "Solicitar Teste") */
.btn{
  font-size: 1rem;
  line-height: 1.1;
}

.btn--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(234,240,255,.92);
}

@media (max-width: 720px){
  .hero__overlay{
    background:
      linear-gradient(180deg, rgba(3,10,26,.55) 0%, rgba(3,10,26,.78) 100%);
  }
}
.nav__link--cta{ font-weight:600; }

/* Botão largo + flash (sheen) + zoom leve */
.btn--flash{
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 240px;          /* largura “mais largo” */
  padding: 14px 26px;
  border-radius: 14px;

  font-weight: 700;
  letter-spacing: .2px;

  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* o “flash” */
.btn--flash::before{
  content:"";
  position:absolute;
  top:-30%;
  left:-60%;
  width: 45%;
  height: 160%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.6) 45%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-18deg);
  opacity: 0;
}

/* Hover: zoom + flash da esquerda para direita */
.btn--flash:hover{
  transform: scale(1.04);
  filter: brightness(1.02);
}

/* anima o flash */
.btn--flash:hover::before{
  opacity: 1;
  animation: btn-sheen 0.85s ease forwards;
}

@keyframes btn-sheen{
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* Acessibilidade (teclado) */
.btn--flash:focus-visible{
  outline: 2px solid rgba(61,5,177,.35);
  outline-offset: 3px;
}

.btn--primary{
  background: var(--brand);
  color: #ffffff;
  border: none;
}

.btn--primary:hover{
  box-shadow: 0 12px 28px rgba(61,5,177,.25);
}

.btn--white{
  background: #ffffff;
  color: var(--brand);
  border: none;
}

.btn--white:hover{
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

/* ============================
   DBVENDA / PÁGINAS INTERNAS
   (remove CSS inline e mantém padrão visual do site)
============================ */

body.page-dbvenda{ overflow-x:hidden; }

/* Seções padrão (fundo branco / textos azuis) */
.section{
  padding: 54px 0;
}

.section__head{
  margin: 0 0 18px;
}

.section h1, .section h2, .section h3,
.segments h2, .segments h3{
  color: var(--brand);
}

.section p,
.section li,
.segments p{
  color: rgba(61,5,177,.86);
}

.muted{ color: rgba(61,5,177,.70) !important; }

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

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

/* Card (compatível com o visual clean do site) */
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(11,16,32,.06);
}

.card h3{ margin: 0 0 10px; color: var(--brand); }

.list{
  margin: 0;
  padding-left: 18px;
}

.list li{ margin: 0 0 8px; color: rgba(61,5,177,.86); }

/* Segmentos */
.segments{
  padding: 54px 0 62px;
  background: linear-gradient(180deg, rgba(61,5,177,.06) 0%, rgba(255,255,255,1) 72%);
  border-top: 1px solid rgba(11,16,32,.06);
}

.segments__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

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

@media (max-width: 980px){
  .segments__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

.seg-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  padding: 14px 14px;
  display:flex;
  gap: 12px;
  align-items:center;
  box-shadow: 0 10px 22px rgba(11,16,32,.05);
}

.seg-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(61,5,177,.08);
  border: 1px solid rgba(61,5,177,.12);
  display:flex;
  align-items:center;
  justify-content:center;
}

.seg-card__icon svg{
  width: 22px;
  height: 22px;
  color: var(--brand);
}

.seg-card__text h3{
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

/* ===== Modal “Ver Telas” (álbum) ===== */
.modal__dialog--light{
  background:#fff;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(0,0,0,.20);
}

.modal__title--light{ color: var(--brand); }
.modal__subtitle--light{ color: rgba(61,5,177,.75); }

.screens{ display:grid; gap: 14px; }

.screens__stage{
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  min-height: 760px;
}

.screens__overlay{
  pointer-events:none;
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(3,10,26,.55) 0%,
    rgba(3,10,26,.10) 40%,
    rgba(3,10,26,.00) 62%,
    rgba(3,10,26,.35) 100%
  );
}

.screens__img{
  width: 100%;
  height: 760px;
  object-fit: contain;
  object-position: center;
  background:#fff;
  display:block;
}

.screens__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(3,10,26,.38);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
  backdrop-filter: blur(6px);
  user-select:none;
}

.screens__nav:hover{
  background: rgba(3,10,26,.50);
  transform: translateY(-50%) scale(1.03);
}

.screens__nav--prev{ left: 12px; }
.screens__nav--next{ right: 12px; }

.screens__thumbs{
  display:flex;
  gap: 10px;
  overflow:auto;
  padding: 6px 2px 2px;
  -webkit-overflow-scrolling: touch;
}

.screens__thumb{
  flex: 0 0 auto;
  width: 112px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:#fff;
  overflow:hidden;
  cursor:pointer;
  opacity:.86;
  transition: opacity .12s ease, transform .12s ease, border-color .12s ease;
}

.screens__thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.screens__thumb:hover{ opacity:1; transform: translateY(-1px); }

.screens__thumb[aria-current="true"]{
  opacity: 1;
  border-color: rgba(61,5,177,.45);
  box-shadow: 0 8px 18px rgba(61,5,177,.14);
}

@media (max-width: 720px){
  .screens__stage{ min-height: 620px; }
  .screens__img{ height: 620px; }
  .screens__thumb{ width: 92px; height: 60px; }
  .screens__nav{ width: 42px; height: 42px; border-radius: 12px; }
}

/* SECTION COM FUNDO BRANCO */
.features-strip{
  background: #ffffff;
  padding: 40px 0;
}

.features-note{
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: .2px;
}

/* GRID */
.features-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

/* CARD */
.feature-card{
  position: relative;
  overflow: hidden;

  border-radius: 16px;
  padding: 18px 12px;
  min-height: 82px;

  background: var(--brand);
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  box-shadow: 0 12px 24px rgba(61,5,177,.18);

  transition: transform .18s ease, box-shadow .18s ease;
}

/* TEXTO */
.feature-top{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  text-align: center;
  text-transform: uppercase;
}

.feature-sub{
  font-weight: 700;
  font-size: 12px;
  opacity: .95;
  text-align: center;
}

/* ==============================
   FLASH IGUAL AO BOTÃO
============================== */

.feature-card::before{
  content:"";
  position:absolute;
  top:-30%;
  left:-60%;
  width: 45%;
  height: 160%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.6) 45%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-18deg);
  opacity: 0;
}

/* Hover */
.feature-card:hover{
  transform: scale(1.04);
  box-shadow: 0 18px 36px rgba(61,5,177,.28);
}

/* animação flash */
.feature-card:hover::before{
  opacity: 1;
  animation: card-sheen 0.85s ease forwards;
}

@keyframes card-sheen{
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* RESPONSIVO */
@media (max-width:1100px){
  .features-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width:720px){
  .features-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ====== SOBRE (DB WARE COMPANY) ====== */
.about{
  background: var(--brand);
  color:#fff;
  padding: 72px 0 64px;
}

.about__title{
  margin:0 0 18px;
  text-align:center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing:.3px;
}

.about__content{
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 0 16px;
  color: rgba(255,255,255,.92);
  font-size: 15.5px;
  line-height: 1.65;
}

.about__content p{
  margin: 0 0 14px;
}

.about__states{
  margin-top: 18px;
  font-weight: 800;
  color: #fff;
}

.about__states-list{
  margin-top: -6px;
  color: rgba(255,255,255,.90);
}

.about__cards{
  display:grid;
  gap: 18px;
  padding: 0 16px;
}

.about-card{
  border-radius: var(--radius);
  background: rgba(11,16,32,.35);
  border: 1px solid rgba(255,255,255,.14);
  padding: 22px 18px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.about-card__icon{
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.about-card__title{
  margin:0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing:.8px;
}

.about-card__text{
  margin:0;
  color: rgba(255,255,255,.90);
  font-size: 14.5px;
  line-height: 1.65;
}

/* tablet */
@media (min-width: 768px){
  .about__title{ font-size: 40px; }
  .about__content{ font-size: 16px; }
  .about__cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }
  .about-card{ padding: 26px 20px 24px; }
}

/* mobile spacing */
@media (max-width: 420px){
  .about__title{ font-size: 30px; }
}



/* About (compact CTA) */
.about__content--compact{
  margin-bottom: 18px;
}

.about__cta{
  display:flex;
  justify-content:center;
  padding: 0 16px 6px;
  gap: 12px;
  flex-wrap: wrap;
}

/* Modal (Sobre) */
body.modal-open{
  overflow:hidden;
}

.modal{
  position: fixed;
  inset: 0;
  z-index: 90;

  display: grid;
  place-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.modal.is-open{
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
}

.modal__dialog{
  position: relative;
  width: min(960px, calc(100% - 32px));
  max-height: min(86vh, 820px);
  overflow: auto;

  border-radius: calc(var(--radius) + 6px);
  background: rgba(11,16,32,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);

  color: rgba(255,255,255,.94);

  transform: translateY(10px) scale(.985);
  transition: transform .22s ease;
}

.modal.is-open .modal__dialog{
  transform: translateY(0) scale(1);
}

.modal__header{
  padding: 22px 22px 0;
}

.modal__title{
  margin:0;
  font-size: 26px;
  font-weight: 900;
  color:#fff;
  letter-spacing:.3px;
}

.modal__subtitle{
  margin: 6px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14.5px;
}

.modal__body{
  padding: 14px 22px 22px;
}

.modal__close{
  position: absolute;
  top: 12px;
  right: 12px;

  width: 42px;
  height: 42px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}

.modal__close:hover{
  background: rgba(255,255,255,.10);
  transform: scale(1.03);
}

.modal__close:focus-visible{
  outline: 3px solid rgba(255,255,255,.35);
  outline-offset: 2px;
}

/* melhora leitura dentro do modal */
.modal .about__content{
  margin: 0 auto 18px;
  padding: 0;
  color: rgba(255,255,255,.92);
}

.modal .about__cards{
  padding: 0;
}

/* ====== PARCERIAS (modal escuro com grid branco) ====== */
.parceiros-wrapper{
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
}

.parceiros-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.parceiro-item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
}

.parceiro-item img{
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px){
  .modal__title{ font-size: 30px; }
  .modal__header{ padding: 26px 26px 0; }
  .modal__body{ padding: 16px 26px 26px; }
}

/* ====== PLANOS (FUNDO AZUL) ====== */
.plans{
  background: var(--brand);
  padding: 56px 0;
  color:#fff;
}



.plans .container{
  width:100%;
  max-width:none;
  padding-left:16px;
  padding-right:16px;
}

.plans__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.plans__title{
  margin:0 0 6px;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 32px;
  color:#fff;
}
.plans__subtitle{
  margin:0;
  font-weight: 700;
  opacity:.92;
  color: rgba(255,255,255,.92);
}

.plans__controls{ display:flex; gap:10px; }
.plans__btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 24px;
  line-height: 1;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.plans__btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.30);
}
.plans__btn:disabled{ opacity:.45; cursor:not-allowed; }

/* viewport + trilho com espaço p/ rolar suave */
.plans__viewport{
  overflow:hidden;
  border-radius: 24px;
}

.plans__track{
  display:flex;
  gap: 18px;
  padding: 14px 10px 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /* dá “respiro” nas laterais p/ não ficar apertado */
  scroll-padding-left: 10px;
  scroll-padding-right: 10px;
}

.plans__track::-webkit-scrollbar{ height: 10px; }
.plans__track::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.22);
  border-radius: 999px;
}
.plans__track::-webkit-scrollbar-track{
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}

/* ====== CARD (MOBILE FIRST) ====== */
.plan-card{
  flex: 0 0 86%;
  scroll-snap-align: center;
  perspective: 1100px;
}

.plan-card__inner{
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;

  position:relative;
  height: 380px;
  border-radius: 18px;

  transform-style: preserve-3d;
  transition: transform .62s cubic-bezier(.2,.7,.2,1), filter .2s ease;
  text-align:left;
}

/* Faces */
.plan-card__face{
  position:absolute;
  inset:0;
  border-radius: 18px;
  backface-visibility: hidden;
  overflow:hidden;

  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 48px rgba(0,0,0,.20);
}

/* Frente */
.plan-card__front{
  background: rgba(255,255,255,.11);
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

/* Topo com ícone */
.plan-card__top{
  display:flex;
  align-items:center;
  gap: 10px;
}

.plan-card__icon{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}

.plan-card--featured .plan-card__icon{
  filter: drop-shadow(0 10px 18px rgba(61,5,177,.18));
}
.plan-card__tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .35px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.10);
}

.plan-card__name{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 16px;
  line-height: 1.2;
}

.plan-card__price{
  margin-top:auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.plan-card__row{
  display:flex;
  align-items:flex-end;
  gap: 8px;
  margin-top: 10px;
}
.plan-card__row--secondary{ opacity:.95; }

.plan-card__currency{ font-weight: 900; opacity:.95; }
.plan-card__value{
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
}
.plan-card__value small{ font-size: 14px; opacity:.95; }
.plan-card__value--small{ font-size: 24px; }
.plan-card__cycle{ font-weight: 900; opacity:.95; margin-bottom: 3px; }

.plan-card__save{ margin-top: 10px; font-size: 12px; opacity:.95; }
.plan-card__hint{ margin-top: 10px; font-size: 12px; opacity:.85; }

/* Verso */
.plan-card__back{
  background: rgba(10, 0, 40, .58);
  transform: rotateY(180deg);
  padding: 18px;

  text-align:left;
}
.plan-card__backtitle{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 16px;
}
.plan-card__list{
  margin:0;
  padding-left: 18px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-size: 13px;
  opacity: .96;

  text-align:left;
}

/* Flip no desktop por hover */
@media (hover:hover) and (pointer:fine){
  .plan-card:hover .plan-card__inner{
    transform: rotateY(180deg);
  }
}

/* ====== DESTAQUE OURO ====== */
/* cor diferente e mais "punch" */
.plan-card--featured{
  flex-basis: 92%;
}
.plan-card--featured .plan-card__face{
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 24px 68px rgba(0,0,0,.28);
}
.plan-card--featured .plan-card__front{
  /* OURO com tom “diferente” sem quebrar a paleta */
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,215,0,.10) 100%);
}
.plan-card--featured .plan-card__tag{
  background: rgba(255, 215, 0, .16);
  border-color: rgba(255, 215, 0, .28);
}

/* selo */
.plan-card__ribbon{
  position:absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .3px;
  color: var(--brand);
  background: #fff;
}

/* Desktop: cards menores e mais “respiro” */
@media (min-width: 920px){
  .plan-card{ flex: 0 0 320px; }
  .plan-card--featured{ flex: 0 0 360px; }
  .plan-card__inner{ height: 390px; }
}


/* Garante que nada fique com texto preto por herança */
/* Removed: .plans color inheritance reset (was overriding .plans {color:#fff} and turning text black) */

/* Cards normais: fundo translúcido e texto branco */
.plan-card__front,
.plan-card__back{
  color:#fff;
}

/* Ajuste: valores e textos sempre claros */
.plan-card__name,
.plan-card__currency,
.plan-card__value,
.plan-card__cycle,
.plan-card__save,
.plan-card__hint,
.plan-card__backtitle,
.plan-card__list{
  color:#fff;
}

/* Tag padrão nos cards */
.plan-card__tag{
  color:#fff;
}

/* ====== OURO: ÚNICO COM FUNDO BRANCO + TEXTO AZUL ====== */
.plan-card--featured .plan-card__face{
  border-color: rgba(255,255,255,.38);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}

/* frente do OURO: branco */
.plan-card--featured .plan-card__front{
  background: #ffffff;
  color: var(--brand);
}

/* tudo dentro da frente do OURO fica azul */
.plan-card--featured .plan-card__front *{
  color: var(--brand) !important;
}

/* linha separadora no OURO */
.plan-card--featured .plan-card__price{
  border-top-color: rgba(61,5,177,.18);
}

/* tag OURO com borda azul */
.plan-card--featured .plan-card__tag{
  background: rgba(61,5,177,.08);
  border: 1px solid rgba(61,5,177,.22);
  color: var(--brand) !important;
}

/* selo "Mais procurado" do OURO */
.plan-card--featured .plan-card__ribbon{
  background: var(--brand);
  color:#fff !important;
}

.stats{
  background:#fff;
  padding:64px 20px;
  text-align:center;
}

.stats-title{
  font-size:1.6rem;
  color:var(--brand);
  margin-bottom:40px;
}

.stats-grid{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:40px;
}

.stat-number{
  font-size:2.6rem;
  font-weight:700;
  color:var(--brand);
  display:block;
}

.stat-label{
  margin-top:8px;
  color:#555;
  font-size:1rem;
}

/* tablet */
@media(min-width:768px){

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

.stat-number{
  font-size:3.2rem;
}

}

/* desktop */

@media(min-width:1024px){

.stats{
  padding:80px 20px;
}

/* ====== CONTATO (FUNDO BRANCO) ====== */
.contact{
  background:#fff;
  padding: 64px 0;
}

.contact__title{
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 34px;
  text-align: center;
}

.contact__lead{
  margin: 0 auto 24px;
  max-width: 70ch;
  color: #374151;
  text-align: center;
}

.contact__panel{
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 46px rgba(0,0,0,.08);
  padding: 18px 16px;

  display: grid;
  gap: 16px;
}

.contact__item{
  margin: 0 0 8px;
  color: #111827;
}

.contact__k{
  font-weight: 800;
  color: var(--brand);
  margin-right: 6px;
}

.contact__v{
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__note{
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.contact__cta{
  display:flex;
  justify-content:center;
}

@media (min-width: 768px){
  .contact__title{ font-size: 40px; }
  .contact__panel{
    grid-template-columns: 1.3fr .7fr;
    align-items: center;
    padding: 22px 22px;
  }
  .contact__cta{ justify-content:flex-end; }
}

/* ====== MODAL: CONTATO (layout + formulário) ====== */
.contact-modal__grid{
  display: grid;
  gap: 18px;
}

.contact-modal__h{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}

.contact-modal__line{
  margin: 0 0 10px;
  display: grid;
  gap: 2px;
}

.contact-modal__k{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.68);
}

.contact-modal__v{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-modal__hint{
  margin: 6px 0 16px;
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

.contact-modal__hours{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
}

.contact-modal__hours span{
  color: rgba(255,255,255,.70);
  font-size: 0.95em;
}

.contact-form__grid{
  display: grid;
  gap: 12px;
}

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

.field__label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.68);
}

.field__input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.94);
  padding: 12px 12px;
  min-height: 44px;
  outline: none;
}

/* Select (combobox): evita dropdown branco no modal escuro */
.field__input option{
  background: #0b1020;
  color: rgba(255,255,255,.94);
}

.field__input::placeholder{ color: rgba(255,255,255,.45); }

.field__input:focus{
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 0 0 3px rgba(255,255,255,.12);
}

.field--full{ grid-column: 1 / -1; }

.field__textarea{ resize: vertical; min-height: 120px; }

.contact-form__actions{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

/* botão do formulário segue padrão do site, mas no modal ocupa 100% no mobile */
.contact-form__actions .btn{
  width: 100%;
  min-width: 0;
}

.contact-form__small{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.74);
}

.form-status{
  margin: 12px 0 0;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}

.form-status.is-error{
  border-color: rgba(255,120,120,.35);
  background: rgba(255,120,120,.10);
}

.hp{
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (min-width: 920px){
  .contact-modal__grid{
    /* dá mais espaço para o formulário e melhora alinhamento visual */
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
    align-items: start;
  }
  .contact-form__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: melhora leitura e evita "aperto" no modal do formulário */
@media (max-width: 520px){
  .modal__dialog{
    width: calc(100% - 16px);
    max-height: 92vh;
  }
  .modal__header{
    padding: 18px 16px 0;
  }
  .modal__body{
    padding: 12px 16px 16px;
  }
  .modal__title{ font-size: 22px; }
  .contact-modal__grid{ gap: 14px; }
  .field__input{ border-radius: 12px; }
}

.stats-grid{
  grid-template-columns:repeat(2,300px);
  justify-content:center;
  gap:80px;
}

}

/* ====== MODAL CLARO (Direttor) ====== */
.modal__dialog--light{
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
}

.modal__title--light{
  color: var(--brand);
}

.modal__subtitle--light{
  color: rgba(11,16,32,.72);
}

.modal__close--light{
  border: 1px solid var(--brand-border);
  background: var(--brand-weak);
  color: var(--brand);
}

.modal__close--light:hover{
  background: rgba(61,5,177,.14);
}

/* Layout do conteúdo Direttor (segue padrão do projeto) */
.direttor{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

.direttor__media{
  display:flex;
  justify-content:center;
  align-items:center;
}

.direttor__phone{
  width: min(280px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(11,16,32,.18));
}

.direttor__content p{
  color: rgba(11,16,32,.78);
  margin: 0 0 14px;
}

/* 🔧 troca o repeat(2) por auto-fit pra não forçar 2 colunas quando não cabe */
.direttor__grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.direttor__card{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 16px 14px;
  min-width: 0; /* 🔧 impede overflow em grid/flex */
}

.direttor__card h3{
  margin: 0 0 8px;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .2px;
}

.direttor__card ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(11,16,32,.78);
}

.direttor__card li{ margin: 6px 0; }

/* 🔧 permite quebrar linha quando faltar espaço */
.direttor__card--download{
  display:flex;
  gap: 16px;
  align-items:center;
  flex-wrap: wrap;
}

.direttor__qr{
  width: 160px;
  min-width: 0;              /* 🔧 mata o estouro */
  flex: 0 1 160px;           /* 🔧 QR ocupa até 160px mas pode encolher */
  display:flex;
  justify-content:center;
  align-items:center;
  background: #fff;
  border: 1px dashed var(--brand-border);
  border-radius: 16px;
  padding: 10px;
}

.direttor__download{
  display:flex;
  flex-direction:column;
  gap: 10px;
  min-width: 0;
  flex: 1 1 260px;           /* 🔧 texto/botão pega o resto e quebra se precisar */
}

/* 🔧 remove min-width que cria barra horizontal (inclusive do btn--flash) */
.direttor__btn{
  min-width: 0 !important;
  width: 100%;
  max-width: 360px;          /* mantém bonito no desktop */
  text-decoration:none;
}

.direttor__fine{
  margin: 0;
  color: rgba(11,16,32,.72);
  font-size: 14px;
}

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

  /* aqui pode manter 1 coluna, mas nem precisa — auto-fit já resolve */
  .direttor__grid{
    grid-template-columns: 1fr;
  }

  .direttor__card--download{
    align-items: flex-start;
  }

  .direttor__qr{
    width: 100%;
    flex: 1 1 100%;
  }

  .direttor__btn{
    max-width: 100%;
  }
}

/* Botão claro “vazado” para fundo escuro (hero) */
.btn--white-ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.26);
  color: #ffffff;
}
.btn--white-ghost:hover{
  background: rgba(255,255,255,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

/* ====== DBVENDA: Banner/Slideshow ====== */
.sys-hero{
  position: relative;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(11,16,32,.08);
}

.sys-hero__media{
  position: relative;
  height: clamp(420px, 56vh, 620px);
  overflow: hidden;
}

.sys-hero__track{
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.sys-hero__track::-webkit-scrollbar{ display:none; }

.sys-hero__slide{
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  scroll-snap-align: start;
}

.sys-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* mesmo “efeito” do hero (degradê por cima) */
.sys-hero__overlay{
  pointer-events:none;
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(3,10,26,.58) 0%, rgba(3,10,26,.40) 30%, rgba(3,10,26,.20) 60%, rgba(3,10,26,.55) 100%);
}

.sys-hero__content{
  position:absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 46px 0 36px;
  color: #fff;
}

.sys-hero__content h1{
  margin:0 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: .2px;
  font-weight: 900;
}

.sys-hero__content p{
  margin:0 0 18px;
  max-width: 720px;
  color: rgba(255,255,255,.90);
}

.sys-hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* botões do slide */
.sys-hero__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(11,16,32,.35);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
  z-index: 2;
}
.sys-hero__nav:hover{
  background: rgba(11,16,32,.55);
  transform: translateY(-50%) scale(1.04);
}
.sys-hero__nav:focus-visible{
  outline: 3px solid rgba(255,255,255,.35);
  outline-offset: 2px;
}

.sys-hero__nav--prev{ left: 18px; }
.sys-hero__nav--next{ right: 18px; }

@media (max-width: 720px){
  .sys-hero__nav{ display:none; } /* mobile: swipe */
}

/* ====== Segmentos ====== */
.segments{
  padding: 70px 0;
}
.segments__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.segments__head h2{
  margin:0;
}
.segments__head p{
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.segments__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.seg-card{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 16px 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  min-width: 0;
  transition: transform .14s ease, box-shadow .14s ease;
}
.seg-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11,16,32,.08);
}
.seg-card__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand-weak);
  border: 1px solid var(--brand-border);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
  color: var(--brand);
}
.seg-card__icon svg{
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.seg-card h3{
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.seg-card p{
  margin: 6px 0 0;
  color: rgba(11,16,32,.72);
  font-size: 13.5px;
}


/* ===== Metalabel / Revenda ===== */
.metalabel-benefits{
  margin-top: 26px;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(61,5,177,.04) 0%, rgba(61,5,177,.08) 100%);
  border: 1px solid rgba(61,5,177,.10);
  box-shadow: 0 18px 40px rgba(61,5,177,.08);
}

.metalabel-benefits__head{
  margin-bottom: 18px;
}

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

.metalabel-benefit{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(61,5,177,.10);
  box-shadow: 0 12px 24px rgba(11,16,32,.05);
}

.metalabel-benefit svg{
  width: 22px;
  height: 22px;
  color: var(--brand);
  flex: 0 0 auto;
}

.metalabel-benefit span{
  color: rgba(61,5,177,.92);
  font-weight: 700;
  line-height: 1.35;
}

.metalabel-price,
.metalabel-calc{
  margin-top: 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(61,5,177,.10);
  box-shadow: 0 24px 48px rgba(31,41,55,.08);
}

.metalabel-price{
  background: linear-gradient(135deg, #1d0b78 0%, #3d05b1 55%, #5316d1 100%);
}

.metalabel-price__content{
  padding: 30px;
}

.metalabel-price__kicker{
  margin: 0 0 8px;
  color: rgba(255,255,255,.82) !important;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .85rem;
}

.metalabel-price h2,
.metalabel-price p{
  color: #fff !important;
}

.metalabel-price h2{
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.metalabel-price p:last-child{
  margin-bottom: 0;
  color: rgba(255,255,255,.88) !important;
}

.metalabel-calc{
  background: #fff;
  padding: 28px;
}

.metalabel-calc__header{
  margin-bottom: 18px;
}

.metalabel-calc__header h2{
  margin-bottom: 8px;
}

.metalabel-calc__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.metalabel-calc__field{
  display: grid;
  gap: 8px;
}

.metalabel-calc__field span{
  color: var(--brand);
  font-weight: 800;
}

.metalabel-calc__field input{
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(61,5,177,.14);
  background: linear-gradient(180deg, rgba(61,5,177,.03) 0%, rgba(61,5,177,.06) 100%);
  color: var(--brand);
  font-size: 1rem;
  font-weight: 700;
  padding: 0 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.metalabel-calc__field input:focus{
  border-color: rgba(61,5,177,.38);
  box-shadow: 0 0 0 4px rgba(61,5,177,.10);
}

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

.metalabel-calc__card{
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(61,5,177,.05) 0%, rgba(61,5,177,.10) 100%);
  border: 1px solid rgba(61,5,177,.10);
}

.metalabel-calc__card small{
  display: block;
  color: rgba(61,5,177,.72);
  font-weight: 700;
  margin-bottom: 8px;
}

.metalabel-calc__card strong{
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1.2;
}

.metalabel-calc__insight{
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1d0b78 0%, #3d05b1 55%, #5316d1 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(61,5,177,.18);
}


.metalabel-faq{
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(61,5,177,.03) 0%, rgba(61,5,177,.06) 100%);
  border: 1px solid rgba(61,5,177,.10);
  box-shadow: 0 24px 48px rgba(31,41,55,.08);
}

.metalabel-faq__head{
  margin-bottom: 18px;
}

.metalabel-faq__head h2{
  margin-bottom: 8px;
}

.metalabel-faq__list{
  display: grid;
  gap: 12px;
}

.metalabel-faq__item{
  border-radius: 18px;
  border: 1px solid rgba(61,5,177,.10);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(31,41,55,.05);
}

.metalabel-faq__item summary{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--brand);
  font-weight: 800;
}

.metalabel-faq__item summary::-webkit-details-marker{
  display: none;
}

.metalabel-faq__item summary svg{
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform .2s ease;
}

.metalabel-faq__item[open] summary svg{
  transform: rotate(180deg);
}

.metalabel-faq__answer{
  padding: 0 20px 18px;
  color: rgba(61,5,177,.86);
  line-height: 1.7;
}

.metalabel-faq__answer p{
  margin: 0;
}

.metalabel-faq__answer a{
  font-weight: 800;
}

.metalabel-exit .modal__body{
  padding-top: 8px;
}

.metalabel-exit__lead{
  color: rgba(61,5,177,.86);
  font-size: 1.05rem;
  line-height: 1.7;
}

.metalabel-exit__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

@media (max-width: 920px){
  .metalabel-benefits__grid,
  .metalabel-calc__grid,
  .metalabel-calc__results{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .metalabel-benefits,
  .metalabel-calc,
  .metalabel-faq,
  .metalabel-price__content{
    padding: 20px;
  }

  .metalabel-benefits__grid,
  .metalabel-calc__grid,
  .metalabel-calc__results{
    grid-template-columns: 1fr;
  }

  .metalabel-calc__card strong{
    font-size: 1.3rem;
  }
}


/* Espaçamento entre FAQ e cards PDV / ERP */
.metalabel-faq{
  margin-bottom: 44px;
}

.metalabel-faq + .grid.grid--2{
  margin-top: 0;
}
