@import url("https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.titulosn {
  text-align: center;
}

.equipotrabajo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: "Super Sunkissed", sans-serif;
}

.imgequipo {
  width: 20vw;
  height: auto;
  transition: transform 0.3s ease;
}
.imgequipo:hover {
  transform: scale(1.4);
}

.mapa {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.seccionnosotros {
  padding: 0 40px;
  margin-bottom: 20px;
}
.seccionnosotros p {
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: center;
}
.seccionnosotros strong {
  color: blueviolet;
}

@media (max-width: 430px) {
  .mapa iframe {
    width: 90vw;
    height: 200px;
  }
  .seccionnosotros {
    padding: 0 10px;
  }
  .seccionnosotros p {
    font-size: 0.9rem;
  }
  .imgequipo {
    width: 80vw;
    height: auto;
  }
  .equipotrabajo ul {
    padding-left: 15px;
  }
  .equipotrabajo ul li {
    font-size: 0.9rem;
  }
}
.row .col-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.row .col-3 img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}

.row .col-3 button {
  width: 100px;
}

.secciontienda {
  padding: 0 20px;
}
.secciontienda p {
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 430px) {
  .row .col-3 {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }
  .row .col-3 img {
    width: 150px;
    height: 150px;
  }
  .row .col-3 button {
    width: 80px;
  }
}
.juegosindex {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 20px;
}

.contenedorimgind {
  position: relative;
  width: 50vw;
  overflow: hidden;
  cursor: pointer;
}
.contenedorimgind img {
  width: 100%;
  height: auto;
  display: block;
}
.contenedorimgind .descripcion {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 20px;
  transition: bottom 0.4s ease;
}
.contenedorimgind.activo .descripcion {
  bottom: 0;
}

@media (max-width: 430px) {
  .contenedorimgind {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contenedorimgind .descripcion {
    position: relative;
    bottom: auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    transition: none;
  }
}
/* HEADER */
header .logocentrado {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
header .logo {
  width: 20vw;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  width: 250px;
  animation: rebote 2s infinite;
}
header .navegacion {
  display: flex;
  justify-content: center;
  gap: 10px;
}
header .navegacion li {
  display: inline-block;
  perspective: 600px;
}
header .navegacion li a {
  display: inline-block;
  padding: 5px 10px;
  color: white;
  text-decoration: none;
  background: rgb(21, 226, 117);
  border-radius: 5px;
  transition: transform 0.5s, background 0.5s;
  transform-style: preserve-3d;
}
header .navegacion li a:hover {
  transform: rotateY(360deg);
  background: blueviolet;
}
header .navegacion li a.paginaactual {
  background-color: blueviolet;
  color: white;
}
@keyframes rebote {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-20px);
  }
}

@media (max-width: 430px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    position: static;
  }
  header .logo {
    order: 1;
    margin-bottom: 5px;
  }
  header .titulo,
  header .titulocontacto {
    order: 2;
    margin-bottom: 10px;
  }
  nav, header .navegacion {
    order: 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    position: static;
    margin-top: 10px;
  }
  nav li {
    list-style: none;
  }
  nav li a {
    font-size: 0.9rem;
    text-decoration: none;
    color: #000;
  }
}
.juegosindex article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.galeriajuegos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
.galeriajuegos img:hover {
  transform: scale(1.05);
}

.gridgaleria {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  padding: 10px;
  position: relative;
}

.mas {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
}

.titulojuego {
  font-family: "Yoster", sans-serif;
  font-size: larger;
  color: rgb(21, 226, 117);
}

.descripciongaleria {
  text-align: justify;
}

@media (max-width: 430px) {
  .galeriajuegos {
    text-align: center;
  }
  .galeriajuegos .titulojuego {
    font-size: xx-small;
  }
  .galeriajuegos .descripciongaleria {
    font-size: xx-small;
    text-align: justify;
  }
}
/* FOOTER */
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

/*Derechos reservados*/
.dr {
  color: rgb(21, 226, 117);
  font-size: large;
  font-family: yoster;
}

.redsocial {
  margin: 0 10px;
}

.gallery {
  width: 20vw;
  height: auto;
}

.titulocontacto {
  text-align: center;
}

.contformulario {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.formulariogrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: rgb(21, 226, 117);
  border-radius: 8px;
}
.formulariogrid form {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.formulariogrid form input, .formulariogrid form textarea, .formulariogrid form button {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
}
.formulariogrid form textarea {
  grid-column: span 2;
  min-height: 120px;
  resize: vertical;
}
.formulariogrid form button {
  grid-column: span 2;
  background-color: #198754;
  color: #fff;
  border: none;
  cursor: pointer;
}
.formulariogrid form button:hover {
  background-color: #0d6efd;
}

.faqs {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.faqs h3 {
  margin-bottom: 0.3rem;
}
.faqs p {
  margin-bottom: 1rem;
}

@media (max-width: 430px) {
  .formulariogrid {
    grid-template-columns: 1fr;
  }
  .formulariogrid form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .formulariogrid form textarea, .formulariogrid form button {
    grid-column: span 1;
  }
}
.card {
  background-color: rgb(237, 237, 237);
  border: 1px solid;
}
.card .card-title {
  color: blueviolet;
}
.card .card-subtitle {
  color: #555555;
}
.card .card-text, .card li {
  color: #333333;
}

@font-face {
  font-family: "Yoster";
  src: url("../images/yoster.ttf");
}
@font-face {
  font-family: "Super Sunkissed";
  src: url("../images/kgperfect.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Bellavoir";
  src: url("../images/Bellavoir.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
p, h2, h3 {
  font-family: "Super Sunkissed", sans-serif;
}

h2, h3 {
  text-align: center;
}

body {
  background-image: url("../images/bg2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
}

h1 {
  color: rgb(21, 226, 117);
  font-family: "Yoster", sans-serif;
}

h2 {
  color: rgb(65, 176, 180);
}

h3 {
  color: blueviolet;
}

li {
  list-style: none;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}

.tituloindex {
  display: flex;
  color: rgb(65, 176, 180);
  align-items: center;
  justify-content: center;
  font-size: xx-large;
}

.chatfalso {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 2s ease-in-out infinite;
}
.chatfalso img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

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