:root{
  --bg: #07070a;
  --panel: #0f0f16;
  --panel2: #0b0b10;
  --text: #e8e8ef;
  --muted: #a7a7b3;

  /* (se quiser manter amarelo, deixa. Se não, a gente troca depois) */
  --primary: #ffffff;
  --accent: #ff2d2d;

  --ring: rgba(255, 0, 0, 0.25);
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 12px;
  --max: 1120px;
  --orbitron: "Orbitron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --inter: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fontTitle: var(--orbitron);
  --fontBody: var(--inter);

  /* ========= NOVO: PALETA NEON KILDER (padrão do site) ========= */
  --neon-blue: #5fa8ff;     /* azul do topo */
  --neon-purple: #9a6bff;   /* roxo do topo */
  --neon-violet: #7b5cff;   /* meio termo (opcional, dá “liga”) */

  /* gradiente DIAGONAL (o que você quer) */
  --neon-gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-violet), var(--neon-purple));

  /* glow padrão */
  --neon-glow: 0 0 14px rgba(120,160,255,.6),
               0 0 30px rgba(140,100,255,.4);

  /* borda padrão */
  --neon-border: 1px solid rgba(255,255,255,.12);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--inter);
  background: radial-gradient(900px 500px at 20% 10%, rgba(255,212,0,.08), transparent 55%),
              radial-gradient(900px 500px at 80% 20%, rgba(255,45,45,.06), transparent 60%),
              linear-gradient(180deg, var(--bg), #050508 60%, #050508);
  color: var(--text);
  line-height:1.55;
}

.bg-noise{
  pointer-events:none;
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.35;
}

a{ color:inherit; text-decoration:none; }
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color: var(--primary);
}


.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,12,16,.68);
  border-bottom: 1px solid var(--line);
}

.site-header .brand-mark{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important; /* só pra garantir */
}

.site-header .brand-mark img{
  filter: drop-shadow(0 0 6px rgba(120,180,255,.45));
}

.header-inner{
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-left: 35px;
  padding-right: 35px;
}

/* ===== BRAND (botão Kilder igual ao site antigo) ===== */
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--orbitron);
}

.brand-mark{
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.brand-mark img{
  width: 80px;     /* tamanho do K dentro do quadrado */
  height: auto;
  display: block;
  transform: translateY(1px); /* ajuste óptico fino */
}

.brand:hover .brand-mark{
  box-shadow:
    0 0 0 1px rgba(255,212,0,.25),
    0 0 18px rgba(120, 129, 255, 0.35);
}

.brand-text{
  font-family: var(--orbitron),sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.site-header .brand-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.nav{
  display:flex;
  align-items:center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
/* ===== NAV como "botões" (igual ao site antigo) ===== */
.nav a{
  position: relative;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  background: transparent;
  transition: 
    background .25s ease,
    box-shadow .25s ease,
    transform .15s ease,
    color .25s ease;
}

/* glow */
.nav a::before{
  content: "";
  position: absolute;
  inset: 2;
  border-radius: 999px;
  opacity: 0;
  filter: blur(14px);
  z-index: -2;
  transition: opacity .10s ease;
  background: linear-gradient(135deg, #1b3cff, #6a00ff, #b100ff);
  border: 2px solid rgba(255,255,255,.18);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active{
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1b3cff, #6a00ff, #b100ff);
  color: #fff;
  box-shadow:
  0 0 14px rgba(50, 90, 255, .55),
  0 0 34px rgba(140, 0, 255, .45),
  0 0 60px rgba(200, 0, 255, .25);
}

.nav a:hover::before,
.nav a:focus-visible::before,
.nav a.active::before{
  opacity: .15;
}

/* Mobile menu */
.menu-btn{
  display:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 10px 10px;
}
.menu-btn span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.82);
  margin: 4px 0;
  border-radius: 99px;
}

/* Hero */
.hero{
  padding: 28px 0 10px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  column-gap: 22px;   /* mantém distância lateral */
  row-gap: 0;         /* <- MATA o gap vertical */
  align-items: start;
}
.kicker{
  font-family: var(--inter);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-transform: none; /* <<< isso resolve */
  color: rgba(232,232,239,.9);
}

.title{
  margin: 0;
  font-family: var(--orbitron);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

/* ===== HERO: ajustar gap e posição do logo (Kilder) ===== */

/* ⚠️ Ajustes visuais intencionais (layout editorial) */
/* Não remover margens negativas sem revisar o hero inteiro */


.hero-left .kicker{
  margin: 0 !important;   /* menos espaço embaixo da frase de cima */
  line-height: 1.35;
}

.hero-logo{
  grid-column: 1 / 2;          /* <- FORÇA ficar na coluna do texto (esquerda) */
  justify-self: start;         /* <- encosta no início da coluna */
  display: flex;
  justify-content: flex-start; 
  margin: -70px 0 0 !important; 
}

.hero-logo img{
  display: block;
  height: auto;
  width: clamp(420px, 26vw, 420px); /* <- maior (antes tava pequeno) */
  margin-left: -80px;               /* <- “encosta” mais (compensa PNG com espaço transparente) */
}

.hero-left .subtitle{
  margin-top: -80px !important;   /* mantém colado no logo */
  margin-bottom: 12px !important; /* controla SOMENTE o gap até os botões */
}

/* ===== HERO — MOBILE FIX (somente celular) ===== */
@media (max-width: 720px){

  /* mata qualquer puxada negativa do desktop */
  .hero-logo{
    grid-column: 1 / -1;
    margin: 10px 0 8px !important;   /* controla o espaço acima/abaixo do logo no mobile */
    justify-self: start;
    display: block;                   /* simplifica */
  }

  .hero-logo img{
    width: min(420px, 100%);          /* deixa maior no celular */
    height: auto;
    margin-left: -10px;               /* ajuste fino pra “encostar” (PNG tem espaço transparente) */
  }

  .hero-left{
    text-align: center;      /* centraliza tudo dentro do bloco */
  }

  .hero-left .kicker{
    text-align: center;
    margin: 0 0 -80px !important;       /* espaço “bonito” entre linha de cima e o logo */
  }

  .hero-left .subtitle{
    text-align: center;
    margin: -90px 0 12px !important;    /* não deixa colar demais nos botões */
  }
}

.social-box{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.sbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 12px;
  justify-content: center;   /* <<< centraliza horizontal */
  align-items: center;       /* <<< centraliza vertical */
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.84);
  transition: transform .12s ease, background .12s ease, color .12s ease;
  margin-right: 5px;
  font-size: 12px;
  opacity: 0.9;
}
.sbtn i {
  margin-right: 8px; /* espaço entre o ícone e a palavra */
}

.sbtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  color: var(--text);
}

.portrait-card{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  max-height: 460px;
  min-width: 410px; /* Foto vertical */
}
.portrait-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.panel{
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 16px;
}
.panel-head{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 10px;
}
.panel-title{
  margin: 0;
  font-family: var(--fontTitle);
  font-size: 16px;
}
.panel-note{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.embed-wrap iframe{
  width: 100%;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
}

.quick-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 11px;
}
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  font-size: 13px;
  color: rgba(255,255,255,.84);
  display: inline-flex;
  align-items: center;
}
.pill:hover{ background: rgba(255,255,255,.08); }

.pill i{
  margin-right: 8px; /* espaço entre ícone e texto */
  font-size: 14px;
  opacity: 0.9;
}

/* Sections */

.section{
  padding: 34px 0 8px;
}
.section-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.section-head h2{
  position: relative;
  display: inline-block;

  font-family: var(--fontTitle);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 16px;

  padding: 6px 16px;
  margin-bottom: 18px;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    #1b3cff, #6a00ff, #b100ff
  );

  border-radius: 12px;
  border: 2px solid rgba(255,255,255,.18);

 box-shadow:
    0 0 14px rgba(120,160,255,.6),
    0 0 30px rgba(140,100,255,.4);

  overflow: hidden;
}

.section-head h2::before{
  content:"";
  position:absolute;
  inset:-12px;
  background: linear-gradient(
    135deg,
    #5fa8ff,
    #7b5cff,
    #9a6bff
  );
  filter: blur(18px);
  opacity: .9;
  z-index: -1;
}

.section-head p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-text{
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
}

/* Grids */
.grid{
  display:grid;
  gap: 14px;
}
.cards{
  grid-template-columns: repeat(3, 1fr);
}
.embeds{
  grid-template-columns: repeat(2, 1fr);
}
.gallery{
  grid-template-columns: repeat(3, 1fr);
}
.live{
  grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-inner{
  padding: 10px;
  margin-bottom: 10px;
}
.card h4{
  margin: 0 0 6px;
  font-family: var(--fontTitle);
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.card .embed{
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.card .embed iframe{
  display:block;
  width: 100%;
  border: 0;
}
.card img{
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Gallery items */
.gitem{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}
.gitem img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Live shorts: vertical */
.short{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
}

/* Gigs table */

.table{
  display:grid;
  gap: 10px;
}
.row{
  display:grid;
  grid-template-columns: 130px 1.2fr 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.row .muted{ color: var(--muted); }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
label{
  display:block;
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
input, textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(142,242,255,.55);
  box-shadow: 0 0 0 4px rgba(142,242,255,.10);
}
.btn{
  margin-top: 14px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
   border: 2px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, #1b3cff, #6a00ff, #b100ff);
  color: #ffffff;
   box-shadow:
    0 0 14px rgba(120,160,255,.6),
    0 0 30px rgba(140,100,255,.4);

  overflow: hidden;
  font-weight: 900;
  cursor: pointer;
}
.btn:hover{
  filter: brightness(1.08);
}
.form-note{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.quick-facts h3 {
  margin-bottom: 18px;
  font-size: 16px;
  font-family: var(--fontTitle);
}
.facts{
  display: flex;
  flex-direction: column;
  gap: 10px; /* antes estava maior */
}
.fact{
  backdrop-filter: blur(6px);
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);

}
.fact b{ 
  font-family: var(--fontTitle); 
  font-size: 13px;
  font-weight: 500;
}
.fact span,
.fact a{ 
  color: rgb(246, 247, 237); 
  text-underline-offset: 3px; 
  font-size: 13px
}

/* Quick Facts - link destacado (Core4Joy) */
.fact-link {
  color: var(--accent); /* mesmo amarelo do site */
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.fact-link:hover {
  opacity: 0.8;
}

/* Footer */
.footer{
  padding: 26px 0 34px;
  color: var(--muted);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.to-top{
  padding: 10px 14px;
  border-radius: 14px;

  font-family: var(--orbitron);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;

  color: #07070a;
  background: linear-gradient(
    135deg, #1b3cff, #6a00ff, #b100ff);
  border: 2px solid rgba(255,255,255,.18);
  color: #fff;
  box-shadow:
  0 0 14px rgba(50, 90, 255, .55),
  0 0 34px rgba(140, 0, 255, .45),
  0 0 60px rgba(200, 0, 255, .25);
}

.to-top:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 80px rgb(65, 4, 163);
  filter: brightness(1.05);
}


/* Utilities */
.hidden{ display:none; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(3, 1fr); }
  .live{ grid-template-columns: repeat(3, 1fr); }
  .row{ grid-template-columns: 120px 1fr; }
  .row .third{ grid-column: 1 / -1; }
}
@media (max-width: 720px){
  .menu-btn{ display:block; }
  .nav{
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(11,12,16,.92);
    border-bottom: 1px solid var(--line);
    display:none;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav.open{ display:flex; }
  .cards{ grid-template-columns: 1fr; }
  .embeds{ grid-template-columns: 1fr; }
  .live{ grid-template-columns: repeat(2, 1fr); }
  .row{ grid-template-columns: 1fr; }
}
@media (max-width: 420px){
  .live{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .header-inner{
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== Latest Release ===== */
.track {
  display: flex;
  gap: 16px;
  align-items: center;
}

.track-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-title {
  font-size: 16px;
  font-weight: 700;
}

.track-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Latest Release — força espaço entre título e botão */
#latestRelease h4,
#latestRelease .latest-title,
#latestRelease .title,
#latestRelease b {
  margin: 0 0 12px 0 !important;
}

#latestRelease .sbtn {
  margin-top: 14px !important;
}

.gigs-year-block{
  width: 100%;
  margin: 5px 0 8px;
}

.gigs-year-tag{
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: rgba(232,232,239,.95);
  font-family: var(--orbitron);
  letter-spacing: .5px;
  margin: 10px 0 12px;
}

.gigs-year-tag::after{
  content: "";
  position: absolute;
  left: calc(100% + 12px);   /* começa depois do "2025" */
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: var(--line);
  opacity: .100;
}

.gigs-list{
  display: grid;
  gap: 12px;
}

.gig-card{
  display: flex;
  gap: 12px;
  align-items: stretch;
  padding: 12px;             /* antes 14 */
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}

.gig-flyer{
  width: 120px;
  height: 140px;
  border-radius: 20px;
  object-fit: cover;
  flex: 0 0 auto;
}

/* fontes menores */
.gig-title{
  margin: 0 0 4px;
  font-size: 18px;           /* diminui o título */
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;        /* pode testar 400, 500 ou 600 */
  letter-spacing: 0.5px;  /* dá esse ar mais tech */
}

.gig-meta{
  margin: 6px 0;
  font-size: 13px;           /* diminui texto da data/local */
  opacity: .9;
}

.gig-info{
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 👈 mágica acontece aqui */
  height: 100%;
 }  

 /* ===== GIGS - header do ano (2025 com linha embaixo) ===== */
.gigs-year{
  display: block;
  margin: 10px 0 14px;
}

.gigs-year-label{
  display: inline-block;
  font-family: var(--orbitron);
  font-size: 18px;
  color: rgba(240,240,245,.95);
  margin-bottom: 10px; /* espaço entre 2025 e a linha */
}

.gigs-year-line{
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.gig-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px; /* controla o quão “colado” fica */
}

/* ===== GIG TITLE BADGE ===== */

#gigTitle {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 10px;

  background: linear-gradient(135deg, #1b3cff, #6a00ff, #b100ff);
  border: 2px solid rgba(255,255,255,.18);
  color: #fff;
  box-shadow:
  0 0 14px rgba(50, 90, 255, .55),
  0 0 34px rgba(140, 0, 255, .45),
  0 0 60px rgba(200, 0, 255, .25);
  font-family: var(--font-accent, Orbitron, sans-serif);
  font-weight: 800;
  font-size: 1rem;

  border-radius: 999px;

  box-shadow:
    0 0 12px rgba(245, 208, 76, 0.45),
    inset 0 0 0 1px rgba(122, 36, 36, 0.25);
}

/* ===== Quick Facts (somente o painel da direita no Contact) ===== */
#contact .contact-grid > .panel:nth-child(2) .panel-title{
  margin: 0 0 40px 0;       /* cria o GAP entre "Quick Facts" e os campos */
  font-size: 18px;          /* se quiser um pouco menor */
}

#contact .contact-grid > .panel:nth-child(2) #factsBox{
  margin-top: 0;            /* deixa controlado pelo margin do título */
}

#contact .contact-grid > .panel:nth-child(2) .facts{
  gap: 15px;                /* espaço entre os campos */
}

#contact .contact-grid > .panel:nth-child(2) .fact{
  padding: 10px 13px;        /* deixa os campos menos "gordos" */
  border-radius: 12px;
}

#contact .contact-grid > .panel:nth-child(2) .fact b,
#contact .contact-grid > .panel:nth-child(2) .fact span,
#contact .contact-grid > .panel:nth-child(2) .fact a{
  font-size: 14px;          /* reduz a fonte dos campos */
}

/* =========================
   QUICK FACTS com cor de "input" (igual Bookings)
   ========================= */

/* pega SÓ o painel da direita (Quick Facts) */
#contact .contact-grid > .panel:nth-child(2) .fact{
  background: rgba(0,0,0,.18);                 /* igual input/textarea */
  border: 1px solid rgba(255,255,255,.14);     /* igual input/textarea */
  backdrop-filter: none;                        /* tira o “vidro” */
  box-shadow: none;
}

/* opcional: hover sutil igual input */
#contact .contact-grid > .panel:nth-child(2) .fact:hover{
  border-color: rgba(255,255,255,.20);
}


/* =========================
   BOOKINGS mais "gordinho" (inputs/textarea)
   ========================= */
#contact input,
#contact textarea{
  padding: 12px 14px;     /* antes 12px */
  border-radius: 12px;    /* pode deixar igual do facts */
  font-size: 14px;
}

/* deixa o textarea mais “alto” sem você ter que arrastar */
#contact textarea{
  min-height: 80px;      /* ajusta se quiser mais/menos */
  resize: vertical;
}

/* =========================
   BOOKINGS — fonte maior
   ========================= */

/* Labels (Nome, E-mail, Mensagem) */
#contact label{
  font-size: 14px;          /* antes ~13 */
  font-weight: 500;
}

/* Texto digitado + placeholder */
#contact input,
#contact textarea{
  font-size: 14px;          /* aumenta a leitura */
  line-height: 1.4;
}

/* Placeholder (opcional, mais elegante) */
#contact input::placeholder,
#contact textarea::placeholder{
  font-size: 13px;
  opacity: 0.7;
}

#contact .panel-title{
  font-size: 18px;
}

/* =========================
   VIDEO MODAL (9:16)
========================= */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal.is-open {
  display: block;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

/* ===== FIX iPhone: força 9:16 no modal sem depender de aspect-ratio ===== */
.video-modal__frame{
  position: relative;
  width: 100%;
  padding-top: 177.7778%; /* 16/9 = 1.777... => 9:16 vertical */
  background: #000;
}

.video-modal__frame iframe,
.video-modal__frame video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal__sound {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  z-index: 3;
  cursor: pointer;
  user-select: none;
}

/* Desktop: pode ficar um pouco maior */
@media (min-width: 900px) {
  .video-modal__panel {
    width: min(70vw, 520px);
    margin: 5vh auto;
  }
}

/* Mobile: grande, mas NÃO tela toda */
@media (max-width: 600px) {
  .video-modal__panel {
    width: min(94vw, 420px);
    margin: 6vh auto;
    border-radius: 18px;
  }

  /* garante que o painel nunca passe da altura visível REAL */
  .video-modal__frame {
    aspect-ratio: 9 / 16;
    max-height: calc(100dvh - 12vh - env(safe-area-inset-bottom));
  }

  .video-modal__frame iframe,
  .video-modal__frame video {
    height: 100%;
  }
}

/* (Opcional) impedir scroll do fundo quando modal abre */
body.modal-open {
  overflow: hidden;
}

/* Live Shorts Thumbs */
.short-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  cursor: pointer;
}

.short-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.short-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 52px;
  border-radius: 14px;
  background: #ff0000;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(0,0,0,0.45);
  pointer-events: none;
}

.short-play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.short-thumb:hover .short-play {
  opacity: 1;
}

/* Footer credits */
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;              /* <- isso evita sumir quando falta espaço */
}

.credits a{
  position: relative;
  transition: color .2s ease, opacity .2s ease;
}

.credits a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #1b3cff, #6a00ff, #b100ff);
  border: 2px solid rgba(255,255,255,.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.credits a:hover{
  color: #0400ff;
  opacity: 1;
}

.credits a:hover::after{
  transform: scaleX(1);
}

/* Quick Facts – link destacado (Core4Joy) */
#factsBox .fact a.fact-link {
  color: #836ef8; 
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

#factsBox .fact a.fact-link:hover {
  text-decoration: underline;
}

/* ===== SOCIAL BUTTONS - glow sempre ligado ===== */
.social-box .sbtn,
.track-links .sbtn,
.quick-actions .pill{
   border-color: rgba(0, 255, 200, 0.9);
   box-shadow:
    0 0 8px rgba(180, 80, 255, 0.6),
    0 0 20px rgba(0, 47, 255, 0.35),
    inset 0 0 4px rgba(0, 164, 240, 0.918);
}

@media (max-width: 600px){
  /* o box dos botões */
  .social-box{
    justify-content: center;
    gap: 10px; /* mantém espaçamento uniforme */
  }

  /* REMOVE a largura extra no mobile */
  .social-box .sbtn{
    margin-right: 0 !important;     /* <- seu margin-right estava atrapalhando */
    flex: 0 0 calc(33.333% - 10px); /* 3 por linha */
    max-width: calc(33.333% - 10px);
    justify-content: center;
    text-align: center;

    /* opcional: garante que caiba 3 certinho */
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* se algum ícone estiver “empurrando”, reduz um tiquinho */
  .social-box .sbtn i{
    margin-right: 6px;
  }
}

/* =========================
   LIVE MOMENTS – VIDEO TWEAKS
   (remove se não gostar)
   ========================= */

/* 1) Modal: evita estourar o vídeo gigante no desktop (upscale piora a nitidez) */
#videoModal .video-modal__panel {
  width: min(460px, 92vw);
  height: min(820px, 86vh);
}

/* 2) Área do vídeo: mantém 9:16 e centraliza */
#videoModalFrame {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

/* 3) Video tag do Cloudflare (HLS) */
#videoModalFrame video#cfVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* importante: não estica, não “mata” detalhe */
  background: #000;

  /* 4) “Perception boost”: melhora sensação de nitidez */
  filter: contrast(1.08) saturate(1.06);
  transform: translateZ(0);      /* ajuda renderização em alguns devices */
  -webkit-font-smoothing: antialiased;
}

/* 5) Mobile: deixa ocupar mais tela, porque no celular grande fica lindo */
@media (max-width: 520px) {
  #videoModal .video-modal__panel {
    width: 96vw;
    height: 86vh;
  }
}

.neon-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  border-radius: 999px;

  background: var(--neon-gradient);
  color: #fff;

  border: var(--neon-border);
  box-shadow: var(--neon-glow);

  font-family: var(--orbitron);
  font-weight: 700;
  letter-spacing: .8px;

  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}

.neon-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 0 18px rgba(120,160,255,.75),
              0 0 38px rgba(140,100,255,.55);
}




