@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  background-color: rgba(8, 80, 235, 0.6);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: whitesmoke;
  min-height: 70px;
}

/*nav*/
.navegador {
  position: relative;
}
.navegador .menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  position: relative;
  z-index: 1010;
  color: whitesmoke;
  padding: 10px;
}
.navegador .nav-list {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}
.navegador .nav-list .ul__li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.navegador .nav-list .ul__li a {
  text-decoration: none;
  color: whitesmoke;
  font-weight: 500;
  white-space: nowrap;
}
.navegador .nav-list .ul__li.active {
  background-color: #ff0055;
}
.navegador .nav-list .ul__li.active a, .navegador .nav-list .ul__li.active i {
  color: white;
}
.navegador .nav-list .ul__li:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 769px) {
  .navegador .nav-list {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    left: 0;
    box-shadow: none;
  }
  .navegador .menu-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .navegador .menu-toggle {
    display: block;
  }
  .navegador .nav-list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(51, 50, 54, 0.6);
    padding: 100px 20px 20px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  .navegador .nav-list.active {
    display: flex;
    left: 0;
    transition: left 0.4s ease-in-out;
  }
  .navegador .nav-list .ul__li {
    width: 100%;
    margin-bottom: 15px;
  }
  .navegador .nav-list .ul__li a {
    color: white;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .navegador .nav-list {
    width: 70%;
  }
}

.botones {
  display: flex;
  justify-content: center;
  gap: 350px;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .botones {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.contenedor {
  transition: transform 0.3s;
  cursor: pointer;
}
.contenedor:hover {
  transform: scale(1.2);
}
.contenedor {
  display: flex;
  margin: 50px auto;
  font-family: Verdana, sans-serif;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  color: rgba(51, 50, 54, 0.6);
  text-align: center;
  padding: 20px;
  width: 410px;
  height: 60px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px #1c2833, -1px -1px 0px #f5a002;
  background: linear-gradient(135deg, #1c2833, transparent);
}
.contenedor a {
  text-decoration: none;
  color: inherit;
}
.contenedor:hover {
  background: linear-gradient(135deg, transparent, rgba(33, 31, 156, 0.4));
}

.cuadrado {
  transition: transform 0.3s;
  cursor: pointer;
}
.cuadrado:hover {
  transform: scale(1.2);
}
.cuadrado {
  display: flex;
  margin: 50px auto;
  font-family: Verdana, sans-serif;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  color: rgba(51, 50, 54, 0.6);
  text-align: center;
  padding: 20px;
  width: 410px;
  height: 60px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px #1c2833, -1px -1px 0px #f5a002;
  background: linear-gradient(135deg, #1c2833, transparent);
}
.cuadrado a {
  text-decoration: none;
  color: inherit;
}
.cuadrado:hover {
  background: linear-gradient(135deg, transparent, rgba(33, 31, 156, 0.4));
}
@media (max-width: 768px) {
  .cuadrado {
    width: 80%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .cuadrado {
    font-size: 1.2rem;
    height: 60px;
  }
}

.container text-center mt-5 {
  display: flex;
  margin-top: 100px;
}

body {
  background-image: url("../imagenes/fondo-index.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

.botones {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 350px;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .botones {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: fit-content;
  min-width: 300px;
  height: auto;
  padding: 0 20px;
}
.titulo h1 {
  color: #1c2833;
  font-size: 5rem;
  font-family: "Playfair Display", serif;
  transition: transform 0.3s ease;
  text-shadow: 2px 2px 4px #f5a002, -1px -1px 0px whitesmoke;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 480px) {
  .titulo {
    width: 90%;
    height: 50px;
  }
  .titulo h1 {
    font-size: 2.2rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .titulo {
    width: auto;
  }
  .titulo h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1279px) {
  .titulo {
    width: auto;
  }
  .titulo h1 {
    font-size: 4rem;
  }
}
.titulo {
  width: 350px;
  height: 70px;
}
.titulo h1 {
  font-size: 5rem;
}

.pie {
  background-color: rgba(33, 31, 156, 0.4);
  color: whitesmoke;
  padding: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.pie .redes-sociales, .pie .pie {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 1281px) {
  .pie {
    padding: 25px 10%;
  }
  .pie .copyright {
    font-size: 1.6rem;
  }
  .pie .icono-red-social {
    width: 50px;
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pie {
    padding: 25px 5%;
  }
  .pie .copyright {
    font-size: 1.3rem;
  }
  .pie .icono-red-social {
    width: 40px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .pie {
    flex-direction: column;
    text-align: center;
  }
  .pie .redes-sociales, .pie .pie {
    justify-content: center;
  }
  .pie .copyright {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .pie {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
  }
  .pie .redes-sociales, .pie .pie {
    justify-content: center;
  }
  .pie .copyright {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 5px;
  }
  .pie .icono-red-social {
    width: 35px;
  }
}
.pie .copyright {
  margin: 0;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.pie .icono-red-social {
  height: auto;
  transition: transform 0.3s ease;
}
.pie .icono-red-social:hover {
  transform: scale(1.1);
}

.header {
  background-color: rgba(33, 31, 156, 0.4);
  padding: 10px 5%;
}
.header .navegador .nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  justify-content: center;
}
.header .navegador .nav-list.active {
  display: flex !important;
  flex-direction: column;
}
.header .navegador .nav-list .ul__li {
  color: whitesmoke;
}
.header .navegador .nav-list .ul__li a {
  text-decoration: none;
  color: inherit;
}
.header .navegador .nav-list .ul__li i {
  margin-right: 5px;
}

.body-mi-cuenta {
  background-image: url("../imagenes/fondo-pantallas.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.crea {
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 4px #f5a002, -1px -1px 0px whitesmoke;
  margin: 20px auto;
  width: 180px;
  height: 80px;
}
@media (max-width: 480px) {
  .crea {
    width: 90%;
    height: auto;
    padding: 10px;
  }
  .crea h1.creacuenta {
    font-size: 1.5rem;
  }
}

.account {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 650px;
  font-size: 25px;
  color: rgba(51, 50, 54, 0.6);
  background-color: whitesmoke;
  width: 220px;
  height: 45px;
}

.formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
  background-color: rgba(33, 31, 156, 0.4);
  border-radius: 15px;
  max-width: 400px;
  margin: 0 auto;
  color: rgba(33, 31, 156, 0.4);
}
.formulario .input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
}
.formulario .input-group label {
  color: rgba(33, 31, 156, 0.4);
  text-shadow: 4px 4px 0px #ff0055;
  margin-bottom: 5px;
  font-weight: bold;
}
.formulario .input-group input {
  padding: 8px;
  border-radius: 5px;
  border: none;
}
.formulario .input-group input::placeholder {
  color: #1c2833 !important;
  opacity: 0.7;
}

.register-btn {
  margin-top: 10px;
  padding: 10px 30px;
  background-color: rgba(8, 80, 235, 0.6);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.register-btn:hover {
  transform: scale(1.05);
  background-color: rgba(51, 50, 54, 0.6);
}

.pie {
  background-color: rgba(33, 31, 156, 0.4);
  padding: 20px;
  margin-top: 50px;
  color: whitesmoke;
  text-align: center;
}
.pie .icono-red-social {
  width: 40px;
  margin: 0 10px;
  transition: 0.3s;
}
.pie .icono-red-social:hover {
  transform: translateY(-5px);
}

@media (max-width: 480px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    color: white;
  }
  .nav-list {
    display: none;
  }
  .formulario {
    width: 90%;
  }
}
.account {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 550px 20px;
  font-size: 25px;
  color: #1c2833;
  background-color: rgba(33, 31, 156, 0.4);
  border-radius: 12px;
  border: 2px solid #1c2833;
  width: 220px;
  height: 45px;
}

.formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
  background-color: rgba(33, 31, 156, 0.4);
  border-radius: 15px;
  max-width: 400px;
  margin: 0 auto;
  color: white;
}
.formulario .input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
}
.formulario .input-group label {
  margin-bottom: 5px;
  font-weight: bold;
}
.formulario .input-group input {
  padding: 8px;
  border-radius: 5px;
  border: none;
}
.formulario .input-group input::placeholder {
  color: red !important;
  opacity: 0.7;
}

.register-btn {
  margin-top: 10px;
  padding: 10px 30px;
  background-color: rgba(33, 31, 156, 0.4);
  color: whitesmoke;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.register-btn:hover {
  transform: scale(1.05);
  background-color: dark;
}

.educando {
  background-image: url("../imagenes/fondo-pantallas.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.child {
  transition: transform 0.3s;
  cursor: pointer;
}
.child:hover {
  transform: scale(1.2);
}
.child {
  display: flex;
  margin: 50px auto;
  font-family: Verdana, sans-serif;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  color: rgba(51, 50, 54, 0.6);
  text-align: center;
  padding: 20px;
  width: 410px;
  height: 60px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px #1c2833, -1px -1px 0px #f5a002;
  background: linear-gradient(135deg, #1c2833, transparent);
}
.child a {
  text-decoration: none;
  color: inherit;
}
.child:hover {
  background: linear-gradient(135deg, transparent, rgba(33, 31, 156, 0.4));
}

.section {
  display: flex;
  background-color: rgba(33, 31, 156, 0.4);
  color: #590B7A;
  align-items: center;
  gap: 20px;
  font-family: "Playfair display";
  padding: 30px;
  text-shadow: 2px 2px 4px whitesmoke, -1px -1px 0px whitesmoke;
}
.section p {
  flex: 2;
  line-height: 1.5;
}
.section aside {
  flex: 1;
  display: flex;
  justify-content: center;
}
.section aside img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  border: 2px solid #590B7A;
}
@media (max-width: 480px) {
  .section {
    flex-direction: column;
    text-align: center;
    font-size: 17px;
    margin-bottom: 60px;
  }
  .section aside {
    order: -1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
    font-size: 19px;
    margin-bottom: 80px;
  }
}
@media (min-width: 769px) and (max-width: 1279px) {
  .section {
    flex-direction: row;
    font-size: 21px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1280px) {
  .section {
    flex-direction: row;
    font-size: 23px;
    margin-bottom: 150px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }
}

.pie {
  background-color: rgba(33, 31, 156, 0.4);
  color: whitesmoke;
  padding: 25px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.pie .redes-sociales, .pie .pie {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  gap: 20px;
}
@media (min-width: 1281px) {
  .pie .redes-sociales, .pie .pie {
    flex-direction: row;
    padding: 0 10%;
  }
  .pie .redes-sociales .copyright, .pie .pie .copyright {
    font-size: 1.6rem;
  }
  .pie .redes-sociales .icono-red-social, .pie .pie .icono-red-social {
    width: 50px;
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pie .redes-sociales, .pie .pie {
    flex-direction: row;
  }
  .pie .redes-sociales .copyright, .pie .pie .copyright {
    font-size: 1.3rem;
  }
  .pie .redes-sociales .icono-red-social, .pie .pie .icono-red-social {
    width: 40px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .pie .redes-sociales, .pie .pie {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .pie .redes-sociales .copyright, .pie .pie .copyright {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .pie .redes-sociales, .pie .pie {
    flex-direction: column;
    gap: 10px;
    padding: 5px;
  }
  .pie .redes-sociales .copyright, .pie .pie .copyright {
    font-size: 1rem;
    max-width: 200px;
    margin-bottom: 5px;
  }
  .pie .redes-sociales .icono-red-social, .pie .pie .icono-red-social {
    width: 35px;
  }
}
.pie .copyright {
  margin: 0;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
}
.pie .icono-red-social {
  height: auto;
  transition: transform 0.3s ease;
}
.pie .icono-red-social:hover {
  transform: scale(1.1);
}

.body-juguetes {
  background-image: url("../imagenes/fondo-pantallas.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.toys {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 25px;
  color: #1c2833;
  text-align: center;
  background-color: rgba(33, 31, 156, 0.4);
  box-sizing: border-box;
  padding: 20px;
  width: 220px;
  height: 50px;
  transition: transform 0.3s ease;
  text-shadow: 2px 2px 4px #f5a002, -1px -1px 0px whitesmoke;
}
.toys:hover {
  transform: scale(1.1);
  cursor: pointer;
  background-color: rgba(8, 80, 235, 0.6);
}

.categories {
  display: flex;
  list-style-type: none;
  background-color: rgba(51, 50, 54, 0.6);
  padding: 0;
  margin: 200px auto 0 auto;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.categories li {
  width: 200px;
  height: 200px;
  background-color: rgba(82, 79, 226, 0.4);
  border: 3px solid #590B7A;
  border-radius: 5px;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.categories li .card {
  height: 100%;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
}
.categories li .card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}
.categories li .card .card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
.categories li .card .card-body .card-title {
  display: block;
  font-size: 0.9rem;
  color: whitesmoke;
  margin: 0;
  text-align: center;
  font-weight: 600;
}
.categories li .card .card-body .card-text {
  display: none;
}
.categories li a {
  text-decoration: none;
  color: whitesmoke;
  background-color: #ff0055;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 35px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 0.8rem;
  padding: 5px;
  border-radius: 7px;
  transition: background 0.3s ease;
}
.categories li a:hover {
  background-color: rgba(255, 0, 85, 0.9);
}
.categories li:hover {
  transform: scale(1.05);
  border-color: #ff0055;
  background-color: rgba(8, 80, 235, 0.6);
}
@media (max-width: 480px) {
  .categories {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    margin-top: 100px;
  }
  .categories li {
    width: 200px;
    text-align: center;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .categories {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
  }
  .categories li {
    width: 200px;
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .categories {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 15px;
    padding: 40px 0;
  }
  .categories li {
    margin: 5px;
  }
}
@media (min-width: 1281px) {
  .categories {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 30px;
    padding: 50px 10%;
  }
  .categories li a {
    font-size: 0.85rem;
  }
}

.body-grilla {
  background-image: url("../imagenes/fondo-pantallas.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.grilla {
  display: flex;
  margin: 50px auto;
  font-family: Verdana, sans-serif;
  font-size: 3rem;
  justify-content: center;
  align-items: center;
  color: #590B7A;
  text-align: center;
  background: linear-gradient(135deg, rgba(33, 31, 156, 0.4), transparent);
}
.grilla:hover {
  background: linear-gradient(135deg, transparent, rgba(33, 31, 156, 0.4));
}
.grilla {
  padding: 20px;
  width: 410px;
  height: 60px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: 2px 2px 4px #ff0055, -1px -1px 0px #f5a002;
}

.card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin: 20px 25px;
  justify-content: center;
}
.card-group .card {
  border: 2px solid #590B7A;
  transition: transform 0.3s ease;
}
.card-group .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px #590B7A;
}
.card-group .card:hover .btn-success {
  background-color: #1c2833;
  border: none;
  border-radius: 0;
  padding: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.card-group .card:hover .btn-success:hover {
  background-color: #ff0055, 15%;
  color: whitesmoke;
}
.card-group .card .text-body-secondary {
  font-size: 1.5rem;
  font-weight: bold;
  color: #590B7A !important;
}
@media (max-width: 480px) {
  .card-group {
    flex-direction: column;
    margin: 10px;
  }
  .card-group .card {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .card-group {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 15%;
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .card-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1281px) {
  .card-group {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .card-group .card {
    width: 30%;
  }
}

.return {
  display: flex;
  margin: 50px auto;
  font-family: Verdana, sans-serif;
  font-size: 1rem;
  justify-content: center;
  color: #590B7A;
  text-align: center;
  background-color: rgba(33, 31, 156, 0.4);
  border-radius: 12px;
  border: 2px solid #ff0055;
  padding: 20px;
  width: 100px;
  height: auto;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: 2px 2px 4px #ff0055, -1px -1px 0px #f5a002;
}
.return a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #590B7A;
  padding: 10px;
}
.return:hover {
  transform: scale(1.1);
  background-color: rgba(8, 80, 235, 0.6);
  cursor: pointer;
}
@media (max-width: 480px) {
  .return {
    width: 80%;
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=style.css.map */
