/* ===========================
   ANIVERSÁRIO - CSS COMPLETO
   (LIMPO + IMPACTANTE)
=========================== */

/* ===== Base ===== */
.aniversario-page{
  background:#000;
  color:#fff;
}

/* ===== Header ===== */
.top-header{
  padding:20px;
  background: rgba(0,0,0,0.9);
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.btn-voltar{
  background:#d946ef;
  color:#fff;
  padding:10px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
}

/* ===== Hero ===== */
.aniversario-hero{
  background-image: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.92)), url('../assets/img/aniversario.webp');
  background-position:center;
  background-size:cover;
  margin-top:0;
}
.hero-inner{
  padding-top:80px;
  text-align:center;
  padding-bottom:40px;
}
.tag-aniversario{ background:#d946ef; color:#fff; }
.hero-subtitle{
  font-size:1.1rem;
  max-width:700px;
  margin:0 auto;
  color: rgba(255,255,255,0.92);
}

/* ===== Sidebar ===== */
.sidebar-title{ color:#fbbf24; }
.sidebar-info{
  text-align:left;
  margin:20px 0;
  color:#ddd;
}
.sidebar-info p{ margin:0 0 10px 0; }
.icon-purple{ color:#d946ef; }

.sidebar-note{
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 12px;
  text-align:center;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.10);
}
.sidebar-note p{
  font-size:0.92rem;
  color:#ccc;
  margin:0;
  line-height:1.5;
}

.btn-cotar{
  width:100%;
  display:block;
  text-align:center;
  background: linear-gradient(90deg,#d946ef,#fbbf24);
  border:none;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 950;
  text-decoration:none;
  color:#111;
  box-shadow: 0 12px 26px rgba(0,0,0,0.45);
}

/* ===== Footer ===== */
.page-footer{
  text-align:center;
  padding:40px;
  background:#111;
  border-top:1px solid #333;
}

/* ===== Modal ===== */
.modal-overlay{
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  display:flex;
  justify-content:center;
  align-items:center;
  backdrop-filter: blur(5px);
}
.modal-content{
  background:#111;
  padding:30px;
  border-radius:15px;
  width:90%;
  max-width:420px;
  border:1px solid #333;
  box-shadow: 0 0 20px rgba(217,70,239,0.2);
  position:relative;
  animation: slideDown .3s ease;
}
@keyframes slideDown{
  from{ transform: translateY(-50px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}
.close-modal{
  position:absolute;
  top:10px;
  right:15px;
  color:#aaa;
  font-size:24px;
  cursor:pointer;
}
.modal-header{ text-align:center; margin-bottom:18px; }
.modal-header h2{ color:#fbbf24; margin:0 0 6px 0; }
.modal-header p{ margin:0; font-size:.9rem; color:#ccc; }

/* ===== Form ===== */
.form-group{ margin-bottom:15px; }
.form-group label{
  display:block;
  margin-bottom:5px;
  font-size:.9rem;
  color:#fff;
}
.form-group input{
  width:100%;
  padding:12px;
  background:#222;
  border:1px solid #444;
  border-radius:10px;
  color:#fff;
  outline:none;
  transition:.3s;
}
.form-group input:focus{
  border-color:#d946ef;
  box-shadow: 0 0 8px rgba(217,70,239,0.3);
}

.input-select{
  width:100%;
  padding:12px;
  background:#222;
  border:1px solid #444;
  border-radius:10px;
  color:#fff;
  outline:none;
  transition:.3s;
}
.input-select:focus{
  border-color:#d946ef;
  box-shadow: 0 0 8px rgba(217,70,239,0.3);
}

.form-hint{
  display:block;
  margin-top:8px;
  color:#cfcfcf;
  font-size:.85rem;
}

.btn-submit{
  width:100%;
  padding:12px;
  background: linear-gradient(90deg,#d946ef,#fbbf24);
  border:none;
  color:#111;
  font-weight: 950;
  border-radius:12px;
  cursor:pointer;
  margin-top:10px;
  text-transform: uppercase;
}
.btn-submit:hover{ filter: brightness(1.08); }

/* ===== Título seção ===== */
.title-section{
  color:#fbbf24;
  margin-top:40px;
}

/* ================================
   FEATURE BLOCK (base)
================================ */
.feature-block{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature-block:hover{
  transform: translateY(-3px);
  border-color: rgba(217,70,239,0.22);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* ===== Espaço Exclusivo topo ===== */
.space-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.badge-eventos{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:900;
  color:#111;
  background: linear-gradient(90deg, rgba(251,191,36,1), rgba(217,70,239,1));
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  white-space:nowrap;
}

.space-text{
  margin:10px 0 0;
  color: rgba(255,255,255,0.90);
  line-height:1.55;
}

.impact-line{
  margin-top:12px;
  font-size:.95rem;
  color: rgba(255,255,255,0.85);
  border-left: 3px solid #d946ef;
  padding-left: 10px;
}

/* ===== Stats cards ===== */
.stats-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}

.stat-card{
  position:relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius:14px;
  padding:14px 14px 16px;
  overflow:hidden;
  transform: translateY(6px);
  opacity: 0;
  animation: statIn .45s ease forwards;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, filter .25s ease;
}
.stat-card:nth-child(2){ animation-delay: .08s; }
.stat-card:nth-child(3){ animation-delay: .16s; }

@keyframes statIn{
  to { transform: translateY(0); opacity: 1; }
}

.stat-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(135deg, rgba(217,70,239,0.22), rgba(251,191,36,0.18), rgba(255,255,255,0.06));
  transform: rotate(18deg);
  filter: blur(22px);
  opacity: .55;
  pointer-events:none;
}
.stat-card::after{
  content:"";
  position:absolute;
  top:-20%;
  left:-60%;
  width:40%;
  height:140%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.12), rgba(255,255,255,0));
  transform: rotate(18deg);
  animation: shimmer 2.6s ease-in-out infinite;
  pointer-events:none;
  opacity:.9;
}
.stat-card:nth-child(2)::after{ animation-delay:.35s; }
.stat-card:nth-child(3)::after{ animation-delay:.7s; }

@keyframes shimmer{
  0%   { left:-60%; opacity:.0; }
  20%  { opacity:.9; }
  50%  { left:120%; opacity:.55; }
  100% { left:120%; opacity:0; }
}

.stat-top{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
  gap:10px;
}
.stat-icon{ font-size: 1.1rem; opacity:.95; }
.stat-label{ font-size:.85rem; color: rgba(255,255,255,0.75); }

.stat-number{
  position:relative;
  font-size: 2.2rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
  color:#fff;
  text-shadow: 0 0 18px rgba(217,70,239,0.25);
}
.stat-desc{
  position:relative;
  margin-top:6px;
  font-size: .9rem;
  color: rgba(255,255,255,0.80);
}

.stat-card:hover{
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(251,191,36,0.35);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  filter: brightness(1.05);
}

/* ===== Hall Exclusive (dentro do Espaço) ===== */
.hall-exclusive{
  margin-top:14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(251,191,36,0.22);
  background: rgba(251,191,36,0.06);
}
.hall-icon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(90deg, rgba(251,191,36,0.95), rgba(217,70,239,0.90));
  color:#111;
  flex: 0 0 auto;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.hall-title{ font-weight:950; margin-bottom:4px; color:#fff; }
.hall-text{
  color: rgba(255,255,255,0.88);
  line-height:1.55;
  font-size:.95rem;
}
.hall-cta{
  display:inline-block;
  margin-top:6px;
  font-weight:950;
  color:#fbbf24;
}
.btn-hall{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border:none;
  border-radius:10px;
  font-weight:950;
  cursor:pointer;
  color:#111;
  background: linear-gradient(90deg, rgba(251,191,36,1), rgba(217,70,239,1));
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform .2s ease, filter .2s ease;
}
.btn-hall:hover{ transform: translateY(-2px); filter: brightness(1.05); }

/* ===== Mini-features (PCs/Sim/VR) ===== */
.mini-feature{
  overflow:hidden;
  position:relative;
}
.mini-feature::before{
  content:"";
  position:absolute;
  inset:-50%;
  background: linear-gradient(135deg,
    rgba(217,70,239,0.18),
    rgba(251,191,36,0.14),
    rgba(255,255,255,0.04)
  );
  transform: rotate(14deg);
  filter: blur(22px);
  opacity: .45;
  pointer-events:none;
}
.mini-head{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
.mini-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.05rem;
}
.mini-emoji{ font-size: 1.25rem; }
.mini-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:950;
  color:#111;
  background: linear-gradient(90deg, rgba(251,191,36,1), rgba(217,70,239,1));
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  white-space:nowrap;
}
.mini-text{
  position:relative;
  margin:0;
  color: rgba(255,255,255,0.9);
  line-height:1.55;
}
.mini-pills{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 12px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:900;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
}
.mini-highlight{
  position:relative;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(251,191,36,0.20);
  background: rgba(251,191,36,0.06);
  color: rgba(255,255,255,0.92);
  font-weight:900;
  display:flex;
  align-items:center;
  gap:10px;
}

/* ==========================
   PACOTES V2 (layout premium e organizado)
========================== */

.packages-v2{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.pkg2-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, filter .25s ease;
}

.pkg2-card::before{
  content:"";
  position:absolute;
  inset:-50%;
  background: linear-gradient(135deg,
    rgba(217,70,239,0.14),
    rgba(251,191,36,0.10),
    rgba(255,255,255,0.04)
  );
  transform: rotate(14deg);
  filter: blur(24px);
  opacity: .35;
  pointer-events:none;
}

.pkg2-card:hover{
  transform: translateY(-4px);
  border-color: rgba(251,191,36,0.22);
  box-shadow: 0 14px 34px rgba(0,0,0,0.50);
  filter: brightness(1.04);
}

/* destaque do meio */
.pkg2-featured{
  border-color: rgba(251,191,36,0.30);
  box-shadow: 0 12px 30px rgba(0,0,0,0.48);
}
.pkg2-featured::after{
  content:"";
  position:absolute;
  top:-20%;
  left:-60%;
  width:40%;
  height:140%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.12), rgba(255,255,255,0));
  transform: rotate(18deg);
  animation: pkgShimmer 2.7s ease-in-out infinite;
  pointer-events:none;
  opacity:.9;
}
@keyframes pkgShimmer{
  0%   { left:-60%; opacity:0; }
  20%  { opacity:.9; }
  55%  { left:120%; opacity:.55; }
  100% { left:120%; opacity:0; }
}

/* ===== HEADER (2 LINHAS) ===== */
.pkg2-head{
  position: relative;
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pkg2-head-top{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-right: 92px; /* espaço pro chip */
}

.pkg2-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(90deg, rgba(251,191,36,1), rgba(217,70,239,1));
  color:#111;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  font-size: 1.12rem;
  flex: 0 0 auto;
}

.pkg2-title h4{
  margin: 0;
  font-size: 1.14rem;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.pkg2-sub{
  margin: 8px 0 0;
  font-size: .88rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.74);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  overflow: hidden;
}

/* CHIP fixo no canto e NÃO VAZA */
.pkg2-chip{
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 950;
  color:#111;
  background: rgba(255,255,255,0.88);
  white-space: nowrap;
}
.pkg2-chip-gold{
  background: linear-gradient(90deg, rgba(251,191,36,1), rgba(255,255,255,0.92));
}
.pkg2-chip-purple{
  background: linear-gradient(90deg, rgba(217,70,239,1), rgba(255,255,255,0.92));
}

/* ===== BODY ===== */
.pkg2-body{
  position: relative;
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pkg2-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.6;
  font-size: .95rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4; /* Propriedade padrão para compatibilidade futura */
  overflow: hidden;
}

.pkg2-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.pkg2-list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-weight: 850;
  font-size: .92rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
}
.pkg2-list i{
  color:#fbbf24;
  margin-top: 2px;
}

/* MINI BOX fixo no fundo */
.pkg2-mini{
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.85);
  font-weight: 900;
  font-size: .86rem;
  display:flex;
  align-items:center;
  gap: 10px;
}

/* ===== FOOTER ===== */
.pkg2-foot{
  position: relative;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pkg2-btn{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 13px 14px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 950;
  color: #111;
  background: linear-gradient(90deg, rgba(217,70,239,1), rgba(251,191,36,1));
  box-shadow: 0 12px 26px rgba(0,0,0,0.45);
  transition: transform .2s ease, filter .2s ease;
}
.pkg2-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* responsivo */
@media (max-width: 980px){
  .packages-v2{ grid-template-columns: 1fr; }
  .pkg2-card{ min-height: unset; }
}
