/* Estilos base */
body {
  background-color: #1c1c1c;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

.header {
  background-color: #000;
  padding: 20px;
  text-align: center;
}

.logo {
  font-size: 48px;
  font-weight: bold;
  color: #ff9800;
  text-decoration: none;
  display: inline-block;
  transition: font-size 0.3s ease;
}

@media only screen and (max-width: 768px) {
  .logo {
    font-size: 36px;
  }
}

.hero {
  background-image: url('/logo/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-description {
  background-color: #000;
  border-radius: 10px;
  color: goldenrod;
  font-size: 24px;
  margin-top: 10px; /* Ajusta el margen superior según tus necesidades */
  margin-bottom: 10px; /* Ajusta el margen inferior según tus necesidades */
  padding: 10px; /* Opcional: Agrega un relleno interno para separar aún más el texto del borde */
  text-align: center;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 20px;
  background-color: #ff9800;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.button:hover {
  background-color: #f57c00;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  background-color: #000;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: none;
  padding: 10px;
  text-align: left;
  border-radius: 6px;
  color: #fff;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ff9800;
  color: #000;
}

.dropdown:before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 12px 12px 12px;
  border-style: solid;
  border-color: transparent transparent #000 transparent;
}

.features {
  background-color: #2e2e2e;
  padding: 80px 0;
  text-align: center;
}

.feature-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  width: 300px;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 6px;
  background-color: #1c1c1c;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 48px;
  color: #ff9800;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.feature-description {
  font-size: 16px;
  color: #ccc;
}

.discord-icon {
  font-size: 60px;
  color: #7289da;
  transition: color 0.3s ease;
}

.discord-icon:hover {
  color: #6e85cd;
}

.tiktok-icon {
  font-size: 60px;
  color: #ff0000;
}

.tiktok-icon:hover {
  color: #ff4f52;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #000;
  padding: 20px;
  text-align: center;
  display: none; /* Ocultamos el pie de página inicialmente */
  transition: opacity 0.3s ease;
}

.footer.visible {
  display: block; /* Mostramos el pie de página cuando es visible */
}

.floating-menu {
  position: fixed;
  top: 70px;
  right: 20px;
  background-color: #000;
  padding: 10px;
  text-align: left;
  border-radius: 6px;
  color: #fff;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.floating-menu.active {
  opacity: 1;
  transform: translateY(0);
}

.floating-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: background-color 0.3s ease;
}

.floating-menu a:hover {
  background-color: #ff9800;
  color: #000;
}

.floating-menu-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff9800;
  color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  line-height: 60px;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
}

.floating-menu-button:hover {
  background-color: #f57c00;
}

.about-us {
  background-color: #1c1c1c;
  padding: 60px;
  text-align: center;
  border-radius: 6px;
  transition: background-color 0.5s ease;
  margin-top: 40px;
  margin-bottom: 40px;
}

.about-us:hover {
  background-color: #262626;
}

.about-us-title {
  font-size: 36px;
  font-weight: bold;
  color: #ff9800;
  margin-bottom: 20px;
}

.about-us-description {
  font-size: 18px;
  color: #fff;
}

.about-us-description::selection {
  background-color: #ff9800;
  color: #000;
}

/* Estilos para dispositivos móviles */
@media only screen and (max-width: 768px) {
  .about-us {
    padding: 40px;
  }

  .about-us-title {
    font-size: 28px;
  }

  .about-us-description {
    font-size: 16px;
  }
}
