/* =============================
   ESTILO GERAL - ELITE TRILIONÁRIA
   ============================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #0a0a0a 0%, #000 100%);
  color: #fff;
  overflow-x: hidden;
}

/* =============================
   PRELOADER
   ============================= */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loader {
  border: 4px solid rgba(255, 215, 0, 0.2);
  border-top: 4px solid #ffd700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =============================
   HERO (TOPO)
   ============================= */
.hero {
  position: relative;
  height: 100vh;
  background: url('assets/fundo-luxo.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  animation: fadeIn 2s ease forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  animation: riseUp 1.5s ease forwards;
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #ffd700, #fff4b0, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero p {
  color: #ccc;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-btn {
  background: linear-gradient(90deg, #d4af37, #ffd700);
  color: #000;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
  background: linear-gradient(90deg, #fff2a0, #d4af37);
}

/* =============================
   SEÇÃO DE SELOS
   ============================= */
.et-selos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 80px auto;
  max-width: 1100px;
  padding: 0 20px;
  animation: fadeIn 1.5s ease forwards;
}

.et-selo {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 20px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.et-selo:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(255, 215, 0, 0.25);
}

.et-selo img {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  transition: filter 0.3s ease;
}

.et-selo:hover img {
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.75));
}

.et-selo p {
  color: #f7f7f7;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}

.et-selo span {
  color: #ffd700;
  font-weight: 400;
  font-size: 0.9rem;
}

/* =============================
   RODAPÉ
   ============================= */
footer {
  text-align: center;
  padding: 60px 20px;
  background: #000;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  animation: fadeIn 1.5s ease forwards;
}

footer p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

footer a.cta-btn {
  display: inline-block;
}

/* =============================
   ANIMAÇÕES GERAIS
   ============================= */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes riseUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .et-selo img { width: 90px; }
  .et-selo { padding: 14px 20px; }
}
