@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body,
html {
  width: 100%;
  height: 100%;
  background-color: #c3def0;
}

/* Anúncio Principal */
.Announcement-header {
  background-color: #0098fd;
  padding: 12px 16px;
  color: white;
  width: 100%;
  text-align: center;
}

.Announcement-p a {
  color: white;
  text-decoration: none;
}

.Announcement-p a:hover {
  color: white;
}


/* Header */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 50px;
    background-image: url("./imagens/Home2.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  
  .hero-content {
    max-width: 50%;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .highlight {
    color: #0077ff;
    font-weight: bold;
    font-size: 3.5rem;
  }
  
  .subtext {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
  }
  
  /* Botões */
  .buttons {
    display: flex;
    gap: 15px;
  }
  
  .button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .add {
    background-color: #0483fa;
  }
  
  .info {
    background-color: #e73da0;
  }

  .panel {
    background-color: #7235f7;
  }
  
  .button:hover {
    opacity: 0.8;
  }
  
  /* Imagem */
  .hero-image img {
    max-width: 100%;
    height: auto;
    padding-right: 400px;
    animation: float 3s ease-in-out infinite;
}
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
}



/* Main Sections */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .section:nth-child(even) {
    background-color: #fff;
  }
  
  .section:nth-child(odd) {
    background-color: #f9f9f9;
  }
  
  .content {
    flex: 1;
    padding: 20px;
    max-width: 500px;
  }
  
  .section-title {
    font-size: 2rem;
    color: #007acc;
    margin-bottom: 15px;
  }
  
  .section-text {
    font-size: 1rem;
    color: #555;
  }
  
  .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .image-container img {
    width: 200px;
    max-width: 100%;
}
  

/* Seção Principal */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #007acc;
    margin-bottom: 30px;
    margin-top: 30px;
}

/* Comandos Container */
.commands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Box dos Comandos */
.command-box {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    border: 1px solid #d0e7ff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.command-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.15);
}

.command-box h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #007acc;
    margin-bottom: 15px;
    font-weight: bold;
}

.command-box ul {
    list-style: none;
    padding: 0;
}

.command-box li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.command-box li strong {
    color: #333;
    font-weight: bold;
}

.commands-section {
  margin-top: 10px;
}

/* Específico para Categoria */
.economy h3 { color: #00b894; }
.minigames h3 { color: #e17055; }
.investments h3 { color: #6c5ce7; }
.shop h3 { color: #fdcb6e; }
.rankings h3 { color: #0984e3; }





/* Footer */
.footer {
    padding: 1rem 0;
    background-color: #0483fa;
  }
  
  .footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .footer-logo {
    width: 100px;
    margin-bottom: 5px;
  }
  
  .footer-tagline {
    font-size: 1.0rem;
    color: white;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0;
    list-style-type: none;
  }
  
  .footer-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .footer-icon {
    width: auto; 
    height: 20px; 
    vertical-align: middle;
    margin-right: 8px; 
    fill: white; 
    transition: fill 0.3s ease; 
  }
  
  .footer-copy {
    font-size: 1.0rem;
    color: white;
    margin-top: 1rem;
  }
  
  






  .snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999999 !important;
    overflow: hidden;
  }
  
  
  .snowflake {
    position: absolute;
    top: -10px; 
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    animation: fall linear infinite;
  }
  
  @keyframes fall {
    0% {
      transform: translateY(0);
      opacity: 0.8;
    }
    100% {
      transform: translateY(100vh);
      opacity: 0;
    }
  }
    
  @keyframes sway {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(20px); /* Movimento lateral */
    }
  }
  
  




/* Responsividade Geral */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        max-width: 250px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 992px) {
    /* Seções principais */
    .section {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
    }

    .content {
        max-width: 100%;
        padding: 10px;
    }

    .image-container img {
        width: 150px;
    }

    /* Comandos */
    .commands-container {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding: 20px;
        text-align: center;
    }

    .hero-image img {
      padding-right: 100px; 
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .highlight {
        font-size: 2.2rem;
    }

    .subtext {
        font-size: 1.2rem;
    }

    /* Botões */
    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    /* Seções principais */
    .section {
        padding: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Cards de Comandos */
    .commands-container {
        grid-template-columns: 1fr; /* 1 coluna */
        gap: 10px;
    }

    .command-box {
        padding: 15px;
        font-size: 0.9rem;
    }

    .command-box h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 0.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-copy {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-image img {
      padding-right: 50px; 
    }

    .highlight {
        font-size: 2rem;
    }

    .subtext {
        font-size: 1rem;
    }

    /* Botões */
    .button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    /* Cards de Comandos */
    .commands-container {
        grid-template-columns: 1fr;
    }

    .command-box {
        padding: 10px;
    }

    .command-box h3 {
        font-size: 1rem;
    }

    .command-box li {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer-content {
        text-align: center;
        padding: 0.5rem;
    }

    .footer-logo {
        width: 70px;
    }

    .footer-copy {
        font-size: 0.75rem;
    }
}
