
:root{
  --bg:#ffffff;
  --fg:#0f172a;
  --muted:#f1f5f9;
  --muted-fg:#64748b;
  --border:#e5e7eb;
  --primary:#b3001b;
  --secondary:#0b1b5e;
  --shadow:0 6px 18px rgba(15,23,42,.08);
  --radius:14px;
  --container:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--fg);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%; height:auto}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--container); margin:0 auto; padding:0 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 */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--border);
}
.header-inner{height:64px; display:flex; align-items:center; justify-content:space-between; gap:12px}
.brand{display:flex; align-items:center; gap:12px}
.brand-logo{width:40px; height:40px}
.brand-name{font-weight:700; color:var(--secondary); font-size:18px}
.nav{display:flex; align-items:center; gap:18px; font-size:14px}
.nav a{padding:8px 0}
.social{display:flex; align-items:center; gap:10px; margin-left:6px}
.icon-btn{
  width:34px; height:34px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  transition: background .15s ease;
}
.icon-btn:hover{background:var(--muted); text-decoration:none}
.icon-btn svg{width:20px; height:20px; color:var(--secondary)}
.menu-btn{
  display:none;
  border:1px solid var(--border);
  border-radius:10px;
  padding:8px 12px;
  background:#fff;
  font-weight:600;
}
.mobile-menu{display:none; border-top:1px solid var(--border); background:#fff}
.mobile-inner{display:flex; flex-direction:column; gap:10px; padding:14px 16px}
.mobile-inner .social{margin-left:0}
@media (max-width: 900px){
  .desktop-nav{display:none}
  .menu-btn{display:inline-flex}
  .mobile-menu.open{display:block}
}

/* Hero */
.hero{
  padding-top:0px;
}
.hero-wrap{
  position:relative;
  height:600px;
  overflow:hidden;
}
.hero-img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.02);
  filter:saturate(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background:rgba(0,0,0,.35);
}
.hero-content{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  padding:0 18px;
  color:#fff;
}
.hero-content h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4.8vw, 62px);
  letter-spacing:-.02em;
}
.hero-content p{
  margin:0;
  max-width:760px;
  font-size: clamp(16px, 2.1vw, 24px);
  color:rgba(255,255,255,.92);
}

/* Sections */
.section{padding:32px 0}
.section-muted{background:var(--muted)}
.section h2{font-size:40px; margin:0 0 14px; letter-spacing:-.02em}
.lead{color:var(--muted-fg); margin:0 0 22px; font-size:18px}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:32px}
.grid{display:grid; gap:18px}
.grid-3{grid-template-columns: repeat(3, 1fr)}
.grid-2{grid-template-columns: repeat(2, 1fr)}
@media (max-width: 900px){
  .grid-3, .grid-2{grid-template-columns:1fr}
  .card.pad{padding:22px}
  .section h2{font-size:32px}
}

/* M/V/V */
.mvv h3{margin:0 0 10px; font-size:18px; color:var(--primary)}
.mvv p{margin:0}

/* Councils */
.kv-list{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.kv-item{display:flex; justify-content:space-between; gap:16px}
.kv-item strong{font-weight:700}

/* Filosofia */
.filo h3{color:var(--primary); margin:0 0 10px; font-size:22px}
.filo p{margin:0 0 12px}
.bullets{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.bullets li{display:flex; gap:10px}
.dot{color:var(--primary); font-weight:900; line-height:1}

/* Academias */
.filter-row{margin:18px 0 26px}
label{font-weight:700}
select{
  margin-top:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  font-size:14px;
}
.academy h3{margin:0 0 12px; color:var(--primary)}
.small{font-size:14px; margin:0 0 6px}
.small strong{font-weight:700}
.academy a{color:var(--primary)}
.academy a:hover{text-decoration:underline}

/* Documents */
.doc-item{display:flex; flex-direction:column; gap:16px}
.doc-head{display:flex; gap:14px; align-items:flex-start}
.doc-icon{color:var(--primary)}
.doc-icon svg{width:26px; height:26px}
.doc-item h3{margin:0; font-size:20px}
.doc-item p{margin:6px 0 0; color:var(--muted-fg)}
.btn{
  display:inline-flex; width:fit-content;
  padding:10px 18px;
  border-radius:12px;
  background:var(--primary);
  color:#fff;
  font-weight:700;
  border:0;
}
.btn:hover{opacity:.92; text-decoration:none}
.btn.secondary{background:var(--secondary)}

/* Footer */
.site-footer{
  background:var(--secondary);
  color:#fff;
  margin-top:40px;
}
.footer-top{
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  border-bottom:1px solid rgba(255,255,255,.15);
}
.footer-mail{display:flex; align-items:center; gap:10px; font-size:14px}
.footer-mail svg{width:18px; height:18px}
.site-footer .social .icon-btn:hover{background:rgba(255,255,255,.08)}
.site-footer .icon-btn svg{color:#fff}
.footer-cols{
  padding:36px 0;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:28px;
}
.footer-cols h3{margin:0 0 10px; font-size:18px}
.footer-cols p, .footer-cols a, .footer-cols li{color:rgba(255,255,255,.8); font-size:14px}
.footer-cols ul{margin:0; padding:0; list-style:none; display:grid; gap:8px}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.7);
  font-size:14px;
}
@media (max-width: 900px){
  .footer-top{flex-direction:column; align-items:flex-start}
  .footer-cols{grid-template-columns:1fr}
}

/* Page header */
.page-hero{
  padding:48px 0 10px;
}
.breadcrumb{
  color:var(--muted-fg);
  font-size:14px;
  margin:0 0 8px;
}


/* ===== LNH Carousel ===== */
.lnh-carousel {
  margin-top:40px;
  position:relative;
}

.lnh-carousel__viewport{
  position:relative;
  overflow:hidden;
  border-radius:18px;
}

.lnh-carousel__slide{
  display:none;
  position:relative;
}

.lnh-carousel__slide.is-active{
  display:block;
}

.lnh-carousel__slide img{
  width:100%;
  display:block;
}

.lnh-carousel__slide figcaption{
  position:absolute;
  bottom:0;
  left:0;
  right:0;

  padding:14px 18px;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.2),
    transparent
  );

  color:white;
  font-size:14px;
}
}
/* ===== HERO SLIDER (background) ===== */
.hero-wrap--slider{
  position: relative;      /* garante referência pros absolutos */
  height: 600px;           /* mantém o hero do jeito que era */
  overflow: hidden;
}

.hero-slider{
  position: absolute;
  inset: 0;
  z-index: 0;              /* fica no fundo */
}

.hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease; /* transição suave */
}

.hero-slide.is-active{
  opacity: 1;
}

/* overlay e conteúdo acima do slider */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.35);
}

.hero-content{
  position: absolute;
  inset: 0;
  z-index: 2;              /* texto acima do overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
  color: #fff;
}
}

/* ===== LNH Ticker ===== */

.lnh-news-ticker{
  /* espaçamento igual “padrão do site” entre blocos */
  margin: 32px 0; /* antes estava 28px 0 40px */
}

.lnh-news-ticker__inner{
  display:flex;
  align-items:center;
  gap:16px;
  background: var(--secondary);
  color:#fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

/* FADE mais “premium” e menos agressivo */
.lnh-news-ticker__inner::before,
.lnh-news-ticker__inner::after{
  content:"";
  position:absolute;
  top:0;
  width:26px;              /* ↓ antes 60px */
  height:100%;
  pointer-events:none;
  z-index:2;
}

.lnh-news-ticker__inner::before{
  left:0;
  /* ↓ suaviza e reduz área sólida */
  background: linear-gradient(to right,
    rgba(11,27,94,1) 0%,
    rgba(11,27,94,.85) 35%,
    rgba(11,27,94,0) 100%
  );
}

.lnh-news-ticker__inner::after{
  right:0;
  background: linear-gradient(to left,
    rgba(11,27,94,1) 0%,
    rgba(11,27,94,.85) 35%,
    rgba(11,27,94,0) 100%
  );
}

/* garante que o conteúdo fique acima do fundo,
   mas abaixo do fade (que é só na borda) */
.lnh-news-ticker__label,
.lnh-news-ticker__viewport,
.lnh-news-ticker__cta{
  position: relative;
  z-index: 1;
}

/* o label não pode “entrar” no fade */
.lnh-news-ticker__label{
  background: var(--primary);
  color:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:8px 14px;
  border-radius:999px;
  white-space:nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

.lnh-news-ticker__viewport{
  flex:1;
  overflow:hidden;
  position:relative;
  padding: 0 8px; /* cria “respiro” interno para o texto não encostar no fade */
}

.lnh-news-ticker__marquee{
  display:inline-flex;
  align-items:center;
  gap:26px;
  white-space:nowrap;
  animation: lnhTickerMove 40s linear infinite;
}

.lnh-news-ticker__inner:hover .lnh-news-ticker__marquee{
  animation-play-state: paused;
}

/* movimento suave (mantém) */
@keyframes lnhTickerMove{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CTA FILIAÇÃO LNH ===== */

.lnh-affiliation-cta{
  margin: 48px 0;
}

.lnh-affiliation-cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;

  background: linear-gradient(135deg, var(--secondary), #10237a);
  color:#fff;

  border-radius: 28px;
  padding: 32px 36px;

  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
}

.lnh-affiliation-cta__content{
  max-width: 680px;
}

.lnh-affiliation-cta__content h3{
  margin:0 0 8px;
  font-size: 24px;
  letter-spacing: -.02em;
}

.lnh-affiliation-cta__content p{
  margin:0;
  font-size:16px;
  opacity:.95;
}

.lnh-affiliation-cta__btn{
  background: var(--primary);
  color:#fff;
  font-weight:700;
  padding: 14px 22px;
  border-radius: 999px;
  white-space:nowrap;
  transition: all .25s ease;
}

.lnh-affiliation-cta__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

/* Mobile */
@media (max-width: 900px){
  .lnh-affiliation-cta__inner{
    flex-direction:column;
    align-items:flex-start;
    padding: 28px;
  }

  .lnh-affiliation-cta__actions{
    width:100%;
  }

  .lnh-affiliation-cta__btn{
    display:inline-block;
  }
}

.mobile-social{

    margin-top:25px;

    justify-content:center;

}