/* ===============================
   NIBIRU — CSS clean (black + gold)
   =============================== */
/*
  Este arquivo CSS define o visual minimalista e elegante do site
  NIBIRU Sound System. Ele usa variáveis CSS para cores e sombras
  consistentes e agrupa estilos por seções (navbar, hero, pacotes, etc).
*/

:root{
  --bg: #050505;
  --panel: rgba(12,12,12,.60);
  --panel2: rgba(12,12,12,.42);
  --border: rgba(255,255,255,.10);

  --gold: #d7a752;
  --goldSoft: rgba(215,167,82,.20);
  --goldGlow: rgba(215,167,82,.14);

  --txt: #eaeaea;
  --muted: rgba(234,234,234,.78);

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);
}

*{ margin:0; padding:0; box-sizing:border-box; }
/* Zera margens e preenchimentos padrão para garantir consistência */

body{
  font-family: Arial, sans-serif;
  color: var(--txt);
  line-height: 1.6;

  /* Fundo minimalista em tons escuros com detalhes dourados */
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(215,167,82,.14), transparent 60%),
    radial-gradient(700px 520px at 85% 0%, rgba(215,167,82,.08), transparent 60%),
    radial-gradient(700px 520px at 15% 100%, rgba(215,167,82,.06), transparent 60%),
    linear-gradient(180deg, #040404 0%, #070707 55%, #040404 100%);
  background-attachment: fixed;
}

/* Trilhas elétricas douradas (bem discretas) — usa seu wallpaper novo */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  /* Papel de parede dourado sutil. Troque o nome do arquivo se desejar */
  background: url("../images/bg.png") center / cover no-repeat;
  opacity: .30; /* controla a intensidade */
  filter: blur(.2px) saturate(1.05);
}

/* ===============================
   NAVBAR — premium, clean
   =============================== */
nav{
  /* Barra de navegação fixa no topo */
  position: sticky;
  top: 0;
  z-index: 1000;

  display:flex;
  align-items:center;
  justify-content:space-between;

  height: 102px; 

  padding: 0px 5px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(215,167,82,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

nav .logo{
  display:flex;
  align-items:center;
  gap:5px;
  line-height:0;
}

nav .logo img{
  /* Tamanho da logomarca da NIBIRU na navbar */
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Leve sombra dourada na logo */
  filter: drop-shadow(0 0 10px rgba(215,167,82,.15));
}

/* links */
nav .nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 8px;
}

nav .nav-links li a{
  color: rgba(255,255,255,.88);
  text-decoration:none;

  padding: 9px 12px;
  border-radius: 999px;

  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

nav .nav-links li a:hover{
  background: rgba(215,167,82,.10);
  border-color: rgba(215,167,82,.20);
  color: #fff;
  transform: translateY(-1px);
}

nav .nav-links li a.active{
  background: rgba(215,167,82,.16);
  border-color: rgba(215,167,82,.26);
  color: #fff;
}

/* hamburger */
.hamburger{
  display:none;
  font-size: 1.8rem;
  cursor:pointer;
  color:#fff;
}
#menu-toggle{ display:none; }

/* ===============================
   Layout base / títulos
   =============================== */
main{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 34px 0 22px;
}

h2{
  text-align:center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 18px;
  letter-spacing: .2px;
}

/* “Hero” */
.hero{
  /* Seção hero: cabeçalho com grande chamada e fundo neutro */
  text-align:center;
  padding: 94px 0 50px;
}

.hero-logo{
  /* Logomarca na seção heroica */
  display:block;
  margin: 0 auto 16px auto;
  width: min(520px, 84%);
  height:auto;
  filter: drop-shadow(0 0 18px rgba(215,167,82,.12));
}

.hero p{
  /* Subtítulo ou slogan da seção heroica */
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

/* ===============================
   Seções em painel (clean)
   =============================== */
.about,
.packages,
.assistencia,
.events,
.gallery{
  margin-top: 22px;
  padding: 18px;
  background: var(--panel2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(8px);
}

.about p{
  margin-top: 10px;
  color: var(--muted);
  text-align: justify;
}

/* ===============================
   ALUGAR — vitrine (cards com capa)
   =============================== */
.package-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.package-tile{
  display:block;
  text-decoration:none;
  color:inherit;

  border-radius: var(--radius);
  overflow:hidden;

  background: var(--panel);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(8px);

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

.package-tile:hover{
  transform: translateY(-6px);
  border-color: rgba(215,167,82,.28);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.tile-img{
  height: 240px;                /* <<< aqui é o tamanho top */
  background-size: cover;
  background-position: center;
  position: relative;
  filter: contrast(1.04) saturate(1.05);
}

/* overlay discreto pra deixar texto legível */
.tile-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.82));
}

.tile-info{
  padding: 14px 14px 16px;
}

.tile-info h3{
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.tile-info .mini{
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 10px;
}

.tile-info .price{
  font-weight: 900;
  letter-spacing: .4px;
  color: rgba(255,255,255,.92);
  margin-bottom: 12px;
}

.tile-info .cta{
  display:inline-block;
  font-weight: 800;
  font-size: .92rem;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(215,167,82,.14);
  border: 1px solid rgba(215,167,82,.24);
}

/* ===============================
   PÁGINA DO PACOTE (detalhes)
   =============================== */
.details-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.details-hero{
  min-height: 360px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;

  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.details-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 280px at 50% 20%, rgba(215,167,82,.10), transparent 60%),
              linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.55));
}

.details-card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}

.details-card .price{
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.details-card h3{
  margin-top: 14px;
  margin-bottom: 8px;
}

.bullets{
  margin-left: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.details-gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.details-gallery img{
  width:100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .2s ease;
}

.details-gallery img:hover{
  transform: scale(1.03);
  border-color: rgba(215,167,82,.25);
}

.btn-back{
  display:inline-block;
  margin-top: 16px;
  text-decoration:none;
  color:#fff;
  font-weight: 900;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

/* ===============================
   EVENTOS
   =============================== */
.events .event{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  border-left: 3px solid rgba(215,167,82,.40);

  margin: 16px auto;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow2);
}

.events .event h3{
  color: rgba(255,255,255,.95);
  margin-bottom: 6px;
}

.events .event p{
  color: var(--muted);
}

/* ===============================
   GALERIA
   =============================== */
.gallery .image-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.gallery .image-grid img{
  width:100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .22s ease, border-color .22s ease;
}

.gallery .image-grid img:hover{
  transform: scale(1.02);
  border-color: rgba(215,167,82,.25);
}

/* ===============================
   FOOTER
   =============================== */
footer{
  width: 100%;
  margin-top: 26px;
  padding: 18px 0;
  text-align:center;
  color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.45);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

/* ===============================
   RESPONSIVO (menu mobile)
   =============================== */
@media (max-width: 860px){
  .hamburger{ display:block; }

  nav .nav-links{
    position:absolute;
    top: 100%;
    right: 14px;
    width: min(260px, 92vw);

    flex-direction: column;
    align-items: stretch;
    gap: 6px;

    padding: 10px;
    border-radius: 16px;
    background: rgba(0,0,0,.78);
    border: 1px solid rgba(215,167,82,.14);
    box-shadow: var(--shadow2);

    display:none;
  }

  nav .nav-links.show{ display:flex; }

  nav .nav-links li a{
    margin-left:0;
    text-align:center;
    padding: 11px 12px;
  }

  .package-grid{ grid-template-columns: 1fr; }
  .tile-img{ height: 220px; }

  .details-wrap{ grid-template-columns: 1fr; }
  .details-hero{ min-height: 240px; }
  .details-gallery{ grid-template-columns: 1fr 1fr; }
}

/* ===============================
   BOTÃO WHATSAPP — premium
   =============================== */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 16px;
  border-radius: 999px;

  text-decoration: none;
  color: #ffffff;

  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border: 1px solid rgba(255,255,255,.25);

  box-shadow: 0 18px 45px rgba(0,0,0,.55);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.whatsapp-float:hover{
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow: 0 22px 60px rgba(0,0,0,.65);
}

/* Ícone */
.whatsapp-icon{
  width: 26px;
  height: 26px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.35));
}

/* Texto */
.whatsapp-text{
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.whatsapp-text small{
  font-weight: 500;
  font-size: .78rem;
  opacity: .85;
}

/* Mobile — só ícone */
@media (max-width: 520px){
  .whatsapp-text{
    display: none;
  }

  .whatsapp-float{
    padding: 14px;
    border-radius: 50%;
  }
}

/* Links da seção Assistência Técnica */
.assistencia a{
  color: rgba(215,167,82,.95);       /* dourado NIBIRU */
  text-decoration: none;
  font-weight: 700;
  transition: color .2s ease, text-shadow .2s ease;
}

.assistencia a:hover{
  color: #ffffff;
  text-shadow: 0 0 8px rgba(215,167,82,.6);
}

/* FORÇAR cor dos links (inclui visited) */
main a,
main a:visited{
  color: rgba(215,167,82,.95) !important;
  text-decoration: none !important;
  font-weight: 700;
}

main a:hover{
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(215,167,82,.55);
}

/* =====================================================
NAVBAR MOBILE — FIX DEFINITIVO (logo esquerda + botão direita)
===================================================== */
@media (max-width: 860px){


/* Safari/iPhone: respeita safe-area (notch) */
nav{
justify-content: flex-start !important;
width: 100% !important;


/* cola na esquerda de verdade, inclusive no iPhone */
padding-left: calc(6px + env(safe-area-inset-left)) !important;
padding-right: calc(10px + env(safe-area-inset-right)) !important;
}


/* Logo no canto esquerdo */
nav .logo{
flex: 0 0 auto !important;
margin: 0 !important;
padding: 0 !important;
}


/* Empurra TUDO que vem depois da logo para a direita
(no seu HTML, depois da logo vem o label.hamburger, input e ul) */
nav .logo ~ *{
margin-left: auto !important;
}


/* Botão hambúrguer destacado (quadrado dourado opaco) */
.hamburger{
margin-left: auto !important;


width: 44px !important;
height: 44px !important;
border-radius: 10px !important;


display: flex !important;
align-items: center !important;
justify-content: center !important;


background: rgba(215, 167, 82, 0.18) !important;
border: 1px solid rgba(215, 167, 82, 0.45) !important;


color: rgb(215, 167, 82) !important;
font-size: 22px !important;
line-height: 1 !important;


box-shadow:
0 0 14px rgba(215,167,82,.30),
inset 0 0 8px rgba(215,167,82,.20) !important;
}


.hamburger:hover{
background: rgba(215, 167, 82, 0.26) !important;
box-shadow:
0 0 18px rgba(215,167,82,.45),
inset 0 0 10px rgba(215,167,82,.26) !important;
}
}

/* =========================================
   TAMANHO DEFINITIVO DA LOGO (PC + MOBILE)
========================================= */

/* DESKTOP */
nav .logo img{
  height: 85px;
  width: auto;
}

/* MOBILE */
@media (max-width: 860px){
  nav .logo img{
    height: 70px;
  }
}

/* VIEWER FULLSCREEN (modal) */
.viewer{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
}

.viewer.show{ display: flex; }

.viewer img{
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.75);
}

.viewer .close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(215,167,82,.18);
  border: 1px solid rgba(215,167,82,.40);
  color: #d7a752;
  font-size: 22px;
  cursor: pointer;
}

#galleryGrid img{
  cursor: zoom-in;
  pointer-events: auto;
}

/* HOME - Seções extras */

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:14px;
}

.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:12px;
  text-decoration:none;
  background: rgba(255,255,255,0.10);
}

.btn-outline{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
}

.center{
  display:flex;
  justify-content:center;
  margin-top:12px;
}

.home-quickbar{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  padding:14px 16px;
  border-radius:12px;
  background: rgba(255,255,255,0.06);
  margin: 18px 0;
}

.quickbar-item a{
  text-decoration:none;
}

.home-news .news-list{
  display:grid;
  gap:12px;
}

.news-item{
  padding:14px 16px;
  border-radius:12px;
  background: rgba(255,255,255,0.06);
}

.news-tag{
  display:inline-block;
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  margin-bottom:8px;
}

.home-events .event-cards{
  display:grid;
  gap:14px;
}

.event-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:12px;
  background: rgba(255,255,255,0.06);
}

.event-date{
  width:64px;
  min-width:64px;
  text-align:center;
  padding:10px 8px;
  border-radius:12px;
  background: rgba(255,255,255,0.10);
}

.event-day{
  display:block;
  font-size:22px;
  font-weight:700;
}

.event-month{
  display:block;
  font-size:12px;
  opacity:0.9;
}

.event-link{
  display:inline-block;
  margin-top:8px;
  text-decoration:none;
}

.home-highlights .highlight-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.highlight-card{
  padding:14px 16px;
  border-radius:12px;
  background: rgba(255,255,255,0.06);
}

.home-gallery .gallery-grid{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.home-gallery img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:12px;
}

.instagram-embed{
  margin-top:14px;
  border-radius:12px;
  overflow:hidden;
}

/* HERO - botões mais bonitos e consistentes */
.hero-cta .btn{
  font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(255, 183, 48, 0.699);
  background: rgba(255, 166, 1, 0.18);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 20px rgba(255, 187, 0, 0.329);
}

.hero-cta .btn:hover{
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255,255,255,0.28);
}

.hero-cta .btn-outline{
  background: rgba(255, 166, 1, 0.18);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-cta .btn-outline:hover{
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255,255,255,0.28);
}

/* Espaçamento entre seções da home */
main section{
  padding: 74px 16px;
  border-radius: 12px;
}

/* Títulos com respiro */
main section h2{
  margin-bottom: 20px;
}

/* Botão fechar menu (X) */
.close-menu{
  display: flex;
  justify-content: flex-end;
  padding: 12px 14px;
}

.close-menu label{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 10px;
  background: #c62828; /* vermelho forte */
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.close-menu label:hover{
  background: #b71c1c;
  transform: scale(1.05);
}

@media (min-width: 769px){
  .close-menu{
    display: none;
  }
}

/* Hambúrguer como link */
.hamburger{
  text-decoration: none;
  cursor: pointer;
}

/* No desktop: mostra nav normal e (se quiser) esconde o hambúrguer */
@media (min-width: 769px){
  .hamburger{ display: none; }
  .nav-links{ display: flex; }
}

/* No mobile: mostra hambúrguer e esconde a lista do nav (usa menu.html) */
@media (max-width: 768px){
  .hamburger{ display: block; }
  .nav-links{ display: none !important; }
}

/* MENU.HTML - trava rolagem */
body.menu-open{
  height: 100vh;
  overflow: hidden;
}

/* Nav do menu (fixo) */
.menu-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

/* Botão X com glow sutil */
.menu-close{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #c62828;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35), 0 0 14px rgba(198,40,40,0.35);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.menu-close:active{
  transform: scale(0.96);
  box-shadow: 0 6px 18px rgba(0,0,0,0.30), 0 0 10px rgba(198,40,40,0.25);
}
.menu-close:hover{
  background: #b71c1c;
}

/* Área do menu (fixa e sem scroll) */
.menu-page{
  position: fixed;
  inset: 0;
  padding: 120px 16px 22px; /* espaço do nav */
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.menu-title{
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.2px;
}

/* Grade dos links (tiles estilo app) */
.menu-grid{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Tile */
.menu-tile{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 92px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease;
}
.menu-tile:hover{
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.16);
}
.menu-tile:active{
  transform: scale(0.98);
}

.tile-ic{
  font-size: 22px;
}
.tile-txt{
  text-align: center;
  line-height: 1.2;
}


/* CTAs grandes */
.menu-cta{
  display:grid;
  gap: 12px;
  margin-top: 2px;
}

.menu-action{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  text-decoration:none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease;
}

.menu-action.primary{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.16);
}

.menu-action:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}
.menu-action:active{
  transform: scale(0.99);
}

.action-ic{
  font-size: 18px;
}

/* Nota */
.menu-note{
  opacity: 0.85;
  margin-top: 2px;
}

/* Esconde footer se existir aqui */
body.menu-open footer{
  display: none !important;
}

/* Ajuste pra telas muito pequenas */
@media (max-width: 360px){
  .menu-grid{ grid-template-columns: 1fr; }
  .menu-tile{ min-height: 76px; }
}

/* Ícones SVG dos botões */
.menu-action svg{
  width: 22px;
  height: 22px;
  display: block;
}

/* WhatsApp verde */
.menu-action.primary svg{
  fill: #25D366;
}

/* Grid dos embeds do Instagram */
.instagram-embeds{
  display: grid;
  gap: 38px;
}

/* Tablet e desktop: 2 por linha */
@media (min-width: 768px){
  .instagram-embeds{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop grande: 3 por linha */
@media (min-width: 1100px){
  .instagram-embeds{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.instagram-embeds{
  max-width: 1300px;
  margin: 0 auto;
}

/* Espaçamento do botão do Instagram */
.home-instagram .center{
  margin-top: 22px;
  margin-bottom: 24px;
}

/* garante que o bloco da data não esmague o texto */
.event-date{
  min-width: 86px;          /* aumenta a caixinha */
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* o range NÃO quebra de jeito nenhum */
.event-range{
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;      /* <- o segredo */
}

/* mês embaixo */
.event-month{
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
  line-height: 1;
}

.gallery-grid{
  column-count: 4;
  column-gap: 16px;
}

.gallery-item{
  break-inside: avoid;
  margin-bottom: 16px;
}

/* HOME thumbs: ignora tamanho/proporção da imagem */
.home-thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* se tiver container/card */
.home-thumb-wrap{
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9; /* ou 1/1 se quiser quadrado */
  background: rgba(255,255,255,0.06);
}

/* ===== Parcerias ===== */
.page-hero {
  padding: 28px 16px;
  text-align: center;
}

.partners {
  padding: 22px 16px 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.partners-sub {
  opacity: 0.85;
  margin-top: 6px;
}

/* Grid responsiva */
.partners-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 700px) {
  .partners-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .partners-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Card quadrado */
.partner-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  aspect-ratio: 1 / 1;
  border-radius: 14px;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);

  padding: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

/* Logo redonda dentro de um wrap */
.partner-logo-wrap {
  width: 64%;
  max-width: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  transform: scale(1.02);
  transition: transform 180ms ease, filter 180ms ease;
}

.partner-meta {
  margin-top: 12px;
  text-align: center;
  line-height: 1.1;
}

.partner-name {
  display: block;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.partner-handle {
  display: block;
  margin-top: 6px;
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Hover só em desktop/trackpad (onde faz sentido) */
@media (hover: hover) and (pointer: fine) {
  .partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  }

  .partner-card:hover .partner-logo {
    transform: scale(1.08);
    filter: saturate(1.1);
  }
}

/* Acessibilidade: foco no teclado */
.partner-card:focus-visible {
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 3px;
}

