*{box-sizing:border-box}

:root{
  --bg:#0b0b0f;
  --panel:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.12);
  --text:#fff;
  --muted:rgba(255,255,255,.72);
}

html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

img{max-width:100%;height:auto;display:block}

/* Layout */
.container{max-width:1100px;margin:0 auto;padding:0 16px}
.section{padding:48px 0}
h1,h2,h3{margin:0 0 10px}
p{margin:0 0 10px}
.muted{color:var(--muted)}
.center{display:flex;justify-content:center;margin-top:14px}

.sectionHead{margin-bottom:14px}
.sectionHead p{margin:0}

/* Header */
.header{
  position:sticky;top:0;z-index:999;
  background:rgba(11,11,15,.75);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(10px);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:12px 0;
}
.logo{height:36px;width:auto}

.menuBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  cursor:pointer;
}

.nav{position:relative}
.menu{
  list-style:none;padding:0;margin:0;
  display:none;
  position:absolute;
  right:0;top:52px;
  width:min(260px,90vw);
  background:rgba(11,11,15,.98);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
}
.menu.open{display:block}
.menu li{list-style:none}
.menu a{
  display:block;
  padding:12px 14px;
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.menu a:hover{background:rgba(255,255,255,.06)}

@media(min-width:860px){
  .menuBtn{display:none}
  .menu{
    display:flex!important;
    position:static;
    width:auto;
    border:0;
    background:transparent;
    gap:10px;
  }
  .menu a{
    border:0;
    padding:10px 12px;
    border-radius:10px;
  }
  .menu a:hover{background:rgba(255,255,255,.06)}
}

/* Hero */
.hero{position:relative;min-height:60vh;overflow:hidden}
.hero-bg{
  position:absolute;
  inset:0;
  background:url('/assets/img/hero-show.jpg') center/cover no-repeat;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.20),
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,.88)
  );
}
.hero-bottom{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:22px 0 26px;
}
.hero-bottom__inner{
  border:1px solid var(--border);
  background:rgba(0,0,0,.38);
  backdrop-filter:blur(8px);
  border-radius:18px;
  padding:18px;
}
.hero-bottom h1{
  font-size:clamp(22px,3.2vw,40px);
  margin:0 0 6px;
}
.hero-bottom p{
  margin:0;
  color:var(--muted);
}

/* HERO MOBILE — imagem inteira */
@media(max-width:768px){
  .hero{
    min-height:0;
    height:min(85vh,120vw);
  }
  .hero-bg{
    background:#000 url('/assets/img/hero-show.jpg') center center/contain no-repeat!important;
  }
}

/* Grid / Cards */
.grid{display:grid;gap:16px}
@media(min-width:768px){
  .grid{grid-template-columns:repeat(3,1fr)}
}
.grid--2{grid-template-columns:1fr}
@media(min-width:768px){
  .grid--2{grid-template-columns:repeat(2,1fr)}
}

/* Cards */
.card{
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:var(--panel);
}

/* Imagens dos cards (integrantes/eventos) */
.media{
  height:220px;
  overflow:hidden;
}
@media(max-width:620px){
  .media{height:190px}
}
.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.cardBody{padding:14px}

/* Redes (links simples) */
.linkCard{
  border:1px solid var(--border);
  border-radius:16px;
  background:var(--panel);
  padding:14px;
  text-decoration:none;
  color:#fff;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.linkCard:hover{background:rgba(255,255,255,.06)}
.linkCard strong{display:block;margin-bottom:6px}
.pill{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
  font-size:14px;
  color:var(--muted);
}

/* Botões */
.btnRow{display:flex;gap:10px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  text-decoration:none;
  color:#fff;
  font-weight:600;
  background:rgba(255,255,255,.06);
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn--primary{background:rgba(255,255,255,.14)}
.btn--secondary{background:rgba(255,255,255,.06)}
.btn--ghost{background:transparent}

/* Contato (box antigo, se você ainda usar em outra página) */
.contactBox{
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--panel);
  padding:16px;
  display:grid;
  gap:16px;
}
.contactBox h3{margin:0 0 10px}

/* Footer */
.footer{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* YouTube cards */
.ytCard{
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:var(--panel);
  display:block;
  text-decoration:none;
  color:#fff;
}
.ytThumb{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  background:#000;
  overflow:hidden;
}
@supports not (aspect-ratio:1/1){
  .ytThumb{height:320px}
}
.ytThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ytPlay{
  position:absolute;
  inset:auto 12px 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.ytPlay .badge{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.45);
  padding:8px 10px;
  border-radius:999px;
  font-weight:700;
}
.ytPlay .hint{
  color:rgba(255,255,255,.85);
  font-weight:600;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  padding:8px 10px;
  border-radius:999px;
}
.ytBody{padding:14px}
.ytEmbed{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.blogCard{ text-decoration:none; color:#fff; display:block; }
.blogCard h3{ margin:0 0 6px; font-size:18px; }
.blogCard p{ margin:0; }
.blogCard:hover{ transform: translateY(-2px); transition: .18s ease; }

/* ==========================
   Redes Sociais (cards visuais)
   ========================== */
.socialGrid{
  gap:16px;
}

.socialCard{
  display:block;
  text-decoration:none;
  color:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--panel);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.socialCard:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 34px rgba(0,0,0,.45);
  background:rgba(255,255,255,.06);
}

/* imagem */
.socialMedia{
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  overflow:hidden;
}

.socialMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* texto */
.socialInfo{
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.socialInfo strong{
  font-size:18px;
  line-height:1.2;
}

.socialInfo .muted{
  font-size:14px;
}

/* Footer dos posts do blog (alinhado ao container da notícia) */
.postFooter{
  margin-top:48px;
  padding:26px 0;
  border-top:1px solid var(--border);
}

.postFooter__inner{
  display:flex;
  gap:22px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
}

.postFooter__contact strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}

.postFooter__buttons{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.postFooter__social{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
}

.postFooter__icons{
  display:flex;
  gap:12px;
}

/* Botões de ícone */
.iconBtn{
  width:44px;
  height:44px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, background .2s ease;
  color:#fff;
}

.iconBtn:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-2px);
}

.iconBtn svg{
  width:22px;
  height:22px;
  fill:currentColor;
}

/* linha final */
.postFooter__bottom{
  margin-top:16px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:13px;
}

/* Mobile */
@media(max-width:640px){
  .postFooter__inner{align-items:flex-start}
  .postFooter__social{align-items:flex-start}
}

/* (opcional) antigo override - pode manter, não afeta mais seu contato atual */
@media (max-width: 720px) {
  #contato .grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================= */
/* CARDS GRANDES (Contato + Contratantes) */
/* ============================= */

.cardGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.bigCard{
  position:relative;
  display:block;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: var(--panel);
  text-decoration:none;
  color:#fff;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* anti-link roxo/underline em qualquer estado */
.bigCard:link,
.bigCard:visited{
  color:#fff;
  text-decoration:none;
}
.bigCard:hover,
.bigCard:active{
  color:#fff;
  text-decoration:none;
}

.bigCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,.65);
  background: rgba(255,255,255,.06);
}

.bigCardImage{
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.bigCard:hover .bigCardImage{
  transform: scale(1.06);
}

.bigCardOverlay{
  position:absolute;
  inset:0;
  padding: 28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    linear-gradient(to top,
      rgba(0,0,0,.95) 0%,
      rgba(0,0,0,.75) 45%,
      rgba(0,0,0,.25) 100%);
}

.bigCardTop h3{
  margin:0 0 8px;
  font-size: 1.6rem;
  font-weight:600;
  letter-spacing:-0.02em;
  color:#fff;
}

.bigCardTop p{
  margin:0;
  color:rgba(255,255,255,.75);
  font-size: .95rem;
}

.bigCardBottom{
  font-size: .85rem;
  letter-spacing:.1em;
  text-transform: uppercase;
  color:rgba(255,255,255,.7);
  opacity:.85;
  transition: opacity .2s ease;
}

.bigCard:hover .bigCardBottom{
  opacity:1;
}

/* Responsivo */
@media (max-width: 900px){
  .cardGrid{
    grid-template-columns: 1fr;
  }
}