    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: #000000;
      font-family: 'Roboto', Arial, sans-serif;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .main-content {
      display: flex;
      flex: 1;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      gap: 40px;
      flex-wrap: wrap;
    }

    .logo img {
      max-width: 100%;
      height: auto;
      max-height: 500px;
    }

    .about-box {
      max-width: 400px;
      color: #fff;
      font-size: 1.3rem;
      line-height: 1.6;
      background-color: #111;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    }

    footer {
      background-color: #222;
      color: white;
      text-align: center;
      padding: 20px 0;
    }

    .footer-lines {
      display: flex;
      flex-direction: column;
    }

    .footer-lines .line {
      height: 6px;
      width: 100%;
      margin-top: 2px;
      opacity: 0.5;
    }

    .line1 { background-color: #e9a716; }
    .line2 { background-color: #568a99; }
    .line3 { background-color: #a82c02; }
    .line4 { background-color: #c7481d; }

    .social-links {
      margin-top: 15px;
    }

    .social-links a {
      color: white;
      margin: 0 12px;
      font-size: 24px;
      text-decoration: none;
      transition: color 0.3s ease;
      display: inline-block;
    }

    .social-links a:hover {
      color: #e9a716;
    }

    @media (max-width: 768px) {
      .main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .logo img {
        max-width: 80%;
      }

      .about-box {
        max-width: 90%;
        font-size: 0.95rem;
      }

      .social-links a {
        font-size: 20px;
        margin: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .logo img {
        max-width: 70%;
      }

      .about-box {
        font-size: 0.9rem;
      }

      .social-links a {
        font-size: 18px;
        margin: 0 8px;
      }
    }

    /* Estilos para a nova seção do YouTube */
/* Aumenta a largura da secção do vídeo */
.youtube-section {
  max-width: 800px; /* Altere este valor para o tamanho desejado */
  margin-left: auto;
  margin-right: auto;
}

.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* Proporção 16:9 */
  margin: 20px 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.subscribe-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #FF0000; /* Cor vermelha do YouTube */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.subscribe-button:hover {
  background-color: #cc0000; /* Um tom mais escuro para o hover */
}
