/* RESET COMPLETO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* ESTRUTURA PRINCIPAL */
.main-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  padding: 2rem 0;
}

/* BACKGROUND COM OVERLAY */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../img/Wallpaper_2025.jpeg') no-repeat center/cover;
    filter: brightness(0.9) contrast(1.1);
    z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(230, 130, 30, 0.85) 0%, rgba(190, 90, 10, 0.75) 100%);
  z-index: -1;
}

/* ANIMAÇÃO DE PARTÍCULAS */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

/* CARTÃO PRINCIPAL */
.content-card {
  background: #ffffff;
  padding: 3.5rem;
  border-radius: 20px;
  width: 90%;
  max-width: 950px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
  margin: 2rem;
    }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ELEMENTOS DECORATIVOS */
.card-accent {
      position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00 0%, #ffb347 100%);
}

.accent-1 { top: -75px; left: -75px; }
.accent-2 { bottom: -75px; right: -75px; }

/* LOGO */
.logo-container {
  margin-bottom: 2.5rem;
}

.logo {
  width: 280px;
  max-width: 100%;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* TIPOGRAFIA */
h1 {
  font: 700 3rem 'Cormorant', serif;
  color: #e67e22;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #e67e22, #f39c12);
}

.tagline {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 500;
}

.sobre {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 2.5rem;
  color: #444;
}

.sobre strong {
  color: #e67e22;
  font-weight: 600;
}

/* ESTATÍSTICAS */
.stats {
  display: flex;
  justify-content: space-around;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.stat-item {
  padding: 0 1.5rem;
  text-align: center;
}

.stat-number {
  font: 700 2.5rem 'Cormorant', serif;
  color: #e67e22;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* BOTÕES */
.botoes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.botoes-secundarios {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background: linear-gradient(90deg, #e67e22, #f39c12);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font: 600 1.1rem 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
  border: none;
  cursor: pointer;
  margin: 0.5rem;
}

.btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.btn-outline {
  background: transparent;
  color: #e67e22;
  border: 2px solid #e67e22;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(230, 126, 34, 0.1);
}

/* RODAPÉ */
.footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: #e67e22;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.countdown {
  font-size: 0.9rem;
  color: #666;
}

.countdown strong {
  color: #e67e22;
  font-weight: 600;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .content-card {
    padding: 2.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .content-card {
    padding: 2rem;
    margin: 1rem auto;
    width: 95%;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  .stats {
    gap: 1.5rem;
  }
  
  .stat-item {
    width: calc(50% - 1.5rem);
    margin-bottom: 1.5rem;
  }
  
  .botoes {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .logo {
    width: 220px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}
