@charset "utf-8";

/* --------------------------- propiedades generales ------------------------------- */

/* fuente montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700;900&display=swap");

/* fuente bebas */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: 5em;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
}

footer {
  margin-top: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
}

.ico-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2em;
}

.ico-sec img {
  margin-right: 1em;
}

a {
  text-decoration: none;
}

.bold {
  font-weight: 700;
}

.naranja {
  color: #F08D55;
}

.italic {
  font-weight: 600;
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* --------------------------- header ------------------------------- */

header {
  background-color: #6dc8f1;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 8000;
}

.logo-cda {
  transition: all .4s ease;
}

.logo-cda:hover {
  transform:scale(1.06);
}

.menu-ham {
  margin-right: 0.4em;
  width: 1.2em;
}

.header-conocer {
  background-color: #5558a2;
}

.header-juegos {
  background-color: #6abe7f;
}

.header-cuenta {
  background-color: #bbb6d9;
}

.header-actividades {
  background-color: #E66184;
}

.header-descubrir {
  background-color: #F08D55;
}

.contenedora {
  width: min(50rem, 100%);
  margin-inline: auto;
  padding: 1em;
}

header .contenedora {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

/* botón "hamburguesa" */
.menu-btn {
  background: hsl(0 0% 100% / 0.25);
  border-radius: 50%;
  box-shadow: -5px 5px 5px hsl(180 100% 4% / 0.2);
  padding: 0.75rem;
  width: 3rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease-out;
  position: fixed;
  top: 3em;
  right: 3em;
  z-index: 9000;
}

.menu-btn:hover {
  transform: scale(1.1);
}


.menu-btn .btn-linea {
  width: 25px;
  height: 3px;
  margin: 4px 0 4px 0;
  border-radius: 4px;
  background: hsl(0 0% 90%);
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 9000;
}

.menuVisible .menu-btn .btn-linea {
  transform: rotate(180deg);
}

.menuVisible .menu-btn .btn-linea:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
.menuVisible .menu-btn .btn-linea:nth-child(2) {
  opacity: 0;
}
.menuVisible .menu-btn .btn-linea:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.menuVisible ul {
  background-color: #6dc8f1;
  transition: all 0.4s ease;
  translate: 0;
}

nav ul {
  display: grid;
  place-items: center;
  place-content: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 8000;
  translate: 100%;
  transition: all 0.4s ease;
}

.pie {
  margin-top: 3em;
}

/* cada vínculo del menu */
nav ul li a {
  font-family: "Bebas Neue", sans-serif;
  border-bottom: solid 1px hsl(0 0% 100% / 0.1);
  letter-spacing: 0.07em;
  color: white;
  display: flex;
  align-items: center;
  font-size: 1.8em;
  width: min(70vw, 18rem);
  text-decoration: none;
  padding: 0.3em;
  padding-left: 2em;
}

nav ul li a:hover {
  color: hsl(180 100% 4% / 0.2);
  border-bottom: solid 1px hsl(0 0% 100% / 0.5);
  transition: all 0.4s;
}


/* --------------------------- home ------------------------------- */

.intro h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  color: #E66184;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 1em;
}


/* --------- novedades ------------- */


.novedades {
  display: none;
  text-align: center;
}

.novedades h3 {
  color: #E66184;
  padding: 1em;
}



.novedades h4 {
  color: #6dc8f1;
  padding-bottom: 1em;
}

.novedades p {
  color: #5c5c5c;
  line-height: 1.5em;
}

.novedades a {
  display: inline-block;
  font-weight: 600;
  color: #6dc8f1;
  transition: all .3s ease;
}

.novedades a:hover {
  color: #E66184;
}


.separador {
  margin: 2em auto;
  background-color: #6dc8f1;
  width: 80%;
  height: 1px;
}

.img-novedades {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}

.img-novedades img{
  width: 10em;
  cursor: pointer;
  transition: all .2s ease;
}

.img-novedades img:hover{
  transform: scale(1.1);
}


.intro {
  padding-top: 2em;
}

.intro p {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  color: #717171;
  text-align: center;
  line-height: 1.5em;
}

/* burbujas */

.burbuja{
  z-index:-1000;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  bottom: -150;  
  animation: burbujas 3s linear infinite ;
}

.burbuja:nth-child(1){
  background: #E66184;
  width: 80px;
  height: 80px;
  left: 5%;
  animation-duration: 3s;
  animation-delay: 2.6s;
}

.burbuja:nth-child(2){
  background: #F08D55;
  width: 100px;
  height: 100px;
  left: 35%;
  animation-duration: 3s;
  animation-delay: 1.7s;
}

.burbuja:nth-child(3){
  background: #348E47;
  width: 20px;
  height: 20px;
  left: 15%;
  animation-duration: 1.5s;
  animation-delay: 2.4s;
}

.burbuja:nth-child(4){
  background: #6dc8f1;
  width: 50px;
  height: 50px;
  left: 80%;
  animation-duration: 6s;
  animation-delay: 3s;
}

.burbuja:nth-child(5){
  background: #5558a2;
  width: 70px;
  height: 70px;
  left: 65%;
  animation-duration: 3s;
  animation-delay: 1s;
}

.burbuja:nth-child(6){
  background: #bbb6d9;
  width: 20px;
  height: 20px;
  left: 40%;
  animation-duration: 3.5s;
  animation-delay: 1.8s;
}

.burbuja:nth-child(7){
  background: #E66184;
  width: 20px;
  height: 20px;
  left: 50%;
  animation-duration: 4s;
  animation-delay: 2.2s;
}

.burbuja:nth-child(8){
  background: #348E47;
  width: 100;
  height: 100px;
  left: 52%;
  animation-duration: 5s;
  animation-delay: 3s;
}

.burbuja:nth-child(9){
  background: #6abe7f;
  width: 65px;
  height: 65px;
  left: 61%;
  animation-duration: 4s;
  animation-delay: 1.5s;
}

.burbuja:nth-child(10){
  background: #E66184;
  width: 40px;
  height: 40px;
  left: 35%;
  animation-duration: 3s;
  animation-delay: 2s;
}

.burbuja:nth-child(11){
  background: #F08D55;
  width: 50px;
  height: 50px;
  left: 15%;
  animation-duration: 6s;
  animation-delay: 1s;
}

.burbuja:nth-child(12){
  background: #bbb6d9;
  width: 30px;
  height: 30px;
  left: 20%;
  animation-duration: 8s;
  animation-delay: 0.1s;
}

.burbuja:nth-child(13){
  background: #f395ae;
  width: 20px;
  height: 20px;
  left: 45%;
  animation-duration: 3s;
  animation-delay: 0.2s;
}

.burbuja:nth-child(14){
  background: #98d1eb;
  width: 40px;
  height: 40px;
  left: 76%;
  animation-duration: 9s;
  animation-delay: 1s;
}

.burbuja:nth-child(15){
  background: #9792B7;
  width: 30px;
  height: 30px;
  left: 68%;
  animation-duration: 3.5s;
  animation-delay: 2s;
}

@keyframes burbujas{
  0%{
      bottom: 0;
      opacity: 0;
  }
  30%{
      transform: translateX(10px);
  }
  50%{
      opacity: .9;
  }
  100%{
      bottom: 100vh;
      opacity: 0;
  }
}

@keyframes movimiento{
  0%{
      transform: translateY(0);
  }
  50%{
      transform: translateY(10px);
  }
  100%{
      transform: translateY(0);
  }
}



/* ----------  seccion secciones --------------- */

.botones-juegos {
  background-size: cover;
  padding-bottom: 0.2em;
}

.secciones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1em;
  padding-top: 2em;
}

.secciones article {
  text-align: center;
  width: 9em;
  height: 12em;
  border-radius: 1em;
  transition: all .4s ease;
}

.secciones article:hover {
  transform:scale(1.08);
  border-radius: 1em;
  background-color: #6dc8f1;
}

.img-art {
  margin: 0.75em;
  width: 7.5em;
  border-radius: 1em;
  background-color: #ffffff;
}

.art-conocer {
  justify-self: end;
  background-color: #5659a3;
}

.art-jugar {
  justify-self: start;
  background-color: #6abe7f;
}

.art-actividades {
  justify-self: end;
  background-color: #e66285;
}

.art-descubrir {
  justify-self: start;
  background-color: #f18e56;
}

.secciones h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3em;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  padding-top: 0.8em;
}


/* --------------------------- conocer ------------------------------- */


.intro-conocer {
  text-align: center;
}

.intro-conocer h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  color: #5659a3;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.03em;
}

.intro-conocer h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  color: #5558a2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 1em;
}

.intro-conocer > p {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  color: #717171;
  line-height: 1.5em;
  padding-top: 1em;
}

.intro-conocer > img {
  border-radius: 1em;
}

.botones {
  display: flex;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 2em;
  padding-right: 3em;
  gap: 0.5em;
}

.botones-conocer {
  display: flex;
  justify-content: center;
}

.botones .btn-juegos {
  width: 7.5em;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.2em 0.6em;
  border-radius: 0.3em;
  background-color: #429c57;
  border: 2px solid #429c57;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}

.botones .btn-juegos:hover {
  background-color: #fff;
  border: 2px solid #429c57;
  color: #429c57;
}

.botones .btn-actividades {
  width: 7.5em;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.2em 0.6em;
  border-radius: 0.3em;
  background-color: #e66285;
  border: 2px solid #e66285;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}

.botones .btn-actividades:hover {
  background-color: #fff;
  border: 2px solid #e66285;
  color: #e66285;
}

.botones img {
  width: 2.5em;
}

.artistas p {
  color: #fff;
  line-height: 1.5em;
}

.artistas h2 {
  color: #fff;
}



/* --------------------------- juegos ------------------------------- */

.botones-juegos {
  padding-bottom: 0.5em;
}

.juegos {
  text-align: center;
}

.juegos h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  color: #6abe7f;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.juegos h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  color: #6abe7f;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 1em;
}

.juegos p {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  color: #717171;
  line-height: 1.5em;
  padding-top: 1em;
}

.art-verde-oscuro-izq {
  justify-self: end;
  background-color: #185527;
}

.art-verde-oscuro-der {
  justify-self: start;
  background-color: #185527;
}

.art-verde-claro-izq {
  justify-self: end;
  background-color: #429c57;
}

.art-verde-claro-der {
  justify-self: start;
  background-color: #429c57;
}

/* ------------ hacer arte ----------- */

.hacer-arte article {
  padding: 1em;
  margin-bottom: 1.5em;
}

.hacer-arte h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  color: #348E47;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: .5em;
}

.hacer-arte p {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  color: #717171;
  line-height: 1.5em;
  margin-bottom: 1em;
}

.hacer-arte h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  color: #429c57;
  line-height: 1.5em;
  padding-top: 1em;
}

.hacer-arte {
  text-align: center;
}

.pintar img {
  border-radius: 1em;
  margin: 0.4em;
}

.herra {
  padding: 0.5em;
  cursor: pointer;
}

.hacer-arte button {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.2em 0.6em;
  border-radius: 0.3em;
  background-color: #429c57;
  border: 2px solid #429c57;
  color: #fff;
  margin: 0.2em;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hacer-arte button:hover {
  background-color: #fff;
  border: 2px solid #429c57;
  color: #429c57;
}


/* ------------------------- actividades ---------------------------- */

.actividades {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin: 1em auto;
  max-width: 60em;
}

.img-info-act img{
  border: solid 4px #E66184;
  border-radius: 2em;
  margin-bottom: .5em;
}

.art-act {
  display: flex;
  justify-content:flex-start;
  align-items: center;
  background-color: #E66184;
  border-radius: 1.5em;
  width: 22em;
}

.txt-act {
  padding: .8em;
}

.art-act2 {
  display: flex;
  justify-content:flex-start;
  align-items: center;
  background-color: #fd8aa9;
  border-radius: 1.5em;
  width: 22em;
}

.art-act h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-weight: 100;
  font-size: 1.8em;
  letter-spacing: .05em;
}

.art-act2 h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-weight: 100;
  font-size: 1.8em;
  letter-spacing: .05em;
}

.art-act p {
  font-size: .8em;
  color: #fff;
}

.art-act2 p {
  font-size: .8em;
  color: #fff;
}

.img-act {
  width: 15em;
  margin: .5em;
}

.actividades>p {
  text-align: center;
  color: #5c5c5c;
  line-height: 1.5em;
}

.actividades h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  color: #E66184;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.03em;
}

.actividades button {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.1em 0.3em;
  border-radius: 0.3em;
  background-color: #fff;
  border: 2px solid #fff;
  color: #E66184;
  margin: 0.5em .3em;
  cursor: pointer;
  transition: all 0.4s ease;
}

.actividades button:hover {
  background-color: #F08D55;
  border: 2px solid #fff;
  color: #fff;
}



/* ------------------- la huerta ------------------------- */

.huer-num {
  background-color: #f395ae;
  border-radius: .5em;
  color: #fff;
  width: 3em;
  aspect-ratio: 1;
  text-align: center; 
  margin-bottom: .5em;
}

.lahuerta h6 {
  font-size: 1.2em;
  color: #fff;
  padding-top: .6em;
}

.lahuerta-block h6 {
  font-size: 1.2em;
  color: #fff;
  padding-top: .6em;
}

.lahuerta p, ul {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  color: #717171;
  line-height: 1.5em;
  margin-bottom: 1em;  
}

.lahuerta ul {
  list-style: none;
}

.lahuerta ul li::before {
  content: "\2022";
  color:#E66184;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  padding-left: 1em;
}

.lahuerta h4 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 100;
  letter-spacing: .07em;
  color: #f7bfce;
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

.huer-tit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.huer-tit h2 {
  font-family: "Montserrat", sans-serif;
  color: #E66184;
  padding-left: .7em;
  margin-bottom: .5em;
}

.huer-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1em 0;
}

.huer-txt {
  padding: 1em;
}

.huer-txt h3 {
  font-family: "Bebas Neue", sans-serif;
  color: #E66184;
  font-weight: 100;
  font-size: 1.3em;
  letter-spacing: .05em;
  text-align: center;
  padding-bottom: 1em;
}

.huer-txt p {
  text-align: center;
}

.huer-video {
  border-radius: 1em;
  border: 2px solid #E66184;
  padding: .5em;  
  aspect-ratio: 16/9;
}

iframe {
  border-radius: 1em;
  min-width: 10em;
  aspect-ratio: 16/9;
}

.separador2 {
  margin: 2em auto;
  background-color: #f7bfce;
  width: 50%;
  height: 1px;
}

.lahuerta-block {
  opacity: .4;
}

/* --------------------------- cuenta ------------------------------- */

.cuenta {
  text-align: center;
}

.cuenta p {
  color: #5c5c5c;
  padding-top: 2em;
  line-height: 1.5em;
}

.cuenta span {
  font-weight: 600;
  color: #e66285;
}

.formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cuenta h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #bbb6d9;
}


/* ----------- mi cuenta ------------ */

.progresos {
  text-align: center;
}

.progresos h2 {
  margin: .5em;
}

.mis-premios h2 {
  margin: .5em;
  text-align: center;
}


.info-cuenta {
  display: flex;
  justify-content: center;
  margin: 2em 1em;
}

.img-cuenta {
  width: 12em;
  cursor: pointer;
  transition: all .4s ease;
}

.img-cuenta:hover {
  transform: scale(1.1);
}

.mi-cuenta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2em;
  font-weight: 400;
  color: #9792B7;
}

#nom-usuario {
  display: inline;
  border-bottom: 2px solid #9792B7;
  padding-bottom: 0;
  padding-left: 0.2em;
}

.prog-item {
  display:inline-block;
  width:  80%;
  height: 1.6em;
  letter-spacing: .05em;
  padding-top: .2em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7em;
  background-color: #9792B7;
  border-radius: .4em;
  color: #fff;
  cursor: pointer;
  transition: all .4s ease;
}

.prog-item:hover {
  background-color: #dad8ed;
  transform: scale(1.1);
}


.grilla-progre {
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2em auto;
}

.grilla-txt {
  width: 12em;
  height: 2em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2em;
  letter-spacing: .2em;
  background-color: #dad8ed;
  color: #9792B7;
  border-radius: .4em;
  padding-top: .4em;
  cursor: pointer;
  transition: all .2s ease;
  margin-right: .4em;
}

.grilla-txt:hover {
  background-color: #9792B7;
  color: #fff;
}

.grilla-item {
  display: flex;
  margin-bottom: .4em;
}

.grilla-img {
  width: 12em;
}


.txt-cuenta {
  margin: 2em;
}

.estrellas {
  width: 7em;
  padding-top: .5em;
}

.txt-cuenta h3 {
  font-family: 'Bebas Neue', sans-serif;
  color:#e66285;
  letter-spacing: .05em;
  font-weight: 200;
  padding-left: 0.2em;
}

.txt-cuenta span {
  color: #9792B7;
}

.txt-cuenta button {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  letter-spacing: .1em;
  font-size: 1em;
  padding: .2em 1em .1em 1em;
  border-radius: .4em;
  cursor: pointer;
  margin-top: .3em;
}

#salir-cuenta {
  background-color: #e66285;
  border: 2px solid #e66285;
  transition: all .4s ease;
}

#salir-cuenta:hover {
  background-color: #fff;
  border: 2px solid #e66285;
  color: #e66285;
}

/* ----- formulario ------- */

.formulario h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2em;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #bbb6d9;
  padding: 0;
}

.img-avatar {
  width: 6em;
  display: inline-flex;
  cursor: pointer;
  transition: all 0.2s ease;
}

.img-avatar:hover {
  border: 3px solid #185527;
  border-radius: 50%;
  
}

.img-avatar-group {
  margin-top: 1em;
}

.formulario p {
  font-size: 1em;
  padding-left: .2em;
  color: #e66285;
  font-weight: 600;
  margin-bottom: .5em;
  margin-top: 1em;
}

.form {
  max-width:40em;
  padding: 1.7em;
}

.form-txt {
  display: flex;
  margin-bottom: 1em;
}

.form-txt a {
  font-family: 'Montserrat', sans-serif;
  font-size: .8em;
  font-weight: 400;
  color: #bbb6d9;
  margin: 1em;
  transition: all .4s ease;
}

.form-txt a:hover {
  color:#e66285;
}

#olvido {
  letter-spacing: .05em;
  margin-bottom: 1em;
  font-size: .8em;
  font-weight: 300;
  cursor: pointer;
  color: #bbb6d9;
  transition: all .2s ease;
}

#olvido:hover {
  color: #e66285;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
}

input {
  width: 20em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1em;
  padding: .7em;
  margin-bottom: 1em;
  border-radius: .5em;
  border: solid 1px #bbb6d9;
}

#borrar {
  background-color: #e66285;
  border: 2px solid #e66285;
}

#borrar:hover {
  background-color: #fff;
  border: 2px solid #e66285;
  color: #e66285;
}



.formulario button {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.2em 0.6em;
  border-radius: 0.3em;
  background-color: #bbb6d9;
  border: 2px solid #bbb6d9;
  color: #fff;
  margin: 0.2em;
  cursor: pointer;
  transition: all 0.4s ease;
}

.formulario button:hover {
  background-color: #fff;
  border: 2px solid #bbb6d9;
  color: #bbb6d9;
}

/* ----------- modal ----------- */

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, .8);
  z-index: 10000;
  visibility: hidden;
}

.modalcontent {
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  border-radius: 2em;
  width: 22em;
  padding: 1.5em;
}

#modal h2 {
  text-align: center;
}

#modal h3 {
  color: #5c5c5c;
  font-size: .9em;
  font-weight: 400;
  margin: 2em;
}

#modal span {
  color: #E66184;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
}



/* ----------------- descubrir --------------------- */

.desc-destacado {
  margin: 2em;
}

.descubrir h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  color: #F08D55;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.03em;
}

.comienzo {
  text-align: center;
}

.comienzo h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3em;
  font-weight: 500;
  text-transform: uppercase;
  color: #F08D55;
}

.comienzo h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3em;
  font-weight: 500;
  text-transform: uppercase;
  color: #5c5c5c;
  margin-top: 3em;
}

.comienzo h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  color: #717171;
  margin-top: 2em;
  margin-bottom: .5em;
}

.des-ico {
  display: flex;
  justify-content: center;
  align-items: center;
}

.comienzo p {
  width: 60%;
  margin: 1em auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  color: #5c5c5c;
}

.tit-video {
  margin: 1em;
}

.separador3 {
  margin: 1em auto;
  background-color: #F08D55;
  width: 60%;
  height: 1px;
}



/* ----------------- slider --------------------- */

.mis-premios {
  max-width: 800px;
  margin: 0 auto;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  width: 150px;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.swiper-slide img {
  width: 100%;
  transition: all .4s ease;
  cursor: pointer;
}

.swiper-slide img:hover {
  transform: scale(1.1);
}





/* --------------------------- footer ------------------------------- */

footer {
  height: 165px;
  background-image: url(../imgs/home/back-footer-home.svg);
  background-size: cover;
  text-align: center;
  padding-top: 5em;
}

.footer-conocer {
  background-image: url(../imgs/home/back-footer-conocer.svg);
  background-size: cover;
  text-align: center;
}

.footer-cuenta {
  background-image: url(../imgs/home/back-footer-cuenta.svg);
  background-size: cover;
  text-align: center;
}


.footer-juegos {
  background-image: url(../imgs/home/back-footer-juegos.svg);
  background-size: cover;
  text-align: center;
}

.footer-actividades {
  background-image: url(../imgs/home/back-footer-actividades.svg);
  background-size: cover;
  text-align: center;
}

.footer-descubrir {
  background-image: url(../imgs/home/back-footer-descubrir.svg);
  background-size: cover;
  text-align: center;
}

.usuario {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
}

.atras {
  justify-self: end;
  width: 3em;
  transition: all .2s ease;
}

.atras:hover {
  transform: scale(1.1);
}

.avatar-usuario {
  justify-self: center;
  width: 3em;
  transition: all .2s ease;
}

.avatar-usuario:hover {
  transform: scale(1.1);
}

.entrar-usuario {
  font-size: 1.2em;
  justify-self: start;
  transition: all .2s ease;
}

.entrar-usuario:hover {
  transform: scale(1.1);
}

footer p,
a {
  font-size: 1em;
  color: #fff;
  transition: all .4s ease;
}

footer a:hover {
  color: #717171;
}



/* --------------------------- media queries ------------------------------- */

@media (min-width: 40em) {
  /* ------ menu ------ */
  .menu-btn {
    display: none;
  }

  /* menu visible */
  header nav ul,
  header .menuVisible ul {
    display: flex;
    position: relative;
    translate: 0;
    margin-left: 3em;
  }

  header nav ul li {
    min-width: 4em;
  }

  header nav ul li a {
    color: white;
    font-size: 1.2rem;
    width: auto;
    padding: 0.25em 1em;
    text-align: center;
    border-bottom: none;
  }

  nav ul li a:hover {
    color: #717171;
    border-bottom: none;
    transition: all 0.4s;
  }

  .pie {
    display: none;
  }

  /* ------ actividades ------ */

  iframe {
    min-width: 34em;
  }

  /* ------ hacer arte ------ */

  .obra {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  
  /* ------ main ------ */
  .secciones {
    display: flex;
    justify-content: center;
    gap: 1em;
  }

  .novedades {
    display: block;
  }

}

