/* style.css */

body {
  margin: 0; padding: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #fcfcf4; 
  color: #0F321E;
  position: relative; 
  min-height: 100vh;
}

/* --- Elementos de Fundo e Decoração --- */

/* Imagem decorativa no topo (o círculo verde e laranja) */
.background-top-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px; 
    height: 300px; 
    z-index: 10; 
    background-image: url('https://assinatura.uniggel.com.br/aniversariantes/img/Topo-decorativo.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: top center;
}

/* Confetes (Tamanho corrigido) */
.confetti-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15; 
    background-image: url('https://assinatura.uniggel.com.br/aniversariantes/img/CONFETE.png'), url('https://assinatura.uniggel.com.br/aniversariantes/img/CONFETE-02.png'); 
    background-size: 20% auto, 20% auto; 
    background-position: 5% 5%, 95% 5%; 
    background-repeat: no-repeat;
}

/* Balão da Esquerda e Direita (Base) */
.balloon-left, .balloon-right {
    position: absolute;
    top: 10px; /* Base top */
    width: 150px; /* Base size */
    height: 150px; /* Base size */
    z-index: 25; 
    background-size: contain;
    background-repeat: no-repeat;
}

/* Estrela da Esquerda: Move 20px para a direita */
.balloon-left {
    left: calc(10% + 20px); 
    background-image: url('https://assinatura.uniggel.com.br/aniversariantes/img/Estrela-da-esquerda.png');
}

/* Estrela da Direita: Desce e Aumenta o tamanho */
.balloon-right {
    right: 10%; 
    top: 30px; 
    width: 180px; 
    height: 180px; 
    background-image: url('https://assinatura.uniggel.com.br/aniversariantes/img/Estrela-da-direita.png');
}

.footer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px; 
    background-image: url('https://assinatura.uniggel.com.br/aniversariantes/img/Faixa-inferior.png');
    background-size: cover;
    background-position: bottom center;
    z-index: 50; 
}

/* --- Conteúdo Principal --- */

.container {
  /* Largura fixa de 1080px recomendada pelo cliente */
  width: 1080px; max-width: 95%; 
  margin: 0 auto; padding: 150px 20px 100px 20px; 
  text-align: center;
  box-sizing: border-box;
  position: relative; 
  z-index: 20;
}

/* Ajuste para a tag header (pai dos títulos) */
header {
    text-align: center; 
    position: relative;
    z-index: 30; 
    margin-bottom: 20px;
}

/* Estilo para a caixa verde do título "ANIVERSARIANTES" */
.title-box {
  display: block; 
  width: fit-content; 
  margin: 0 auto; 
  
  background: #0F321E; 
  color: #fff;
  padding: 10px 20px;
  font-size: 36px; 
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px; 
  margin-bottom: 5px; 
}

/* Estilo para a caixa laranja do subtítulo "NOVEMBRO" */
header h1 {
  display: block; 
  width: fit-content; 
  margin: 0 auto; 
  
  font-size: 42px; 
  color: #fff; 
  font-weight: 800;
  text-transform: uppercase; 
  letter-spacing: 2px; 
  padding: 10px 30px;
  background: #FF6900; 
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* NOVO: Layout de Grid para substituir a Tabela */
.aniversariantes-grid {
    display: flex;
    flex-wrap: wrap;
    /* Ajusta o espaçamento de 20px horizontal e 35px vertical conforme a tabela original */
    margin: -17.5px -10px; 
}

.grid-item {
    width: 25%; /* 4 colunas no desktop */
    padding: 17.5px 10px; /* Metade do espaçamento vertical (35/2) e horizontal (20/2) */
    box-sizing: border-box;
    vertical-align: middle; 
}

/* Mantém os estilos de conteúdo */
.data-container {
    padding: 16px 8px; 
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5); 
}

.data {
  background: #FF6900; color: #fff; font-weight: bold;
  font-size: 16px; 
  display: block; 
  padding: 4px 10px;
  border-radius: 6px; 
  margin: 4px auto 0; 
  width: fit-content; 
}
.nome {
  display: block; 
  font-size: 18px; 
  font-weight: 600; 
  color: #0F321E;
  line-height: 1.2; 
  min-height: 44px; 
  margin-bottom: 5px;
}

.logo-uniggel {
    margin-top: 60px;
    padding-bottom: 20px; 
}

@media (max-width: 768px) {
  .container {
      padding-top: 80px; 
  }
  /* Média query para grid */
  .grid-item { width: 50%; } /* 2 colunas no mobile */
  
  .title-box { font-size: 28px; }
  header h1 { font-size: 32px; }
  .balloon-left, .balloon-right {
      width: 100px; height: 100px;
  }
  .balloon-left { left: 5%; }
  .balloon-right { right: 5%; }
  
  .background-top-img {
      width: 100%; 
      transform: none;
      left: 0;
  }
}