/* ==========================================================
   EXOSPRO OVERRIDES (LIMPO E DEFINITIVO)
   - Mantém o template intacto (style-all.css)
   - Sobrescreve somente o necessário para o visual ExosPro
========================================================== */



/* ===== Tokens / Variáveis ===== */
:root{
  --header-h: 160px;     /* altura REAL do header */
  --header-h-m: 92px;    /* altura no mobile */

  --nav-h: 48px;         /* altura REAL dos links do menu (22 é baixo demais) */

  --bg-0:#0F1216;
  --bg-1:#141A21;
  --txt-0:#F5F7F8;
  --txt-1:#A7B1BA;
  --aqua:#2FD4C7;

  --header-bg: rgba(18,20,23,.62);
  --header-border: rgba(255,255,255,.08);
}


/* ===== Reset somente no site ExosPro ===== */
body.exospro{
  background: var(--bg-0);
  color: var(--txt-1);
  padding-top: var(--header-h);
  overflow-x: hidden;
}

body.exospro a{ color: var(--txt-0); }
body.exospro a:hover{ color: var(--aqua); }

body.exospro h1, body.exospro h2, body.exospro h3,
body.exospro h4, body.exospro h5, body.exospro h6{
  color: var(--txt-0);
}

/* Se AOS estiver “sumindo” elementos */
body.exospro [data-aos]{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ==========================================================
   HEADER (blur + translúcido) + LOGO + MENU
========================================================== */

header.site-navbar{
  position: fixed !important;
  top: 0; left: 0; right: 0;

  height: var(--header-h);              /* FIX: era var(-header-h) */
  z-index: 4000;

  display: flex;
  align-items: flex-end;                 /* FIX: era fixed-end (inválido) */
  padding-bottom: 8px;

  background: var(--header-bg) !important;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--header-border);
  overflow: visible !important;
}

/* Quando “sticky” (se o template usa wrapper) */
.sticky-wrapper.is-sticky header.site-navbar,
.sticky-wrapper.is-sticky .site-navbar{
  background: rgba(18,20,23,.78) !important;
}

/* Grid do header: não quebrar linha */
header.site-navbar .row{
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

/* Logo */
header.site-navbar img.brand-logo{
  height: 200px;          /* se quiser respiro, use 160–180 */
  width: auto;
  max-height: none;
  display: block;
}

/* Container: mais respiro lateral */
@media (min-width: 1200px){
  header.site-navbar .container{
    padding-left: 32px !important;
    padding-right: 32px !important;
    max-width: 1320px;
  }
}

@media (max-width: 991.98px){
  header.site-navbar img.brand-logo{ height: 48px; }
}

/* Desktop x Mobile: nunca aparecem juntos */
@media (min-width: 1200px){
  header.site-navbar .burger{ display:none !important; }
  header.site-navbar .site-navigation{ display:block !important; }
  header.site-navbar .site-menu.main-menu{ display:flex !important; }
}
@media (max-width: 1199.98px){
  header.site-navbar .site-navigation{ display:none !important; }
  header.site-navbar .site-menu.main-menu{ display:none !important; }
  header.site-navbar .burger{ display:inline-block !important; }
}

/* Menu base */
header.site-navbar .site-navigation .site-menu{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* Links do menu (exceto CTA) */
header.site-navbar .site-navigation .site-menu > li:not(.cta-menu) > a{
  position: relative;
  height: var(--header-h);
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 14px !important;
  line-height: 1 !important;

  font-weight: 500 !important;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;

  color: rgba(245,247,248,.86) !important;
  text-decoration: none !important;

  transition: color .18s ease, transform .18s ease;
}

/* Neutraliza <b> do HTML */
header.site-navbar .site-navigation .site-menu > li > a b{
  font-weight: 500 !important;
}

/* Hover micro */
header.site-navbar .site-navigation .site-menu > li:not(.cta-menu) > a:hover{
  color: var(--aqua) !important;
  transform: translateY(-1px);
}

header.site-navbar .site-navigation .site-menu > li:not(.cta-menu) > a:hover::after,
header.site-navbar .site-navigation .site-menu > li.active:not(.cta-menu) > a::after{
  transform: scaleX(1);
}

/* CTA separado (não herda altura gigante) */
header.site-navbar .site-navigation .site-menu > li.cta-menu > a{
  height: auto !important;
  padding: 12px 22px !important;
  border-radius: 999px;
  background: #2FD4C7;
  color: #0F1216 !important;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
header.site-navbar .site-navigation .site-menu > li.cta-menu > a:hover{
  background: #1CB3A6;
  color: #0F1216 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47,212,199,.25);
}

/* ==========================================================
   HERO (premium)
========================================================== */

body.exospro .hero-section{
  padding: 60px 0 60px !important;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(47,212,199,.12), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%) !important;
}
body.exospro .hero-section h1{ margin-top: 0 !important; }

/* ==========================================================
   SECTIONS (cards premium)
========================================================== */
body.exospro .site-section{ padding: 30px 0 !important; }

body.exospro .site-section .text-center{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 38px 28px;
  transition: .25s ease;
}
body.exospro .site-section .text-center:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.05);
  border-color: rgba(47,212,199,.22);
}

/* ==========================================================
   MOBILE
========================================================== */
@media (max-width: 991.98px){
  body.exospro{ padding-top: var(--header-h-m); }

  header.site-navbar{ height: var(--header-h-m); }

  header.site-navbar img.brand-logo{
    height: 44px;
    width: auto;
  }
}

/* =====================================
   DROPDOWN DEFINITIVO EXOSPRO
===================================== */

header.site-navbar .site-menu > li.has-children{
  position: relative !important;
}

/* base do dropdown: fechado */
header.site-navbar .site-menu > li.has-children > .dropdown{
  position: absolute !important;
  top: calc(var(--nav-h) - 6px) !important; /* AJUSTADO AQUI */
  left: 0 !important;
  z-index: 99999 !important;

  min-width: 280px;
  padding: 10px 0 !important;
  margin: 0 !important;

  background: rgba(15,18,22,.98) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.45) !important;
  backdrop-filter: blur(12px) saturate(120%);

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(6px) !important;

  transition: opacity .18s ease, transform .18s ease !important;
}

/* abre no hover */
header.site-navbar .site-menu > li.has-children:hover > .dropdown,
header.site-navbar .site-menu > li.has-children:focus-within > .dropdown{
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* itens */
header.site-navbar .site-menu > li.has-children > .dropdown > li{
  list-style: none !important;
}

header.site-navbar .site-menu > li.has-children > .dropdown a{
  display: block !important;
  padding: 10px 18px !important;
  color: rgba(245,247,248,.88) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

header.site-navbar .site-menu > li.has-children > .dropdown a:hover{
  background: rgba(255,255,255,.06) !important;
  color: #2FD4C7 !important;
}


/* =====================================
   DROPDOWN DEFINITIVO EXOSPRO (HOVER)
   Cole no FINAL do exospro-overrides.css
===================================== */

@media (min-width: 1200px){

  /* garante contexto do dropdown */
  header.site-navbar,
  header.site-navbar .container,
  header.site-navbar .row{
    overflow: visible !important;
  }

  header.site-navbar .site-menu > li.has-children{
    position: relative !important;
  }


  header.site-navbar .site-menu > li > a{
    height: var(--nav-h);
  } 

  header.site-navbar .site-menu > li > a::after{
    content:"";
    position:absolute;
    left: 10px;
    right: 10px;
    bottom: 0;              /* <<< CORRIGIDO */
    height: 2px;
    background: #2FD4C7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
    border-radius: 999px;
  }

  header.site-navbar .site-menu > li:hover > a::after,
  header.site-navbar .site-menu > li.active > a::after{
    transform: scaleX(1);
  }


  /* ABRE no hover (e mantém aberto quando passa pro dropdown) */
  header.site-navbar .site-menu > li.has-children:hover > .dropdown,
  header.site-navbar .site-menu > li.has-children:focus-within > .dropdown{
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/* ==========================================================
   Dropdown + Caret moderno (SEM icofont) — FIX DEFINITIVO
   Cole NO FIM do exospro-overrides.css
========================================================== */

@media (min-width: 1200px){

  /* Mata o ícone antigo do template (icofont) */
  header.site-navbar .site-navigation .site-menu .has-children > a:before{
    content: none !important;
    display: none !important;
  }

  /* garante que o caret (pseudo-elemento) posicione certo */
  header.site-navbar .site-navigation .site-menu > li.has-children > a{
    position: relative !important;
    padding-right: 34px !important;
  }

  /* Caret moderno */
  header.site-navbar .site-navigation .site-menu > li.has-children > a::before{
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(245,247,248,.86);
    border-bottom: 2px solid rgba(245,247,248,.86);
    transform: translateY(-50%) rotate(45deg);
    transition: transform .2s ease, border-color .2s ease;
    pointer-events: none; /* não “rouba” o hover */
  }

  header.site-navbar .site-navigation .site-menu > li.has-children:hover > a::before{
    transform: translateY(-50%) rotate(225deg);
    border-color: var(--aqua);
  }

  /* Dropdown: força comportamento (independente do template) */
  header.site-navbar .site-navigation .site-menu > li.has-children{
    position: relative !important;
  }

  /* Nada pode cortar o dropdown */
  header.site-navbar,
  header.site-navbar .container,
  header.site-navbar .row{
    overflow: visible !important;
  }

  /* Base: ESCONDIDO (isso é o que faltava) */
  header.site-navbar .site-navigation .site-menu > li.has-children > .dropdown{
    display: block !important; /* evita display:none do template */
    position: absolute !important;
    top: calc(100%) !important; /* <<< embaixo do menu */
    left: 0 !important;

    min-width: 280px;
    padding: 10px 0;
    border-radius: 14px;
    background: rgba(15,18,22,.98);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
    z-index: 99999 !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform: translateY(8px) !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
  }

  /* Mostrar no hover */
  header.site-navbar .site-navigation .site-menu > li.has-children:hover > .dropdown,
  header.site-navbar .site-navigation .site-menu > li.has-children:focus-within > .dropdown{
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  /* Itens do dropdown */
  header.site-navbar .site-navigation .site-menu > li.has-children > .dropdown > li{
    list-style: none;
  }

  header.site-navbar .site-navigation .site-menu > li.has-children > .dropdown a{
    display: block;
    padding: 10px 16px;
    color: rgba(245,247,248,.86) !important;
    text-transform: none;
    letter-spacing: .01em;
    font-weight: 500;
    white-space: nowrap;
  }

  header.site-navbar .site-navigation .site-menu > li.has-children > .dropdown a:hover{
    background: rgba(255,255,255,.06);
    color: var(--txt-0) !important;
  }
}

/* MENU: não pode herdar a altura do header */
header.site-navbar .site-navigation .site-menu > li > a{
  height: var(--nav-h) !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* =========================================
   FIX BARRINHA VERDE (vence o bottom:90px)
   cole no FINAL do exospro-overrides.css
========================================= */

@media (min-width: 1200px){

  /* garante que o underline fique no lugar certo */
  header.site-navbar .site-navigation .site-menu > li:not(.cta-menu) > a{
    position: relative !important;
  }

  /* sobrescreve o underline antigo (bottom: 90px) */
  header.site-navbar .site-navigation .site-menu > li:not(.cta-menu) > a::after{
    content: "" !important;
    position: absolute !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 0 !important;                 /* << a correção */
    height: 2px !important;
    background: rgba(47,212,199,.9) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform .18s ease !important;
    border-radius: 999px !important;
    opacity: .9 !important;
  }

  header.site-navbar .site-navigation .site-menu > li:not(.cta-menu) > a:hover::after,
  header.site-navbar .site-navigation .site-menu > li.active:not(.cta-menu) > a::after{
    transform: scaleX(1) !important;
  }
}

/* ==============================
   EXTRAS PREMIUM (opcional)
   Cole no FINAL do overrides
============================== */

/* 1) Dropdown mais premium (animação mais suave) */
header.site-navbar .site-menu > li.has-children > .dropdown{
  transform: translateY(12px);
}
header.site-navbar .site-menu > li.has-children:hover > .dropdown{
  transform: translateY(0);
}

/* 2) Glow suave na barrinha do item ativo */
header.site-navbar .site-menu > li.active > a::after{
  box-shadow: 0 0 12px rgba(47,212,199,.6);
}

/* ===== FIX: espaço entre header e hero ===== */
header.site-navbar{ height: var(--header-h) !important; }
body.exospro{ padding-top: var(--header-h) !important; }

body.exospro .hero-section{
  padding-top: 30px !important;   /* diminui o “vazio” */
}

body.exospro .hero-section h1{ margin-top: 0 !important; }
body.exospro .hero-section .container{ margin-top: 0 !important; }


/* =========================================
   HERO TYPOGRAPHY — EXOSPRO (premium clean)
   Cole no FINAL do exospro-overrides.css
========================================= */

body.exospro .hero-section{
  /* ajusta a “dobra” e evita espaço sobrando */
  padding: 20px 0 20px !important;   /* topo / baixo */
}

body.exospro .hero-section .hero-text-image,
body.exospro .hero-section .hero-text{
  max-width: 980px;          /* largura “premium” */
  margin: 0 auto !important;
  text-align: center;
}

/* Título */
body.exospro .hero-section h1,
body.exospro .exos-hero-title{
  font-size: clamp(2.25rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 750;
  margin: 0 auto !important;
  max-width: 18ch;           /* quebra bonita */
  color: var(--txt-0) !important;
}

/* Subtítulo */
body.exospro .hero-section p,
body.exospro .exos-hero-subtitle{
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin-top: 28px;
  line-height: 1.7;
  color: rgba(245,247,248,.75);
  max-width: 720px;
}

/* CTA: central e com respiro */
body.exospro .hero-section .text-center > a,
body.exospro .exos-hero-cta a{
  margin: 0 !important;
}

body.exospro .hero-section .text-center{
  /* garante que os botões não “grudem” */
  margin-top: 34px !important;
}

body.exospro .hero-section .text-center{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Botões mais “premium” (sem precisar trocar classes) */
body.exospro .hero-section a.btn,
body.exospro .hero-section .btn-exos-primary,
body.exospro .hero-section .btn-exos-outline{
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-weight: 650;
  letter-spacing: .02em;
}

/* Mobile: reduz um pouco o topo */
@media (max-width: 991.98px){
  body.exospro .hero-section{
    padding: 5px 0 5px !important;
  }

  body.exospro .hero-section h1{
    max-width: 20ch;
  }
}

.exospro .hero-section{
  padding: 140px 0 120px !important;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(47,212,199,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%) !important;
}

/* =====================================
   HERO ENTRANCE ANIMATION
===================================== */

.exos-hero-title{
  animation: heroFadeUp .8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.exos-hero-subtitle{
  animation: heroFadeUp .8s ease .2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroFadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.exos-hero-micro{
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,247,248,.55);
}

/* =========================================
   HERO — QUEBRA + DESTAQUE (COMPROMISSO)
========================================= */

.exos-hero-title{
  text-wrap: balance;
  max-width: 18ch;            /* headline emocional fica melhor curto */
  margin: 0 auto !important;
}

.exos-hero-subtitle{
  text-wrap: pretty;
  max-width: 56ch;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* destaque em aqua */
.exos-accent{
  color: var(--aqua);
  text-shadow: 0 0 10px rgba(47,212,199,.12);
}

/* =========================================
   CTA — GLOW SUTIL (premium)
========================================= */

header.site-navbar .site-menu > li.cta-menu > a,
.btn-exos-primary{
  box-shadow: 0 10px 28px rgba(47,212,199,.16);
}

header.site-navbar .site-menu > li.cta-menu > a:hover,
.btn-exos-primary:hover{
  box-shadow: 0 14px 40px rgba(47,212,199,.26);
}

/* =========================================
   HERO — PROFUNDIDADE NO FUNDO
========================================= */

body.exospro .hero-section{
  background:
    radial-gradient(1000px 500px at 50% -15%, rgba(47,212,199,.12), transparent 60%),
    radial-gradient(700px 380px at 15% 20%, rgba(255,255,255,.04), transparent 60%),
    radial-gradient(700px 380px at 85% 30%, rgba(255,255,255,.03), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%) !important;
}

/* =========================================
   STORYTELLING — DOBRA SEGUINTE (cards premium)
========================================= */

.exos-story{
  padding: 34px 0 30px;
}

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

.exos-story-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 28px 26px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.exos-story-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.05);
  border-color: rgba(47,212,199,.22);
}

.exos-story-card h3{
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.exos-story-card p{
  margin: 0;
  color: rgba(167,177,186,.92);
  line-height: 1.65;
}

@media (max-width: 991.98px){
  .exos-story-grid{ grid-template-columns: 1fr; }
}

/* =========================================
   STORY HEAD — TÍTULO + LEAD
========================================= */

.exos-story-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

.exos-eyebrow{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(245,247,248,.78);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.exos-h2{
  margin: 16px 0 10px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--txt-0);
}

.exos-lead{
  margin: 0 auto;
  max-width: 60ch;
  color: rgba(167,177,186,.92);
  line-height: 1.7;
}

/* =========================================
   CATEGORIAS — EXOSPRO (TECH PREMIUM) DEFINITIVO
========================================= */

.exos-cats{
  padding: 20px 0 20px;
}

.exos-cats-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

/* grid */
.exos-cats-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Espaço entre grids de categorias */
.exos-cats-grid + .exos-cats-grid {
  margin-top: 15px;
}


/* card base */
.exos-cat-card{
  position: relative;
  display: block;
  padding: 32px 28px;
  border-radius: 18px;
  text-decoration: none !important;

  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);

  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

/* hover */
.exos-cat-card:hover{
  transform: translateY(-6px);
  border-color: rgba(47,212,199,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}
.exos-cat-card:hover::before{
  background: rgba(47,212,199,.85);
}

.exos-cat-card.is-active::before{
  background: #2FD4C7;
}

/* ÍCONE (SVG inline) */
.exos-cat-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  color: rgba(245,247,248,.84);

  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.exos-cat-icon svg{
  width: 28px;
  height: 28px;
  transition: color .2s ease, transform .2s ease;
}

/* ícone no hover/ativo */
.exos-cat-card:hover .exos-cat-icon,
.exos-cat-card.is-active .exos-cat-icon{
  border-color: rgba(47,212,199,.30);
  background: rgba(47,212,199,.08);
  color: var(--aqua);
  transform: translateY(-2px);
}

/* título + chip */
.exos-cat-top{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.exos-cat-card h3{
  margin: 0;
  font-size: 15px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(245,247,248,.92);
}

.exos-cat-chip{
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(167,177,186,.92);
  font-size: 11.5px;
  line-height: 1;
  white-space: nowrap;
}

/* chip no ativo */
.exos-cat-card.is-active .exos-cat-chip{
  border-color: rgba(47,212,199,.22);
  background: rgba(47,212,199,.07);
  color: rgba(245,247,248,.90);
}

.exos-cat-card p{
  margin: 0 0 18px;
  color: rgba(167,177,186,.94);
  line-height: 1.65;
}

.exos-cat-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,247,248,.86);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
}
.exos-arrow{
  display: inline-block;
  transition: transform .18s ease;
}
.exos-cat-card:hover .exos-arrow{
  transform: translateX(5px);
}
.exos-cat-card.is-active .exos-arrow{
  transform: translateX(3px);
}

/* responsivo */
@media (max-width: 991.98px){
  .exos-cats-grid{ grid-template-columns: 1fr; }
  .exos-cat-card{ padding: 26px 22px; }
  .exos-cat-icon{ width: 42px; height: 42px; }
}

/* =========================================
   MANIFESTO — EXOSPRO (TECH PREMIUM)
========================================= */

.exos-manifesto{
  position: relative;
  padding: 10px 0;
  overflow: hidden;
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(47,212,199,.10), transparent 60%),
    radial-gradient(700px 260px at 15% 80%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  /*border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);*/
}

/* “Grid” interno com cara de marca (não template) */
.exos-manifesto-inner{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  /*padding: 46px 28px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  backdrop-filter: blur(10px) saturate(120%);*/
}

/* Eyebrow discreto */
.exos-manifesto .exos-eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(167,177,186,.92);
  margin-bottom: 14px;
}*

/* Título */
.exos-manifesto-title{
  font-size: clamp(1.9rem, 3.2vw, 3.0rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 750;
  color: var(--txt-0);
  margin: 0 auto 22px;
  max-width: 22ch;
}

/* Palavra destacada (aqua) */
.exos-highlight{
  color: var(--aqua);
  text-shadow: 0 0 24px rgba(47,212,199,.18);
  white-space: nowrap;
}

/* Texto */
.exos-manifesto-text{
  max-width: 70ch;
  margin: 0 auto;
  color: rgba(167,177,186,.96);
  font-size: 1.02rem;
  line-height: 1.78;
}

.exos-manifesto-text p{
  margin: 0 0 14px;
}

/* CTA */
.exos-manifesto-cta{
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Micro fade elegante */
@media (prefers-reduced-motion: no-preference){
  .exos-manifesto-inner{
    animation: exosFadeUp .55s ease both;
  }
  @keyframes exosFadeUp{
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* Mobile */
@media (max-width: 991.98px){
  .exos-manifesto{ padding: 0 0; }
  .exos-manifesto-inner{ padding: 38px 20px; }
  .exos-manifesto-title{ max-width: 24ch; }
}

/* =========================================
   FOOTER — EXOSPRO (Premium Clean)
========================================= */

.exos-footer{
  background: #0D1014;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 10px 0 10px;
  color: rgba(167,177,186,.85);
}

.exos-footer-col{
  text-align: center;
  padding: 10px 0 20px;
}


.exos-footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.exos-footer-logo{
  height: 110px;
  margin-bottom: 2px;
}

.exos-footer-brand p{
  max-width: 320px;
  line-height: 1.7;
}

.exos-footer-col h4{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(245,247,248,.9);
}

.exos-footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.exos-footer-col li{
  margin-bottom: 10px;
}

.exos-footer-col a{
  color: rgba(167,177,186,.85);
  text-decoration: none;
  transition: color .2s ease;
}

.exos-footer-col a:hover{
  color: var(--aqua);
}

.exos-footer-bottom{
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  font-size: 13px;
}

/* Responsivo */
@media (max-width: 991.98px){
  .exos-footer-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== FOOTER TUNING (menos “vazio”) ===== */

/* diminui o respiro geral */
.exos-footer{
  padding: 5px 0 10px; /* em vez de 10/10 */
}

/* deixa o grid mais compacto */
.exos-footer-grid{
  gap: 22px; /* era 40px */
  align-items: start; /* impede “esticar” visual */
}

/* remove padding vertical exagerado das colunas */
.exos-footer-col{
  padding: 10px; /* era 10px 0 20px */
}

/* coluna da marca com alinhamento melhor */
.exos-footer-brand{
  text-align: center;
}

.exos-footer-brand p{
  margin-top: 0px;
  margin-bottom: 0;
  max-width: 34ch;   /* mais elegante que px */
  line-height: 1.6;
  opacity: .92;
}

/* logo com respiro controlado */
.exos-footer-logo{
  margin-bottom: 2px; /* era 2px */
}


/* =========================================
   FOOTER SOCIAL + TECH SEAL
========================================= */

/* SOCIAL */
.exos-social{
  display:flex;
  gap:14px;
  margin-top:8px;
  justify-content:center;
}

.exos-social-link{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: rgba(245,247,248,.85);
  transition: all .25s ease;
}

.exos-social-link svg{
  width: 20px;
  height: 20px;
}

.exos-social-link:hover{
  background: rgba(47,212,199,.08);
  border-color: rgba(47,212,199,.28);
  color: var(--aqua);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47,212,199,.18);
}

/* TECH SEAL */
.exos-footer-cert{
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.exos-tested{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(167,177,186,.9);
}

.exos-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 14px rgba(47,212,199,.4);
}

/* =====================================
   BASE DARK FIX
===================================== */

body {
  background: #0b0f14;
  color: #e6e9ed;
}

/* =====================================
   MOBILE MENU (FINAL)
===================================== */

:root{
  --exos-accent: rgb(47, 212, 199); /* coloque aqui o verde oficial */
}

.site-mobile-menu{
  background: #0f141a !important;
  color: #e6e9ed;
}

.site-mobile-menu .site-mobile-menu-body{
  background: transparent;
}

.site-mobile-menu a{
  color: #e6e9ed !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.site-mobile-menu .site-nav-wrap > li > a:hover,
.site-mobile-menu .site-nav-wrap > li > a:focus,
.site-mobile-menu .dropdown > li > a:hover,
.site-mobile-menu .dropdown > li > a:focus,
.site-mobile-menu .site-nav-wrap li.active > a{
  color: var(--exos-accent) !important;
}

.site-mobile-menu .site-nav-wrap > li > a{
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.04em;
  transition: color .18s ease, opacity .18s ease;
}

.site-mobile-menu .dropdown > li > a{
  font-size: 13px;
  opacity: 0.85;
}

.site-mobile-menu .dropdown{
  background: #131a22;
  border-left: 1px solid rgba(255,255,255,0.05);
}

.menu-toggle span,
.menu-toggle svg{
  color: #ffffff !important;
}

/* =========================================
   HEADER MOBILE — LOGO MAIOR + BURGER À DIREITA (FIX)
   Cole no FINAL do exospro-overrides.css
========================================= */

@media (max-width: 1199.98px){

  /* garante que a linha ocupe a largura e distribua as pontas */
  header.site-navbar .exos-header-row{
    width: 100% !important;
    justify-content: space-between !important;
  }

  /* logo mais “presente” no mobile */
  header.site-navbar img.brand-logo{
    height: 200px !important;   /* ajuste fino: 56–64 */
    width: auto !important;
    max-height: none !important;
  }

  /* força o hambúrguer pro canto direito */
  header.site-navbar .col-auto.d-inline-block.d-xl-none{
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
  }

  /* evita o burger “sumir” ou ficar com largura estranha */
  header.site-navbar .burger{
    position: relative !important;
    right: 0 !important;
    margin-left: auto !important;
  }
}

/* se quiser um pouco menor em telas bem estreitas */
@media (max-width: 380px){
  header.site-navbar img.brand-logo{
    height: 54px !important;
  }
}

/* =========================================
   HEADER SHRINK ON SCROLL (MOBILE)
========================================= */

@media (max-width: 1199.98px){

  header.site-navbar{
    transition: height .25s ease, padding .25s ease;
  }

  header.site-navbar img.brand-logo{
    transition: height .25s ease;
  }

  /* estado reduzido */
  header.site-navbar.is-scrolled{
    height: 110px !important;
    padding-bottom: 4px;
  }

  header.site-navbar.is-scrolled img.brand-logo{
    height: 110px !important;
  }
}

/* =========================================
   MOBILE MENU — CHEVRON ALINHADO PERFEITO
========================================= */

.site-mobile-menu li.has-children{
  position: relative;
}

/* cria espaço para a seta dentro do link */
.site-mobile-menu .site-nav-wrap > li > a{
  padding-left: 18px !important;
  padding-right: 44px !important;
}

/* seta */
.site-mobile-menu .arrow-collapse{
  position: absolute;
  right: 30px;          /* aproxima do texto */
  top: 50%;
  transform: translateY(-50%);
  width: 18px;          /* menor */
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* remove ícone antigo */
.site-mobile-menu .arrow-collapse::before{
  content: "" !important;
}

/* desenha a seta */
.site-mobile-menu .arrow-collapse::after{
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(230,233,237,0.9);
  border-bottom: 2px solid rgba(230,233,237,0.9);
  transform: rotate(45deg);
  transition: transform .18s ease, border-color .18s ease;
}

/* aberto */
.site-mobile-menu .arrow-collapse:not(.collapsed)::after{
  transform: rotate(-135deg);
}

/* hover */
.site-mobile-menu .arrow-collapse:hover::after{
  border-right-color: rgb(47, 212, 199);
  border-bottom-color: rgb(47, 212, 199);
}

/* Ancorar seta no item e aproximar do texto */
.site-mobile-menu li.has-children { position: relative; }

/* reserva espaço para a seta dentro do link */
.site-mobile-menu .site-nav-wrap > li > a{
  padding-right: 44px !important;
}

/* seta colada à direita do conteúdo do item */
.site-mobile-menu .arrow-collapse{
  right: 10 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* =========================================
   FIX: nunca mostrar o painel mobile no desktop
========================================= */
@media (min-width: 1200px){
  .site-mobile-menu{
    display: none !important;
  }

  /* segurança extra: mesmo que o body fique com offcanvas-menu, não abre */
  body.offcanvas-menu .site-mobile-menu{
    -webkit-transform: translateX(110%) !important;
    transform: translateX(110%) !important;
  }
}

/* Badge tipográfico premium */
.exos-badge{
  width: 80px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  display: grid;
  place-items: center;
}

.exos-badge span{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(230,233,237,.92);
}

.exos-cat-card:hover .exos-badge{
  border-color: rgba(47,212,199,.35);
  box-shadow: 0 0 0 1px rgba(47,212,199,.12), 0 10px 30px rgba(0,0,0,.35);
}

.exos-cat-card:hover .exos-badge span{
  color: rgb(47,212,199);
}

.exos-page .exos-hero--inner { padding: 120px 0 48px; }
.exos-kicker { letter-spacing: .14em; text-transform: uppercase; opacity: .65; font-size: 12px; }
.exos-narrow { max-width: 860px; }
.exos-grid-4 { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991.98px){ .exos-grid-4{ grid-template-columns: 1fr; } }

.exos-card{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 18px;
}

.exos-list{
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 720px;
  text-align: left; /* importante */
}

.exos-list li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.exos-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(47, 212, 199);
}

.exos-center{
  text-align: center;
}




