body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: #fff;
  text-align: center;
  align-items: center;
}

body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}



/* header  normal */
header {
  width: 100vw;
  max-height: 7vh;
  border: 2px solid #000;
  background: linear-gradient(90deg, rgba(13, 13, 13, 1) 0%, rgba(26, 26, 26, 1) 73%);
  display: flex;
  padding: 20px;
  position: fixed;
  z-index: 1000;
  border-bottom: #aaf0d1 2px solid;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.hamburger {
  display: none;
}

.header-links {
  display: none;
}

.HeaderBTN {
  margin: 50px;
  align-self: center;
  padding: 10px 20px;
  background: #aaf0d1;
  color: #111;
  justify-self: left;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.HeaderBTN:hover {
  background: #8ed5b9;
  transform: scale(1.05);
  cursor: pointer;
}



/* header  small */

@media (max-width: 900px) {

  .HeaderBTN {
    display: none;
  }

  .header-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 0;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    transition: transform 0.3s ease;
  }

  .hamburger:hover {
    transform: scale(1.05);
    transform: translateY(-55%);
    cursor: pointer;
  }

  .header-links {
    position: fixed;
    transform: translatex(200%);
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 60vh;
    background: #1a1a1a;
    z-index: 500;
    border: #aaf0d1 2px solid;
    margin-top: 6vh;
    border-radius: 7px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Clase para mostrar el menú cuando se abre */
  .header-links.active {
    transform: translatex(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .HeaderBTN2 {
    margin: 20px;
    align-self: center;
    padding: 10px 20px;
    background: #aaf0d1;
    color: #111;
    justify-self: left;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .HeaderBTN2:hover {
    background: #8ed5b9;
    transform: scale(1.05);
    cursor: pointer;
  }
}


/* ----- Moviles normales ----- */

@media (max-width: 660px) {
  
  .header-links {
    width: 40%;
    max-height: 50vh;
  }

}

/* ----- Moviles pequeños ----- */

@media (max-width: 480px) {
  
  .header-links {
    width: 50%;
    max-height: 50vh;
  }

}

.logo {
  display: inline-block;
}

.logo img {
  max-height: 7vh;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.main {
  padding: 50px 20px;
}

.texto1 {
  font-size: 1.4rem;
  margin-top: 100px;
}

.texto2 {
  font-size: 1.4rem;
  margin-top: 20px;
}

h1 {
  color: #aaf0d1;
  text-align: center;
  border: none;
  max-width: 750px;
  max-height: 100px;
  margin: 0 auto;
  border-radius: 20px;
  background: #1e1e1e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  border-bottom: 2px solid #aaf0d1;
  margin-top: 100px;
  font-size: 3rem;
}

h1:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

a {
  color: #ffb347;
  text-decoration: none;
  font-weight: bold;
}



.btn {
  display: inline-block;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 12px 25px;
  background: #aaf0d1;
  color: #0f0f0f;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
  border: none;
}

.btn:hover {
  background: #8ed5b9;
  transform: scale(1.05);
  border: none;
  cursor: pointer;
}

/* ----- Sección Newsletter ----- */

.newsletter {
  max-width: 900px;
  margin: 100px auto;
  padding: 50px;
  text-align: center;
  background: #1e1e1e;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff4d6d;
  border-bottom: 2px solid #ff4d6d;
  display: inline-block;
  padding-bottom: 8px;
}

.newsletter p {

  margin-bottom: 50px;
}

/* ----- Sección About ----- */
.about {
  max-width: 900px;
  margin:  auto;
  padding: 40px;
  background: #1e1e1e;
  color: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  line-height: 1.7;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.about h2 {
  font-size: 2rem;
  color: #ff4d6d;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #ff4d6d;
  display: inline-block;
  padding-bottom: 8px;
}

.about p {
  margin-bottom: 18px;
  text-align: center;
}

.about strong {
  color: #ffb347;
}
/* ----- Sección Descargas ----- */
.downloads {
  max-width: 900px;
  margin: 100px auto;
  padding: 50px;
  text-align: center;
  background: #1e1e1e;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.downloads:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.downloads h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff4d6d;
  border-bottom: 2px solid #ff4d6d;
  display: inline-block;
  padding-bottom: 8px;
}

.download-card {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.download-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ffb347;
}

.download-card p {
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.download-card img.game-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}


/* Botón de descarga */
.btn-download {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #ff4d6d, #ff6f91);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.btn-download:hover {
  background: linear-gradient(135deg, #ff6f91, #ff4d6d);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 77, 109, 0.5);
}


.redes a {
  color: #fff;
  font-size: 2rem;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s;

}

.redes a:hover {
  color: rgba(255, 77, 109, 0.5);
  /* color al pasar el ratón (rojo en este ejemplo) */
}

/* galeria de imagenes doodle care */
.galeria-DoodleCare {
  max-width: 900px;
  margin: 100px auto;
  padding: 50px;
  text-align: center;
  background: #1e1e1e;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.galeria-DoodleCare:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.galeria-DoodleCare h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff4d6d;
  border-bottom: 2px solid #ff4d6d;
  display: inline-block;
  padding-bottom: 8px;
}

.galeria-DoodleCare .imagenes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.galeria-DoodleCare .imagenes img {
  width: 400px;
  height: 750px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 20px;
}

.galeria-DoodleCare .imagenPrincipal img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-DoodleCare img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
}

/* ----- Sección links ----- */
.SocialLinks {
  max-width: 900px;
  margin:  auto;
  padding: 40px;
  background: #1e1e1e;
  color: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  line-height: 1.7;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 50px ;
}

.SocialLinks:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.SocialLinks h2 {
  font-size: 2rem;
  color: #ff4d6d;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #ff4d6d;
  display: inline-block;
  padding-bottom: 8px;
}

#PresentationLinks {
  max-width: 900px;
  margin:  auto;
  margin-top: 50px;
}
