/* =============================
   SEÇÃO: MAIS SOBRE
============================= *
.container_mais_sobre {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
}

.box_descric {
      background: #1a1a1a;
      border-radius: 10px;
      padding: 20px;
      width: 30%;
      max-width: 580px;
      box-shadow: 0 0 10px #000;
}

.box_descric .p-pri {
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--light);
}

.box_descric p {
      padding: 5px 0 5px 0;
}

.hash-break {
      word-break: break-all;
      font-size: 0.9rem;
      color: #aaa;
}

.comunidades {
      margin-top: 60px;
      text-align: center;
      min-height: 70vh;
}


.comunidades h3 {
      color: var(--light);
}

.box_ {
      display: flex;
      width: 40%;
      margin: 20px auto;
      justify-content: space-between;
}

.box_ a {
      font-size: 2rem;
      margin: 10px;
      color: var(--goldcolor);
      text-decoration: none;
}
.moeda-container {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
}

/* Moeda girando *
.girar_dinheiro {
      width: 150px;
      animation: girar 8s linear infinite;
      transform-origin: center center;
}

@keyframes girarDinheiro {
      0% {
            transform: rotateZ(0deg);
      }
      100% {
            transform: rotateZ(360deg);
      }
}

/* =============================
   SEÇÃO: ATUALIZAÇÕES
============================= */
#atualizacao {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
}

#atualizacao .title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
}

/* Grid das caixas */
.container_mais_sobre {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
}

.box_descric {
      background: #333;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
      line-height: 1.5;
}

.box_descric .p-pri {
      font-weight: bold;
      font-size: 1.1rem;
      margin-bottom: 10px;
}

.box_descric p {
      overflow-wrap: anywhere;
}

.hash-break {
      word-break: break-all; /* evita overflow em hash longo */
      font-size: 0.9rem;
      color: #999;
}

/* =============================
   COMUNIDADES
============================= */
.comunidades {
      margin-top: 40px;
      text-align: center;
}

.comunidades h3 {
      margin-bottom: 15px;
      font-size: 1.5rem;
}

.comunidades .box_ {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
}

.comunidades .box_ a {
      font-size: 1.8rem;
      color: #444;
      transition: transform 0.2s;
}

.comunidades .box_ a:hover {
      transform: scale(1.1);
      color: #0077ff;
}

.comunidades .box_ a .fa-telegram {
      color: #24A1DE;
}

.comunidades .box_ a .fa-linkedin {
      color: #0a66c2;
}

.comunidades .box_ a .fa-square-instagram {
      background: #d6249f; /* Fallback background color */
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.comunidades .box_ a .fa-square-x-twitter {
      background-color: #777;
      color: #222;
}


.moeda-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
}

.moeda-container img {
      width: 80px;
      animation: girar 6s linear infinite;
}

@keyframes girar {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
}

/* =============================
   RESPONSIVIDADE
============================= */

/* Tablets */
@media (max-width: 900px) {
      #atualizacao .title {
            font-size: 1.7rem;
      }

      .box_descric {
            padding: 15px;
      }
}

/* Celulares */
@media (max-width: 600px) {
      #atualizacao {
            padding: 20px 10px;
      }

      #atualizacao .title {
            font-size: 1.4rem;
      }

      .box_descric .p-pri {
            font-size: 1rem;
      }

      .moeda-container img {
            width: 60px;
      }

      .comunidades .box_ a {
            font-size: 1.5rem;
      }
}