@import url("https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0px;
}

body {
  background-color: #6ba3be;
  color: black;
}

a {
  text-decoration: none;
}

#cabeceraInicio {
  background-image: linear-gradient(180deg, #032f30, #6ba3be);
}

.cabeceraTitulo {
  color: black;
  text-align: center;
  padding: 1%;
  font-size: 40px;
  font-family: "Doto", sans-serif;
  font-weight: bolder;
  margin: 0;
  margin-left: 810px;
}

.cabeceraTitulo i {
  margin-left: 790px;
  text-decoration: none;
  color: black;
}

#cabeceraIndice {
  display: flex;
  padding: 0px;
  justify-content: center;
  text-decoration: none;
}

#cabeceraIndice div {
  padding: 5px 134px;
  text-align: center;
  text-decoration: none;
  font-family: "Doto", sans-serif;
  color: #032f30;
  font-weight: bolder;
  font-size: 25px;
}

#cabeceraIndice div a {
    color: #032f30;
}

#cabeceraIndice div:hover {
  border-radius: 20px;
  background-color:#0a7075;
  text-decoration: none;
}



#imagenInicio {
  margin-top: 10px;
  background-image: url(img/fondo.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0px;
  margin-bottom: 30px;
}

#inicioTabla1 {
  border-collapse: collapse;
}

.tabla1-td {
  padding: 166px 300px;
}

#tabla1-fade {
  background-image: linear-gradient(to right, black, rgba(0, 0, 255, 0));
  padding-left: 60px;
}

#tabla1-1 tr td img {
  width: 550px;
  height: 300px;
  margin: 0px;
  padding: 0px;
}

#tabla1-1 {
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-align: left;
  margin-right: 300px;
}

#anime-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilo para cada item de anime */
.anime-item {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  overflow: hidden;
}

.anime-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.anime-item::before {
  content: attr(data-number) ". ";
  font-size: 1.5em;
  font-weight: bold;
  color: #ff6347; /* Naranja */
}

/* Título del anime */
.anime-item h3 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.2em;
  color: #333;
  margin-top: 10px;
  font-weight: 600;
}

/* Detalles del anime */
.anime-item > ul {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  list-style: none;
  margin-top: 15px;
}

.anime-item > ul li {
  font-size: 0.9em;
  color: #666;
  margin: 5px 0;
}

.anime-item > ul li::before {
  content: "• ";
  color: #007bff; /* Azul para los puntos */
}


#login {
  background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.63)),
    url(img/fondo2.jpeg);
  background-size: cover;
}

#formInicio {
  display: block;
  margin: 140px 670px;
  padding: 160px;
  background-color: #032f30bd;
  color: #0eaab3;
  font-weight: bolder;
  text-align: center;
  border-radius: 40px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#formInicio h1 {
  margin-bottom: 20px;
}

#formInicio p a {
  font-style: none;
  color: #0c969c;
}

#formInicio input {
  background-color: #032f30;
  color: #0c969c;
  border-radius: 20px;
  padding: 10px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#tienda {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas por fila */
  gap: 20px; /* Espaciado entre productos */
  max-width: 1000px;
  margin: 20px;
}

.objetos {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#orden {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.objetos img {
  width: 100%; /* Imagen ocupa todo el ancho */
  height: 300px;
  object-fit: cover; /* Recorte proporcional sin deformar */
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 8px 8px 0 0;
}

.objetos h2 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.objetos p {
  font-size: 16px;
  color: #0a7075;
  font-weight: bold;
}

.objetos:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
