/* =========================================================
   styles.css — VITRINE PROFISSIONAL (clean + marketplace)
   - Layout responsivo
   - Cards com micro-animações
   - Modal suave
   - Footer fixo no fim (sticky footer)
   - Botões menores e alinhados
   - Imagens com altura equilibrada
   Obs: as imagens estão em object-fit: cover (preenche e pode cortar um pouco).

   ✅ ATUALIZAÇÃO (site mais limpo/pro):
   - Corrigido CSS duplicado do drawer (ficou só 1 versão, na DIREITA)
   - Título do card limitado a 2 linhas
   - Cards com altura consistente (botões alinhados no final)
   - CTA usando cor da marca (menos “verde chamativo”)
========================================================= */

:root{
  --bg:#0b1020;
  --text:#eef2ff;
  --muted: rgba(238,242,255,.72);

  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.04);

  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.16);

  --brand:#7c3aed;     /* cor principal */
  --cta:#7c3aed;       /* CTA agora acompanha a marca */

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;

  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow2: 0 18px 60px rgba(0,0,0,.55);

  /* Controle rápido do design */
  --card-cover-h: 165px;
  --card-cover-h-mobile: 185px;

  color-scheme: dark;
}

/* Reset básico */
*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height: 1.45;
  color: var(--text);

  background:
    radial-gradient(900px 560px at 18% 0%, rgba(124,58,237,.14), transparent 60%),
    radial-gradient(900px 560px at 82% -10%, rgba(34,197,94,.10), transparent 60%),
    var(--bg);

  /* Sticky footer */
  min-height: 100vh;
  display:flex;
  flex-direction:column;

  overflow-x:hidden;
}

a{ color: inherit; }

.container{ width:min(1120px, 92vw); margin:0 auto; }
main{ flex: 1; padding-bottom: 22px; }

/* Acessibilidade: foco visível */
:where(a, button, input, select):focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(124,58,237,.28);
  border-color: rgba(124,58,237,.45);
}

/* =========================================================
   Animações
========================================================= */
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}

@keyframes modalIn{
  from{ opacity:0; transform: translateY(10px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* =========================================================
   Header
========================================================= */
.topbar{
  position: sticky;
  top: 0;
 z-index: 10;

  background: rgba(11,16,32,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.brand__logo{ font-size: 24px; opacity: .95; }
.brand__name{ font-weight: 950; letter-spacing: .2px; }
.brand__tag{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Inputs */
.input, .select{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--stroke);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  outline: none;
}

.input{ width: min(360px, 52vw); } /* um pouco mais clean */

/* Select sem fundo branco */
.select{
  max-width: 240px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;

  background-image:
    linear-gradient(45deg, transparent 50%, rgba(238,242,255,.70) 50%),
    linear-gradient(135deg, rgba(238,242,255,.70) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.select option{
  background: #0b1020;
  color: var(--text);
}

/* =========================================================
   Hero
========================================================= */
.hero{ padding: 24px 0 10px; }
.hero h1{
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.2px;
}
.hero p{ margin: 0 0 14px; color: var(--muted); }

.hero__badges{ display:flex; gap: 10px; flex-wrap: wrap; }
.badge{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.25);
  color: rgba(238,242,255,.92);
  font-size: 12px;
}

/* =========================================================
   Grid / Cards
========================================================= */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 10px 0 26px;
}

/* Largura dos cards por breakpoint */
@media (min-width: 1200px){
  .card{ grid-column: span 3; } /* 4 por linha */
}
@media (min-width: 900px) and (max-width: 1199px){
  .card{ grid-column: span 4; } /* 3 por linha */
}
@media (max-width: 899px){
  .card{ grid-column: span 6; } /* 2 por linha */
}
@media (max-width: 560px){
  .card{ grid-column: span 12; } /* 1 por linha */
}

.card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);

  background: linear-gradient(180deg, var(--surface), var(--surface2));
  box-shadow: var(--shadow);

  display:flex;
  flex-direction:column;

  animation: fadeUp .30s ease both;

  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  border-color: rgba(255,255,255,.18);
}

/* Imagem do card */
.cover{
  height: var(--card-cover-h);
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--stroke);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: rgba(238,242,255,.90);
}

.cover img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

/* Se não tiver imagem */
.cover > div{
  padding: 14px;
  text-align:center;
}

@media (max-width: 680px){
  .cover{ height: var(--card-cover-h-mobile); }
}

.card__body{
  padding: 12px;
  display:flex;
  flex-direction:column;
  gap: 9px;

  height: 100%; /* ✅ cards com altura consistente */
}

/* ✅ Título no máximo 2 linhas (limpo) */
.title{
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .1px;
  font-weight: 950;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta{
  display:flex;
  flex-wrap:wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.pill{
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: 11px;
}

.price{
  font-weight: 950;
  font-size: 17px;
}
.old{
  color: var(--muted);
  text-decoration: line-through;
  font-size: 12px;
  margin-left: 8px;
}

/* Botões menores e alinhados */
.btnRow{
  display:flex;
  gap: 8px;

  margin-top: auto; /* ✅ empurra botões para o final do card */
}

.btn{
  cursor:pointer;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;

  flex: 1;
  min-width: 0;

  transition: transform .06s ease, filter .15s ease, border-color .15s ease;
}

.btn:hover{ filter: brightness(1.06); }
.btn:active{ transform: translateY(1px); }
.btn:disabled{ opacity: .55; cursor: not-allowed; }

/* CTA com cor da marca (mais profissional) */
.btn--cta{
  flex: 1.35;
  background: rgba(124,58,237,.18);
  border-color: rgba(124,58,237,.35);
}

/* Empty */
.empty{
  border: 1px dashed var(--stroke);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* =========================================================
   Modal (Detalhes)
========================================================= */
.modal{ position: fixed; inset: 0; display:none; z-index: 100; }
.modal[aria-hidden="false"]{ display:block; }

.modal__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.60); }

.modal__content{
  position: relative;
  width: min(920px, 92vw);
  margin: 7vh auto;

  background: rgba(15,20,38,.96);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 22px 80px rgba(0,0,0,.55);

  animation: modalIn .18s ease both;
}

.modal__close{
  position:absolute;
  top: 10px;
  right: 10px;

  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 10px;
  padding: 7px 9px;
  cursor:pointer;
}

.modal__body{
  padding: 18px;
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
}

/* Modal cover */
.mCover{
  height: 260px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}

.mCover img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

.mTitle{ margin: 0 0 6px; }

/* ✅ Modal mais limpo (se a descrição for grande, não estoura) */
.mDesc{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mList{ margin: 0; padding-left: 18px; color: var(--muted); }

/* Ações do modal (Voltar + Comprar agora) */
.mActions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* =========================================================
   Mobile
========================================================= */
@media (max-width: 680px){
  .topbar__inner{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0;
  }

  .actions{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .input, .select{
    width: 100%;
    max-width: none;
  }

  .modal__content{
    width: 94vw;
    margin: 3vh auto;
    max-height: 94vh;
    overflow: hidden;
  }

  .modal__body{
    grid-template-columns: 1fr;
    max-height: 94vh;
    overflow: auto;
    padding: 14px;
  }

  .mCover{ height: 220px; }
}

/* =========================================================
   MENU LATERAL (Drawer) — versão FINAL (na DIREITA)
========================================================= */

/* Botão hambúrguer */
.menuBtn{
  width: 42px;
  height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: 12px;
  cursor:pointer;

  transition: filter .15s ease, transform .06s ease, border-color .15s ease;
}
.menuBtn:hover{ filter: brightness(1.06); }
.menuBtn:active{ transform: translateY(1px); }

.menuBtn__bars{
  width: 18px;
  height: 12px;
  position: relative;
  display:block;
}
.menuBtn__bars::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:2px;
  background: rgba(238,242,255,.90);
  border-radius: 999px;
  box-shadow: 0 5px 0 rgba(238,242,255,.90), 0 10px 0 rgba(238,242,255,.90);
}

/* Base */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}
.drawer[aria-hidden="false"]{ display:block; }

.drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}

/* Painel na direita */
.drawer__panel{
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  height:100%;
  width: min(320px, 86vw);

  background: rgba(15,20,38,.98);
  border-left: 1px solid rgba(255,255,255,.12);
  box-shadow: -30px 0 80px rgba(0,0,0,.55);

  transform: translateX(105%);
  transition: transform .18s ease;
  display:flex;
  flex-direction:column;
}
.drawer[aria-hidden="false"] .drawer__panel{
  transform: translateX(0);
}

.drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.drawer__brand{ display:flex; align-items:center; gap: 10px; }
.drawer__logo{ font-size: 22px; opacity: .95; }
.drawer__name{ font-weight: 950; }
.drawer__tag{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.drawer__close{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  cursor:pointer;
}

.drawer__content{
  padding: 12px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.drawer__link{
  text-decoration: none;
  color: rgba(238,242,255,.90);
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
}
.drawer__link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}

.drawer__divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 6px 4px;
}

.drawer__link--cta{
  background: rgba(34,197,94,.18);
  border-color: rgba(34,197,94,.35);
  font-weight: 900;
}

/* =========================================================
   Páginas legais (Política / Termos)
========================================================= */
.legal{
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.legal h1{
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.2px;
}

.legal h2{
  margin: 16px 0 8px;
  font-size: 16px;
}

.legal p, .legal li{
  color: var(--muted);
  line-height: 1.75;
}

.legal strong{ color: var(--text); }
.muted{ color: var(--muted); }
/* =========================================================
   Depoimentos (Comentários na página)
========================================================= */
/* =========================================================
   Depoimentos com Avatar
========================================================= */
.testimonials{
  padding: 10px 0 18px;
}

.testimonials__title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.2px;
}

.testimonials__subtitle{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.testimonials__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.tCard{
  grid-column: span 4;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.tCard__text{
  margin: 0 0 12px;
  color: rgba(238,242,255,.88);
  line-height: 1.7;
}

.tCard__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.tUser{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.tAvatar,
.tAvatarFallback{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(124,58,237,.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  object-fit: cover;
  flex: 0 0 auto;
}

.tAvatarFallback{
  font-weight: 950;
  color: rgba(238,242,255,.92);
}

.tUser__info{
  display:flex;
  flex-direction:column;
  gap: 2px;
  min-width: 0;
}

.tCard__name{
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tCard__meta{
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tStars{
  color: rgba(255, 214, 102, .95); /* dourado */
  letter-spacing: 1px;
  font-size: 12px;
  flex: 0 0 auto;
}

@media (max-width: 900px){
  .tCard{ grid-column: span 6; }
}
@media (max-width: 560px){
  .tCard{ grid-column: span 12; }
}/* =========================================================
   FAQ (Perguntas Frequentes)
   Cole no FINAL do styles.css
========================================================= */
/* =========================================================
   FAQ (fix: não abrir "caixinha vazia")
========================================================= */
.faq{
  padding: 10px 0 22px;
}

.faq__title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.2px;
}

.faq__subtitle{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.faq__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.faqItem{
  grid-column: span 6;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 0;

  /* ✅ IMPORTANTE: não pode esconder o conteúdo expandido */
  overflow: visible;
}

.faqItem__q{
  cursor:pointer;
  list-style: none;
  padding: 14px 14px;
  font-weight: 950;
  letter-spacing: .1px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.faqItem__q::-webkit-details-marker{ display:none; }

.faqItem__q::after{
  content:"";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(238,242,255,.85);
  border-bottom: 2px solid rgba(238,242,255,.85);
  transform: rotate(45deg);
  transition: transform .15s ease;
  opacity: .8;
}

details[open] .faqItem__q::after{
  transform: rotate(225deg);
}

.faqItem__a{
  padding: 0 14px 14px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.08);
  /* Garantia: a resposta do FAQ sempre aparece */
  display: block !important;
  color: #eaf0ff !important; /* ajuste se seu tema for diferente */
  font-size: 14px !important;
}


@media (max-width: 900px){
  .faqItem{ grid-column: span 12; }
}/* =========================================================
   FooterPro (NOVO) — clean + alinhado
   - Desktop: 5 colunas (newsletter na direita)
   - Tablet: 2 colunas
   - Mobile: 1 coluna
========================================================= */
/* =========================================================
   FOOTER PRO (v2) — mais profissional / premium
   Substitua TODO o bloco atual do footer (footerPro...) por este.
   (Deixe o resto do CSS como está.)
========================================================= */

.footerPro{
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 300px at 85% -10%, rgba(124,58,237,.12), transparent 60%),
    radial-gradient(700px 300px at 15% 0%, rgba(34,197,94,.08), transparent 60%),
    rgba(255,255,255,.02);
}

.footerPro__top{
  padding: 26px 0 22px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.1fr 1.5fr; /* newsletter na última */
  gap: 18px;
  align-items: start;
}

.footerPro__col{
  min-width: 0;
}

/* Cabeçalhos */
.footerPro__logo{
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 18px;
  margin: 0 0 8px;
}

.footerPro__title{
  margin: 0 0 10px;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(238,242,255,.90);
}

/* Texto */
.footerPro__text{
  margin: 0;
  color: rgba(238,242,255,.70);
  font-size: 14px;
  line-height: 1.65;
}

/* Links mais “premium” */
.footerPro__links{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.footerPro__links a{
  position: relative;
  color: rgba(238,242,255,.72);
  text-decoration: none;
  width: fit-content;
  padding-bottom: 3px;
  transition: color .15s ease;
}

.footerPro__links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.14);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .15s ease;
}

.footerPro__links a:hover{
  color: rgba(238,242,255,.92);
}

.footerPro__links a:hover::after{
  transform: scaleX(1);
}

/* Trust pills menores e mais elegantes */
.footerPro__trust{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 12px;
}

.trustPill{
  font-size: 12px;
  color: rgba(238,242,255,.86);
  background: rgba(124,58,237,.10);
  border: 1px solid rgba(124,58,237,.22);
  padding: 7px 10px;
  border-radius: 999px;
}

/* Pagamento */
.footerPro__pay{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payChip{
  font-size: 12px;
  color: rgba(238,242,255,.70);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 7px 10px;
  border-radius: 999px;
}

/* ============ Newsletter ============ */
.footerPro__col--newsletter{
  justify-self: end;
  text-align: right;
}

.footerPro__col--newsletter .nl{
  margin-top: 10px;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}

.footerPro__col--newsletter .nl__label{
  display:block;
  font-size: 12px;
  color: rgba(238,242,255,.70);
  margin-bottom: 6px;
}

.footerPro__col--newsletter .nl__row{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
}

.footerPro__col--newsletter .nl__input{
  flex: 1 1 auto;
  min-width: 0;
  max-width: 250px;
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,12,18,.35);
  color: rgba(238,242,255,.92);
  transition: border-color .15s ease, background .15s ease;
}

.footerPro__col--newsletter .nl__input:focus{
  border-color: rgba(124,58,237,.55);
  background: rgba(10,12,18,.50);
}

.footerPro__col--newsletter .nl__btn{
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(124,58,237,.35);
  background: rgba(124,58,237,.22);
  color: rgba(238,242,255,.94);
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .15s ease, transform .06s ease;
}

.footerPro__col--newsletter .nl__btn:hover{
  filter: brightness(1.08);
}

.footerPro__col--newsletter .nl__btn:active{
  transform: translateY(1px);
}

.footerPro__col--newsletter .nl__hint{
  display:block;
  margin-top: 8px;
  color: rgba(238,242,255,.62);
  line-height: 1.45;
  font-size: 12px;
}

/* Bottom bar */
.footerPro__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0 18px;
}

.footerPro__simpleLine{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(238,242,255,.62);
}

.footerPro__bottom a{
  color: rgba(238,242,255,.72);
  text-decoration: none;
}

.footerPro__bottom a:hover{
  color: rgba(238,242,255,.92);
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 1020px){
  .footerPro__top{
    grid-template-columns: 1fr 1fr;
  }

  .footerPro__col--newsletter{
    justify-self: start;
    text-align: left;
  }

  .footerPro__col--newsletter .nl{
    margin-left: 0;
    max-width: 100%;
  }

  .footerPro__col--newsletter .nl__row{
    flex-direction: column;
    align-items: stretch;
  }

  .footerPro__col--newsletter .nl__input{
    max-width: 100%;
  }

  .footerPro__col--newsletter .nl__btn{
    width: 100%;
  }

  .footerPro__simpleLine{
    justify-content: flex-start;
  }
}

@media (max-width: 640px){
  .footerPro__top{
    grid-template-columns: 1fr;
  }
  .footerPro__col--newsletter{
    justify-self: start;
    text-align: left;
  }
}

.ticker{
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #6d28d9, #2563eb);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
  z-index: 90;
}
.ticker__track{
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  padding: 10px 0;
  animation: tickerMove 16s linear infinite;
}

.ticker__track span{
  font-weight: 900;
  padding-left: 16px;
}

@keyframes tickerMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-33.333%); }
}

@media (prefers-reduced-motion: reduce){
  .ticker__track{ animation: none; justify-content: center; }
}