/* =========================================================
   INDEX.CSS ÚNICO
   - junta o css externo + o css que estava dentro do index
   - patrocinadores e parceiros separados
   - parceiros com box melhor para logo
   - agenda sem verde
========================================================= */

:root{
  --red:#b30000;
  --red2:#8f0000;
  --red3:#d31317;
  --red-deep:#5f0003;
  --wine:#2b0204;

  --bg:#fffdfd;
  --soft:#f6f6f6;

  --text:#111;
  --muted:#5b5b5b;

  --radius:16px;
  --stroke:rgba(179,0,0,.18);
  --shadow:0 18px 55px rgba(0,0,0,.12);
}

/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 18% 5%, rgba(179,0,0,.14), transparent 60%),
    radial-gradient(900px 420px at 82% 0%, rgba(179,0,0,.06), transparent 60%),
    linear-gradient(180deg, #fff, #fff 55%, var(--soft));
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{max-width:1200px;margin:auto;padding:0 20px}

/* ACESSIBILIDADE */
.skip-link{
  position:absolute;
  left:12px;
  top:-50px;
  background:#000;
  color:#fff;
  padding:10px 14px;
  border-radius:8px;
  z-index:99999;
  text-decoration:none;
  font-weight:700;
}
.skip-link:focus{top:12px}

:focus-visible{
  outline:3px solid #ffcc00;
  outline-offset:3px;
  border-radius:6px;
}

.alto-contraste{background:black!important;color:yellow!important}
.alto-contraste *{
  background:black!important;
  color:yellow!important;
  border-color:yellow!important;
}

.acessibilidade-box{
  position:fixed;
  left:20px;
  bottom:100px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:5px;
}

[vw]{
  position:fixed;
  bottom:10px;
  right:10px;
  z-index:99999;
  transform:scale(.86);
  transform-origin:bottom right;
}

/* HEADER */
header{
  background:url("../img/header.png") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  height:300px;
}
.header-container{
  width:100%;
  max-width:1200px;
  padding:0 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:100%;
}
.logo{
  width:160px;
  height:auto;
  transition:.25s ease;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.18));
}
.logo:hover{transform:scale(1.04)}

.logos{
  display:flex;
  align-items:center;
  gap:24px;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
}
.logos-header{
  width:48px;
  height:48px;
  filter:brightness(0) invert(1);
  transition:.25s ease;
}
.logos-header:hover{transform:scale(1.12);filter:brightness(1.15)}

.img2{
  width:100%;
  height:150px;
  object-fit:cover;
}

/* MENU PRINCIPAL */
.menu-home{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin:22px 0 34px;
  position:relative;
  z-index:20;
}
.dropdown-menu-home{position:relative}
.dropdown-toggle-btn{cursor:pointer}

.dropdown-content-home{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  min-width:320px;
  background:linear-gradient(180deg,#ffffff 0%,#fff6f6 100%);
  border:1px solid rgba(211,19,23,.16);
  border-radius:16px;
  box-shadow:0 18px 34px rgba(0,0,0,.18);
  overflow:hidden;
  z-index:999;
}
.dropdown-content-home a{
  display:block;
  padding:12px 16px;
  text-decoration:none;
  color:#111;
  font-weight:700;
  border-bottom:1px solid #f0f0f0;
  transition:.2s ease;
  background:#fff;
}
.dropdown-content-home a:last-child{border-bottom:none}
.dropdown-content-home a:hover{
  background:var(--red3);
  color:#fff;
}
.dropdown-content-home.show{display:block}

/* MENU EXTRA ANTIGO */
.menu-principal{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 15px;
}
.menu-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  color:white;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  transition:all .25s ease;
  box-shadow:0 4px 15px rgba(0,0,0,.1);
}
.menu-item:hover{
  background:var(--red);
  border-color:var(--red);
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(179,0,0,.3);
}
.menu-icon{
  font-size:18px;
  filter:drop-shadow(0 2px 2px rgba(0,0,0,.2));
}

/* BOTÕES */
.cta-top{
  max-width:1200px;
  margin:16px auto 0;
  padding:0 20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.75rem 1.15rem;
  border-radius:999px;
  font-weight:900;
  border:2px solid transparent;
  transition:.2s ease;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}
.btn-primary{
  background:linear-gradient(180deg,var(--red),var(--red2));
  color:#fff;
  border-color:var(--red);
}
.btn-outline{
  background:#fff;
  color:var(--red);
  border-color:var(--red);
}
.btn-outline:hover{background:rgba(179,0,0,.04)}

/* PATROCINADORES */
.sponsors{
  padding:56px 0;
  position:relative;
  overflow:hidden;
}
.sponsors .wrap{position:relative}
.sponsors-red{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(180deg,#d31317 0%,#a70000 100%);
}
.sponsors .section-title,
.partners-section .section-title{
  text-align:center;
  font-size:42px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin:0 0 28px;
}
.sponsors-red .section-title{
  color:#fff;
  text-shadow:0 3px 14px rgba(0,0,0,.18);
}

.sponsors-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
  align-items:stretch;
}
.s-card{
  background:rgba(255,255,255,.92);
  min-height:160px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  transition:transform .25s ease, box-shadow .25s ease;
  overflow:hidden;
}
.s-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 34px rgba(0,0,0,.16);
}
.s-card a{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.s-card img{
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:90px!important;
  object-fit:contain!important;
  object-position:center;
  display:block;
  margin:0 auto;
}

/* PARCEIROS */
.partners-section{
  background:#ffffff;
  padding:70px 0 62px;
  border-top:1px solid rgba(211,19,23,.10);
  border-bottom:1px solid rgba(211,19,23,.10);
  box-shadow:inset 0 10px 30px rgba(0,0,0,.03);
}
.partners-section .section-title{
  color:#8f0000;
}
.partners-section .section-title::after{
  content:"";
  display:block;
  width:82px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--red3),rgba(211,19,23,.1));
  margin:12px auto 0;
}
.partners-section .s-card{
  min-height:190px;
  padding:24px;
  background:linear-gradient(180deg,#ffffff 0%,#fff9f9 100%);
  border:1px solid rgba(179,0,0,.12);
  box-shadow:0 14px 28px rgba(0,0,0,.12);
}
.partners-section .s-card img{
  max-height:120px!important;
  max-width:92%!important;
}

/* CONTEÚDO / NOTÍCIAS */
.conteudo{
  background:transparent;
  padding:44px 0;
}
.conteudo .wrap,
.classificacao .wrap,
.galeria-section .wrap,
.agenda .wrap{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(211,19,23,.08);
  border-radius:28px;
  box-shadow:0 12px 26px rgba(0,0,0,.05);
  padding:28px 24px;
  max-width:1200px;
  margin:0 auto;
}
.conteudo h2,
.galeria-section h2{
  text-align:center;
  color:var(--red);
  margin-bottom:18px;
  font-weight:1100;
  letter-spacing:.2px;
  font-size:42px;
  text-transform:uppercase;
}
.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.news-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(179,0,0,.12);
  box-shadow:var(--shadow);
  transition:.22s ease;
  cursor:pointer;
}
.news-card:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 70px rgba(0,0,0,.14);
  border-color:rgba(179,0,0,.22);
}
.news-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  object-position:center;
  background:#f5f5f5;
}
.news-body{
  padding:14px;
  display:flex;
  gap:10px;
  flex-direction:column;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  background:rgba(179,0,0,.08);
  color:var(--red);
  padding:6px 10px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:1000;
  border:1px solid rgba(179,0,0,.12);
}
.news-body h3{
  font-weight:1100;
  color:#141414;
  line-height:1.15;
  font-size:24px;
  text-transform:uppercase;
}
.link{
  color:var(--red);
  font-weight:1000;
}
.link:hover{opacity:.85}

/* INFO */
.info-rapida{padding:40px 0}
.info-rapida h2{text-align:center;color:var(--red);margin-bottom:16px;font-weight:1100}
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
  padding:0 20px;
}
.info-card{
  background:#fff;
  border-radius:18px;
  padding:18px;
  border:1px solid rgba(179,0,0,.12);
  box-shadow:var(--shadow);
}
.info-card h3{color:var(--red);margin-bottom:6px;font-weight:1100}

/* AGENDA */
.agenda{padding:44px 0}
.section-title{
  text-align:center;
  margin-bottom:20px;
  color:#8f0000;
  font-size:34px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.agenda h2{text-align:center;color:var(--red);margin-bottom:16px;font-weight:1100}
.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.section-head .actions a{
  text-decoration:none;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:#fff;
  font-weight:1100;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:transform .16s ease, background .16s ease, box-shadow .16s ease;
  color:var(--red);
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}
.section-head .actions a:hover{
  transform:translateY(-2px);
  background:rgba(179,0,0,.04);
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}
.agenda .wrap{max-width:1100px;margin:0 auto;padding:0 16px}

.next-match{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:#fff;
  box-shadow:var(--shadow);
  margin-bottom:14px;
}
.nm-header{
  padding:12px 14px;
  font-weight:1100;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(180deg,var(--red),var(--red2));
  border-bottom:1px solid rgba(255,255,255,.18);
}
.nm-body{
  padding:18px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:14px;
  align-items:center;
  background:#fff;
}
.nm-body .team{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.nm-body .team img{
  width:86px;
  height:86px;
  object-fit:contain;
  border-radius:18px;
  padding:10px;
  background:#fff;
  border:2px solid rgba(179,0,0,.16);
  box-shadow:0 16px 35px rgba(179,0,0,.10);
  flex:0 0 auto;
}
.team-name{
  font-weight:1100;
  font-size:18px;
  line-height:1.15;
  color:#111;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:360px;
}
.nm-body .vs{
  text-align:center;
  min-width:280px;
}
.nm-body .date{
  font-weight:1000;
  margin-bottom:10px;
  color:var(--muted);
}
.nm-body .count{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.count .pill{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(179,0,0,.05);
  border:1px solid rgba(179,0,0,.18);
  box-shadow:0 12px 26px rgba(0,0,0,.06);
  min-width:84px;
}
.count .pill b{
  font-size:22px;
  font-weight:1200;
  letter-spacing:.5px;
  line-height:1;
  color:var(--red);
}
.count .pill small{
  font-size:11px;
  font-weight:1000;
  opacity:.85;
  text-transform:uppercase;
  letter-spacing:.4px;
  color:#3a3a3a;
}

/* LISTAS DE JOGOS */
.match-lists{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:12px;
  align-items:start;
}
.match-lists .list:only-child{grid-column:1 / -1}
.list h3{
  margin:10px 0;
  color:var(--red);
  font-weight:1100;
  text-align:left;
}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:12px;
}
.mcard{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mcard:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 70px rgba(0,0,0,.14);
  border-color:rgba(179,0,0,.30);
}
.mhead{
  padding:10px 12px;
  font-weight:1100;
  background:rgba(179,0,0,.06);
  border-bottom:1px solid rgba(179,0,0,.12);
  color:#1a1a1a;
}
.mbody{
  padding:12px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:10px;
}
.mbody .tcol{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  min-width:0;
}
.mbody img{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:16px;
  padding:8px;
  background:#fff;
  border:1px solid rgba(179,0,0,.14);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.mbody .tname{
  font-weight:1100;
  font-size:13px;
  color:#222;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  width:100%;
}
.score{
  font-weight:1200;
  font-size:16px;
  padding:10px 12px;
  border-radius:14px;
  background:linear-gradient(180deg,#fff,rgba(179,0,0,.06));
  border:1px solid rgba(179,0,0,.18);
  min-width:104px;
  text-align:center;
  color:var(--red);
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}
.mfoot{
  padding:10px 12px;
  font-weight:1000;
  color:var(--muted);
  border-top:1px solid rgba(179,0,0,.10);
  background:rgba(179,0,0,.03);
  text-align:center;
}
.empty{opacity:.85;color:#333}

/* LEI DE INCENTIVO */
.lei-incentivo{
  padding:100px 20px;
  background:linear-gradient(to bottom,#ffffff 0%,#f4f6f9 100%);
  position:relative;
}
.lei-incentivo h1{
  text-align:center;
  margin-bottom:30px;
  color:var(--red);
  font-weight:900;
  font-size:36px;
  letter-spacing:-1px;
  position:relative;
}
.lei-incentivo h1::after{
  content:"";
  width:80px;
  height:4px;
  background:var(--red);
  display:block;
  margin:15px auto 0;
  border-radius:2px;
}
.lei-incentivo p{
  max-width:900px;
  margin:0 auto 40px;
  text-align:center;
  line-height:1.9;
  color:#444;
  font-size:18px;
  font-weight:400;
}
.projetos-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
  margin-top:60px;
}
.projeto-card{
  background:#fff;
  padding:28px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 15px 40px rgba(0,0,0,.06);
  transition:all .35s ease;
  position:relative;
  overflow:hidden;
}
.projeto-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:6px;
  background:var(--red);
}
.projeto-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 70px rgba(0,0,0,.12);
}
.projeto-card h3{
  margin:18px 0 14px;
  font-weight:800;
  font-size:21px;
  color:#111;
}
.projeto-card p{
  margin-bottom:10px;
  font-size:14px;
  text-align:left;
  color:#555;
}
.projeto-card .tag{
  display:inline-block;
  font-size:11px;
  background:rgba(179,0,0,.08);
  color:var(--red);
  padding:6px 16px;
  border-radius:999px;
  border:1px solid rgba(179,0,0,.20);
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.status{
  display:inline-block;
  margin-top:18px;
  padding:7px 18px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.status.execucao{
  background:rgba(179,0,0,.10);
  color:var(--red);
  border:1px solid rgba(179,0,0,.25);
}
.status.encerrado{
  background:#111;
  color:#fff;
}

/* CLASSIFICAÇÃO */
.classificacao{padding:60px 0}
.classificacao h2{
  text-align:center;
  color:var(--red);
  margin-bottom:28px;
  font-weight:1100;
}
.tabela-classificacao{
  max-width:1100px;
  margin:0 auto;
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.06);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.thead,
.trow{
  display:grid;
  grid-template-columns:50px 2fr repeat(6,70px) 80px;
  align-items:center;
  padding:16px 24px;
}
.thead{
  font-size:12px;
  font-weight:1000;
  color:#666;
  background:#fafafa;
  border-bottom:1px solid rgba(0,0,0,.06);
  text-transform:uppercase;
}
.thead div{text-align:center}
.thead div:nth-child(2){text-align:left}
.trow{
  border-bottom:1px solid rgba(0,0,0,.05);
  transition:.15s ease;
  font-size:14px;
}
.trow:last-child{border-bottom:none}
.trow:hover{background:#f9f9f9}
.trow:first-child{background:rgba(179,0,0,.06)}
.pos{
  font-weight:1000;
  color:#444;
  text-align:center;
}
.clube{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  text-align:left;
}
.clube img{
  width:34px;
  height:34px;
  object-fit:contain;
}
.clube span{
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.trow div:not(.clube){text-align:center;font-weight:600;color:#333}
.pts{font-weight:900!important;color:#111!important}

/* GALERIA */
.galeria-section{padding:40px 0}
.galeria-section .wrap{max-width:1100px;margin:0 auto;padding:0 16px}
.carrosel{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:8px 6px 14px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.carrosel::-webkit-scrollbar{height:10px}
.carrosel::-webkit-scrollbar-thumb{
  background:rgba(179,0,0,.18);
  border-radius:999px;
}
.card--photo{
  flex:0 0 auto;
  width:260px;
  height:240px;
  border-radius:18px;
  overflow:hidden;
  scroll-snap-align:start;
  border:1px solid rgba(179,0,0,.14);
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease;
}
.card--photo:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 26px 70px rgba(0,0,0,.14);
}
.gal-img{
  width:100%;
  height:190px;
  object-fit:cover;
  cursor:zoom-in;
}
.legenda{
  display:flex;
  align-items:center;
  justify-content:center;
  height:50px;
  padding:8px 12px;
  text-align:center;
  font-size:15px;
  font-weight:900;
  color:#1a1a1a;
  background:linear-gradient(180deg,#fff 0%,#fff5f5 100%);
  text-transform:uppercase;
}
.gal-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:10px;
}
.gal-btn{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(179,0,0,.18);
  background:#fff;
  color:var(--red);
  cursor:pointer;
  font-size:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .16s ease, background .16s ease, box-shadow .16s ease;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
  user-select:none;
}
.gal-btn:hover{
  transform:translateY(-2px);
  background:rgba(179,0,0,.04);
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.72);
  z-index:9999;
  padding:18px;
}
.lightbox.open{display:flex}
.lightbox__inner{
  width:min(980px,100%);
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(179,0,0,.14);
  box-shadow:0 30px 90px rgba(0,0,0,.40);
  overflow:hidden;
  position:relative;
}
.lightbox__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-bottom:1px solid rgba(179,0,0,.12);
  background:rgba(179,0,0,.04);
  font-weight:1000;
  color:#111;
}
.lightbox__imgwrap{position:relative;background:#fff}
.lightbox__img{
  width:100%;
  max-height:78vh;
  object-fit:contain;
}
.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(179,0,0,.18);
  background:rgba(255,255,255,.92);
  color:var(--red);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  user-select:none;
  box-shadow:0 12px 26px rgba(0,0,0,.10);
}
.lightbox__prev{left:10px}
.lightbox__next{right:10px}
.lightbox__close{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(179,0,0,.18);
  background:#fff;
  color:var(--red);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}

/* MINI MODAL */
.mini-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.62);
  z-index:9998;
  padding:18px;
}
.mini-modal.open{display:flex}
.mini-card{
  width:min(560px,100%);
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(179,0,0,.18);
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  padding:16px;
  color:#111;
}
.mini-card h3{margin:0 0 8px}
.mini-card p{margin:0 0 14px;opacity:.9}
.mini-actions{display:flex;justify-content:flex-end}
.mini-actions button{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(179,0,0,.18);
  background:#fff;
  color:var(--red);
  cursor:pointer;
  font-weight:1000;
}
.mini-actions button:hover{background:rgba(179,0,0,.04)}

/* FOOTER */
footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:16px;
}
footer a{color:#fff;font-weight:800}
footer a:hover{color:var(--red)}

.footer-site{
  margin-top:44px;
  background:linear-gradient(180deg,#2b0204 0%,#111 100%);
  color:#fff;
  padding:34px 20px;
  border-top:4px solid #d31317;
}
.footer-site .wrap{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  align-items:start;
}
.footer-site h3{
  margin:0 0 10px;
  color:#fff;
  font-size:20px;
}
.footer-site p{
  margin:6px 0;
  line-height:1.6;
}
.footer-copy{
  margin-top:16px;
  text-align:center;
  font-weight:700;
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:14px;
}

/* FLOATING WHATS */
.floating-whats{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:90;
  display:flex;
  align-items:center;
  gap:8px;
  background:#25d366;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  box-shadow:var(--shadow);
}
.floating-whats img{
  width:22px;
  height:22px;
  filter:brightness(0) invert(1);
}
.floating-whats span{color:#fff;font-weight:900}

/* COOKIE */
.cookie-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:100;
}
.cookie-card{
  width:min(640px,90%);
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
  border:1px solid rgba(179,0,0,.12);
}
.cookie-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.cookie-icon{font-size:1.4rem}
.cookie-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:12px;
}

/* ANIMAÇÃO */
.reveal-on-scroll{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal-on-scroll.is-visible{
  opacity:1;
  transform:none;
}

/* RESPONSIVO */
@media (max-width:900px){
  .header-container{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    padding:15px 5%;
  }

  .menu-principal{
    order:3;
    width:100%;
    justify-content:center;
    margin:5px 0;
  }

  .menu-item{
    padding:8px 14px;
    font-size:13px;
  }

  .menu-icon{font-size:16px}

  .nm-body{
    grid-template-columns:1fr;
    text-align:center;
  }

  .nm-body .team{justify-content:center!important}
  .nm-body .vs{min-width:0}

  .match-lists{grid-template-columns:1fr}

  .tabela-classificacao{overflow-x:auto}
  .thead,.trow{min-width:900px}

  .sponsors-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:768px){
  header{height:auto;padding:22px 0}
  .header-container{flex-direction:column;gap:16px;height:auto}
  .logo{width:130px}
  .logos{gap:14px;padding:6px 14px}
  .logos-header{width:36px;height:36px}

  .menu-home{
    flex-direction:column;
    align-items:stretch;
    width:100%;
    max-width:360px;
    margin:18px auto 28px;
    padding:0 10px;
  }

  .dropdown-menu-home{
    width:100%;
    max-width:100%;
  }

  .dropdown-toggle-btn,
  .btn.btn-outline{
    width:100%;
    min-height:52px;
    font-size:14px;
    padding:10px 16px;
  }

  .dropdown-content-home{
    position:static;
    width:100%;
    min-width:100%;
    margin-top:8px;
  }

  .conteudo h2,
  .galeria-section h2,
  .section-title,
  .sponsors .section-title,
  .partners-section .section-title{
    font-size:26px;
    margin-bottom:20px;
    letter-spacing:.04em;
  }

  .conteudo .wrap,
  .classificacao .wrap,
  .galeria-section .wrap,
  .agenda .wrap{
    padding:18px 14px;
    border-radius:20px;
  }

  .news-card img{height:210px}
  .news-body h3{font-size:20px}
  .team-name{font-size:16px;max-width:100%}

  .sponsors{
    padding:42px 0;
  }

  .partners-section{
    padding:50px 0 44px;
  }

  .sponsors-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .s-card,
  .partners-section .s-card{
    min-height:130px;
    padding:18px;
    border-radius:18px;
  }

  .s-card img{max-height:72px!important}
  .partners-section .s-card img{max-height:92px!important}

  .gal-actions{flex-wrap:wrap}

  .card--photo{
    width:100%;
    max-width:100%;
    height:240px;
  }

  .gal-img{height:190px}

  .acessibilidade-box{
    left:10px;
    bottom:78px;
    transform:scale(.9);
    transform-origin:bottom left;
  }

  [vw]{
    bottom:6px;
    right:6px;
    transform:scale(.68);
  }
}

@media (max-width:480px){
  .menu-item{padding:8px 12px}
  .menu-text{display:none}
  .menu-icon{font-size:20px}
}

@media (max-width:768px){
  .lei-incentivo{padding:70px 15px}
  .lei-incentivo h1{font-size:28px}
  .lei-incentivo p{font-size:16px}
}
/* =========================================================
   AJUSTES FINAIS - CSS SOMENTE NO ASSETS
   - estilos removidos do <style> do index.php
   - seletor de idioma sem style inline
   - ajuste de header/dropdown produção
========================================================= */

/* CONTATO NO TOPO */
.contato-topo-site{
  background:#7e0000;
  color:#fff;
  padding:12px 16px;
  border-top:4px solid #b30000;
  border-bottom:4px solid #b30000;
}

.contato-topo-grid{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  text-align:center;
}

.contato-topo-item{
  font-size:15px;
  line-height:1.4;
}

.contato-topo-item strong{
  font-weight:900;
  margin-right:5px;
}

.contato-topo-item a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.contato-topo-item a:hover{
  text-decoration:underline;
}

/* BOTÃO FOTOS NO HEADER */
.link-fotos-header{
  color:#fff;
  background:#7e0000;
  border:2px solid #b30000;
  padding:8px 14px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  font-size:14px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
}

.link-fotos-header:hover{
  background:#b30000;
  color:#fff;
  text-decoration:none;
}

/* SELETOR DE IDIOMA */
.lang-switch{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 8px;
}

.lang-btn{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid #ccc;
  text-decoration:none;
  color:#111;
  font-weight:900;
  background:#fff;
  transition:.2s ease;
}

.lang-btn:hover{
  background:#fff1f1;
  color:#b30000;
  border-color:#b30000;
}

.lang-btn.active{
  background:#c00;
  color:#fff;
  border-color:#c00;
}

/* AJUSTE PRODUÇÃO - TOPO REAL */
header{
  min-height:220px !important;
  height:220px !important;
  padding:0 !important;
  display:flex !important;
  align-items:center !important;
  overflow:visible !important;
}

.header-container{
  min-height:220px !important;
  height:220px !important;
  padding:0 20px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-around !important;
  overflow:visible !important;
}

.logo{
  max-height:150px !important;
  width:auto !important;
}

.logos{
  padding:14px 24px !important;
  gap:22px !important;
  overflow:visible !important;
}

.logos-header{
  width:42px !important;
  height:42px !important;
}

.img2{
  height:90px !important;
  object-fit:cover !important;
  object-position:center !important;
}

/* MENU SUSPENSO */
.menu-home{
  position:relative !important;
  z-index:9999 !important;
  overflow:visible !important;
  margin-top:16px !important;
  margin-bottom:16px !important;
}

.dropdown-menu-home{
  position:relative !important;
  z-index:10000 !important;
}

.dropdown-content-home{
  position:absolute !important;
  top:calc(100% + 10px) !important;
  left:0 !important;
  min-width:280px !important;
  background:#fff !important;
  border:1px solid rgba(179,0,0,.18) !important;
  border-radius:16px !important;
  box-shadow:0 18px 45px rgba(0,0,0,.18) !important;
  padding:8px !important;
  z-index:10001 !important;
  overflow:hidden !important;
}

.dropdown-content-home a{
  display:flex !important;
  align-items:center !important;
  width:100% !important;
  padding:14px 18px !important;
  color:#111 !important;
  font-weight:900 !important;
  font-size:16px !important;
  text-decoration:none !important;
  border-radius:12px !important;
  border-bottom:1px solid #eee !important;
  transition:background .2s ease, color .2s ease, padding-left .2s ease !important;
}

.dropdown-content-home a:last-child{
  border-bottom:0 !important;
}

.dropdown-content-home a:hover{
  background:#fff1f1 !important;
  color:#b30000 !important;
  padding-left:24px !important;
}

.sponsors,
.sponsors-red,
.partners-section,
.conteudo,
.agenda,
.classificacao,
.galeria-section{
  position:relative !important;
  z-index:1 !important;
}

@media(max-width:768px){
  .contato-topo-site{
    padding:10px 12px;
  }

  .contato-topo-grid{
    flex-direction:column;
    gap:6px;
  }

  .contato-topo-item{
    font-size:14px;
  }

  header{
    min-height:170px !important;
    height:170px !important;
  }

  .header-container{
    min-height:170px !important;
    height:170px !important;
    padding:0 14px !important;
  }

  .logo{
    max-height:110px !important;
  }

  .logos{
    padding:10px 16px !important;
    gap:14px !important;
  }

  .logos-header{
    width:34px !important;
    height:34px !important;
  }

  .link-fotos-header{
    font-size:13px !important;
    padding:7px 10px !important;
    min-height:32px !important;
  }

  .img2{
    height:70px !important;
  }

  .menu-home{
    margin-top:12px !important;
    margin-bottom:12px !important;
  }

  .dropdown-content-home{
    min-width:calc(100vw - 32px) !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    border-radius:14px !important;
  }

  .dropdown-content-home a{
    font-size:15px !important;
    padding:13px 16px !important;
  }

  .lang-switch{
    margin:14px 0 6px;
    padding:0 12px;
  }

  .lang-btn{
    font-size:13px;
    padding:7px 12px;
  }
}

@media(max-width:480px){
  header{
    min-height:150px !important;
    height:150px !important;
  }

  .header-container{
    min-height:150px !important;
    height:150px !important;
  }

  .logo{
    max-height:95px !important;
  }

  .img2{
    height:60px !important;
  }
}

/* =========================================================
   AJUSTE MOBILE - FAIXA DE CONTATO DO TOPO
   CSS SOMENTE NO ASSETS
========================================================= */

@media(max-width:768px){

  .contato-topo-site{
    padding:8px 10px !important;
    border-top:2px solid #b30000 !important;
    border-bottom:2px solid #b30000 !important;
    background:#7e0000 !important;
  }

  .contato-topo-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:4px !important;
    text-align:center !important;
    padding:0 !important;
  }

  .contato-topo-item{
    font-size:12px !important;
    line-height:1.25 !important;
    padding:3px 4px !important;
  }

  .contato-topo-item strong{
    display:inline !important;
    font-size:12px !important;
    margin-right:4px !important;
    font-weight:900 !important;
  }

  .contato-topo-item span,
  .contato-topo-item a{
    font-size:12px !important;
    font-weight:700 !important;
  }
}

@media(max-width:480px){

  .contato-topo-site{
    padding:7px 8px !important;
  }

  .contato-topo-grid{
    gap:3px !important;
  }

  .contato-topo-item{
    font-size:11px !important;
    line-height:1.2 !important;
    padding:2px 3px !important;
  }

  .contato-topo-item strong,
  .contato-topo-item span,
  .contato-topo-item a{
    font-size:11px !important;
  }
}

/* =========================================================
   CORREÇÃO FINAL MOBILE - TOPO CONTATO
   COLOCAR NA ÚLTIMA LINHA DO assets/css/index.css
========================================================= */

@media only screen and (max-width: 768px){

  section.contato-topo-site{
    padding:5px 6px !important;
    border-top:2px solid #b30000 !important;
    border-bottom:2px solid #b30000 !important;
    background:#7e0000 !important;
  }

  section.contato-topo-site .wrap.contato-topo-grid{
    width:100% !important;
    max-width:100% !important;
    padding:0 !important;
    margin:0 auto !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:1px !important;
    text-align:center !important;
  }

  section.contato-topo-site .contato-topo-item{
    width:100% !important;
    padding:1px 4px !important;
    margin:0 !important;
    font-size:11px !important;
    line-height:1.15 !important;
    display:block !important;
  }

  section.contato-topo-site .contato-topo-item strong{
    display:inline !important;
    font-size:11px !important;
    line-height:1.15 !important;
    margin-right:3px !important;
    font-weight:900 !important;
  }

  section.contato-topo-site .contato-topo-item span,
  section.contato-topo-site .contato-topo-item a{
    display:inline !important;
    font-size:11px !important;
    line-height:1.15 !important;
    font-weight:700 !important;
  }
}

@media only screen and (max-width: 480px){

  section.contato-topo-site{
    padding:4px 5px !important;
  }

  section.contato-topo-site .wrap.contato-topo-grid{
    gap:0 !important;
  }

  section.contato-topo-site .contato-topo-item{
    font-size:10px !important;
    line-height:1.1 !important;
    padding:1px 3px !important;
  }

  section.contato-topo-site .contato-topo-item strong,
  section.contato-topo-site .contato-topo-item span,
  section.contato-topo-site .contato-topo-item a{
    font-size:10px !important;
    line-height:1.1 !important;
  }
}

/* =========================================================
   CORREÇÃO FINAL - REMOVER SCROLL LATERAL NO MOBILE
   colocar na última linha do assets/css/index.css
========================================================= */

html,
body{
  max-width:100%;
  overflow-x:hidden !important;
}

@media only screen and (max-width:768px){

  *{
    max-width:100%;
  }

  .wrap{
    width:100% !important;
    max-width:100% !important;
    padding-left:12px !important;
    padding-right:12px !important;
  }

  .menu-home{
    width:100% !important;
    max-width:100% !important;
    padding-left:12px !important;
    padding-right:12px !important;
    overflow:visible !important;
  }

  .dropdown-menu-home{
    width:100% !important;
    max-width:100% !important;
  }

  .dropdown-content-home{
    position:static !important;
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;
    margin-top:8px !important;
    box-sizing:border-box !important;
  }

  .dropdown-content-home a{
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  .contato-topo-site{
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
  }

  .contato-topo-grid{
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  .contato-topo-item{
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
    overflow-wrap:break-word !important;
    word-break:normal !important;
  }

  .header-container,
  .logos{
    max-width:100% !important;
    box-sizing:border-box !important;
  }
}

/* =========================================================
   AJUSTE FINAL - PATROCINADORES
   CSS SEPARADO DO INDEX.PHP
   - fundo vermelho
   - logos maiores no computador
   - mobile controlado
   - não altera parceiros, notícias, jogos, galeria ou PHP
========================================================= */

.sponsors.sponsors-red{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(0,0,0,.22), transparent 35%),
    linear-gradient(180deg,#d31317 0%,#a70000 100%) !important;
  padding:58px 0 66px !important;
  position:relative !important;
  overflow:hidden !important;
}

.sponsors.sponsors-red .wrap{
  max-width:1240px !important;
  margin:0 auto !important;
  padding:0 20px !important;
  position:relative !important;
  z-index:2 !important;
}

.sponsors.sponsors-red .section-title{
  color:#fff !important;
  text-align:center !important;
  font-size:42px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:.05em !important;
  margin:0 0 14px !important;
  text-shadow:0 3px 14px rgba(0,0,0,.22) !important;
}

.sponsors.sponsors-red .section-title::after{
  content:"" !important;
  display:block !important;
  width:86px !important;
  height:4px !important;
  background:#fff !important;
  border-radius:999px !important;
  margin:14px auto 0 !important;
}

.sponsors.sponsors-red .sponsors-subtitle{
  color:rgba(255,255,255,.94) !important;
  text-align:center !important;
  max-width:720px !important;
  margin:0 auto 34px !important;
  font-size:15px !important;
  line-height:1.5 !important;
}

.sponsors.sponsors-red .sponsors-grid-patrocinadores{
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:center !important;
  align-items:stretch !important;
  gap:22px !important;
  max-width:1220px !important;
  margin:0 auto !important;
}

.sponsors.sponsors-red .s-card-patrocinador{
  width:190px !important;
  height:132px !important;
  min-height:132px !important;
  background:rgba(255,255,255,.95) !important;
  border-radius:22px !important;
  padding:18px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid rgba(255,255,255,.65) !important;
  box-shadow:0 14px 34px rgba(0,0,0,.22) !important;
  overflow:hidden !important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.sponsors.sponsors-red .s-card-patrocinador:hover{
  transform:translateY(-5px) !important;
  box-shadow:0 20px 42px rgba(0,0,0,.30) !important;
  border-color:#fff !important;
}

.sponsors.sponsors-red .s-card-patrocinador a{
  width:100% !important;
  height:100% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-decoration:none !important;
}

.sponsors.sponsors-red .s-card-patrocinador img{
  width:auto !important;
  height:auto !important;
  max-width:158px !important;
  max-height:88px !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block !important;
  margin:0 auto !important;
}

.sponsors.sponsors-red .sponsors-empty{
  width:100% !important;
  color:#fff !important;
  text-align:center !important;
  font-size:16px !important;
  padding:18px !important;
  background:rgba(255,255,255,.12) !important;
  border-radius:14px !important;
}

/* TABLET */
@media only screen and (max-width:900px){
  .sponsors.sponsors-red .section-title{
    font-size:32px !important;
  }

  .sponsors.sponsors-red .sponsors-grid-patrocinadores{
    gap:16px !important;
  }

  .sponsors.sponsors-red .s-card-patrocinador{
    width:170px !important;
    height:118px !important;
    min-height:118px !important;
  }

  .sponsors.sponsors-red .s-card-patrocinador img{
    max-width:135px !important;
    max-height:74px !important;
  }
}

/* CELULAR */
@media only screen and (max-width:768px){
  .sponsors.sponsors-red{
    padding:42px 0 48px !important;
  }

  .sponsors.sponsors-red .wrap{
    padding:0 12px !important;
  }

  .sponsors.sponsors-red .section-title{
    font-size:26px !important;
    letter-spacing:.04em !important;
    margin-bottom:12px !important;
  }

  .sponsors.sponsors-red .sponsors-subtitle{
    font-size:14px !important;
    margin-bottom:24px !important;
    padding:0 8px !important;
  }

  .sponsors.sponsors-red .sponsors-grid-patrocinadores{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
    max-width:100% !important;
  }

  .sponsors.sponsors-red .s-card-patrocinador{
    width:100% !important;
    height:104px !important;
    min-height:104px !important;
    padding:14px !important;
    border-radius:16px !important;
  }

  .sponsors.sponsors-red .s-card-patrocinador img{
    max-width:118px !important;
    max-height:62px !important;
  }
}

/* CELULAR PEQUENO */
@media only screen and (max-width:380px){
  .sponsors.sponsors-red .s-card-patrocinador{
    height:96px !important;
    min-height:96px !important;
    padding:12px !important;
  }

  .sponsors.sponsors-red .s-card-patrocinador img{
    max-width:104px !important;
    max-height:56px !important;
  }
}

/* =========================================================
   AJUSTE FINAL - GALERIA COM IMAGENS MAIORES
   - aumenta somente a galeria
   - não altera PHP, banco, menu, patrocinadores ou lógica
========================================================= */

.galeria-section{
  padding:50px 0 !important;
}

.galeria-section .wrap{
  max-width:1280px !important;
  margin:0 auto !important;
  padding:32px 24px !important;
}

.galeria-section h2{
  font-size:42px !important;
  margin-bottom:26px !important;
}

.carrosel{
  display:flex !important;
  gap:24px !important;
  overflow-x:auto !important;
  padding:10px 6px 20px !important;
  scroll-snap-type:x mandatory !important;
  -webkit-overflow-scrolling:touch !important;
}

.card--photo{
  flex:0 0 auto !important;
  width:380px !important;
  height:340px !important;
  border-radius:20px !important;
  overflow:hidden !important;
  scroll-snap-align:start !important;
  border:1px solid rgba(179,0,0,.14) !important;
  background:#fff !important;
  box-shadow:var(--shadow) !important;
}

.gal-img{
  width:100% !important;
  height:280px !important;
  object-fit:cover !important;
  object-position:center !important;
  cursor:zoom-in !important;
}

.legenda{
  height:60px !important;
  font-size:16px !important;
  font-weight:900 !important;
}

@media only screen and (max-width:900px){
  .card--photo{
    width:320px !important;
    height:300px !important;
  }

  .gal-img{
    height:240px !important;
  }
}

@media only screen and (max-width:768px){
  .galeria-section .wrap{
    padding:18px 14px !important;
  }

  .galeria-section h2{
    font-size:28px !important;
  }

  .card--photo{
    width:100% !important;
    max-width:100% !important;
    height:300px !important;
  }

  .gal-img{
    height:240px !important;
  }

  .legenda{
    height:60px !important;
  }
}

@media only screen and (max-width:480px){
  .card--photo{
    height:280px !important;
  }

  .gal-img{
    height:220px !important;
  }
}

/* =========================================================
   AJUSTE FINAL - GALERIA 80VW + IMAGENS MAIORES
   - colocar no final para sobrescrever regras anteriores
   - não altera PHP, banco, menu, patrocinadores ou lógica
========================================================= */

.galeria-section{
  width:100% !important;
  padding:50px 0 !important;
}

.galeria-section .wrap{
  width:80vw !important;
  max-width:80vw !important;
  margin:0 auto !important;
  padding:32px 24px !important;
}

.galeria-section h2{
  font-size:42px !important;
  margin-bottom:26px !important;
}

.galeria-section .carrosel,
.carrosel{
  display:flex !important;
  gap:24px !important;
  overflow-x:auto !important;
  padding:10px 6px 20px !important;
  scroll-snap-type:x mandatory !important;
  -webkit-overflow-scrolling:touch !important;
}

.galeria-section .card--photo,
.card--photo{
  flex:0 0 auto !important;
  width:380px !important;
  height:340px !important;
  border-radius:20px !important;
  overflow:hidden !important;
  scroll-snap-align:start !important;
  border:1px solid rgba(179,0,0,.14) !important;
  background:#fff !important;
  box-shadow:var(--shadow) !important;
}

.galeria-section .gal-img,
.gal-img{
  width:100% !important;
  height:280px !important;
  object-fit:cover !important;
  object-position:center !important;
  cursor:zoom-in !important;
}

.galeria-section .legenda,
.legenda{
  height:60px !important;
  font-size:16px !important;
  font-weight:900 !important;
}

@media only screen and (max-width:900px){
  .galeria-section .wrap{
    width:90vw !important;
    max-width:90vw !important;
  }

  .galeria-section .card--photo,
  .card--photo{
    width:320px !important;
    height:300px !important;
  }

  .galeria-section .gal-img,
  .gal-img{
    height:240px !important;
  }
}

@media only screen and (max-width:768px){
  .galeria-section .wrap{
    width:94vw !important;
    max-width:94vw !important;
    padding:18px 14px !important;
  }

  .galeria-section h2{
    font-size:28px !important;
  }

  .galeria-section .card--photo,
  .card--photo{
    width:100% !important;
    max-width:100% !important;
    height:300px !important;
  }

  .galeria-section .gal-img,
  .gal-img{
    height:240px !important;
  }

  .galeria-section .legenda,
  .legenda{
    height:60px !important;
  }
}

@media only screen and (max-width:480px){
  .galeria-section .card--photo,
  .card--photo{
    height:280px !important;
  }

  .galeria-section .gal-img,
  .gal-img{
    height:220px !important;
  }
}
