@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}
body .whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}
body .whatsapp img {
  width: 100px;
  height: 100px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
body .whatsapp img:hover {
  transform: scale(1.2);
}

.btn-primary {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  background-color: rgb(206, 24, 30);
  font-family: "Roboto", sans-serif;
  transition: box-shadow 0.3s ease-in-out;
}
@media (max-width: 990px) {
  .btn-primary {
    font-size: 1.2rem;
    padding: 5px 15px;
  }
}

.btn-primary:hover {
  background-color: rgb(206, 24, 30);
  border-color: rgb(206, 24, 30);
  transform: scale(1.05);
}

.btn-primary:active:focus {
  background-color: rgb(160, 20, 25);
  outline: none;
  border-color: rgb(160, 20, 25);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
header .navbar {
  background-color: rgba(255, 255, 255, 0.95);
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out;
}
header .navbar .navbar-brand {
  font-weight: bold;
  font-size: 2rem;
  color: rgb(206, 24, 30);
  font-family: "Sansation", sans-serif;
}
header .navbar .navbar-brand:hover {
  color: rgb(160, 20, 25);
}
@media (max-width: 990px) {
  header .navbar .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 0 0 8px 8px;
  }
  header .navbar .navbar-collapse .navbar-nav {
    text-align: center;
    width: 100%;
  }
  header .navbar .navbar-collapse .nav-item {
    display: block;
    margin: 0.5rem 0;
  }
  header .navbar .navbar-collapse .nav-link {
    display: inline-block;
    width: auto;
    padding: 0.75rem 1rem;
    text-align: center;
  }
}
header .navbar ul {
  list-style: none;
}
header .navbar ul .nav-link {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  color: rgba(160, 20, 25, 0.8);
}
header .navbar ul .nav-link:hover {
  color: rgb(206, 24, 30);
  font-weight: bold;
}

footer {
  height: 150px;
}
footer .img-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
}
footer .img-footer img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  opacity: 0.5;
}
footer .img-footer img:hover {
  opacity: 0.8;
}
footer .container-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .container-footer p {
  font-size: 1.25rem;
  padding: 10px 10px;
}
@media (max-width: 480px) {
  footer .container-footer {
    height: auto;
    align-items: center;
  }
  footer .container-footer p {
    font-size: 1rem;
  }
}

.footer-dark {
  background-color: rgb(15, 15, 15);
}
.footer-dark p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-light {
  background-color: rgb(249, 255, 250);
}
.footer-light .img-footer img {
  filter: invert(1);
}
.footer-light p {
  color: rgba(0, 0, 0, 0.5);
}

body.body-registro {
  background-color: rgb(249, 255, 250);
}
body.body-registro .main-registro {
  margin-top: 200px;
  margin-bottom: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
body.body-registro .main-registro h2 {
  font-family: "Sansation", sans-serif;
  font-size: 2.5rem;
  color: rgb(206, 24, 30);
  font-weight: bold;
}
@media (max-width: 480px) {
  body.body-registro .main-registro h2 {
    font-size: 2.2rem;
  }
}
body.body-registro .main-registro .form-control {
  width: 300px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  transition: border-color 0.3s ease-in-out;
}
body.body-registro .main-registro .form-control:focus {
  border-color: rgb(206, 24, 30);
  outline: none;
  box-shadow: inset 2px 2px 5px rgba(206, 24, 30, 0.3);
}
body.body-registro .main-registro p {
  font-size: 1rem;
}
body.body-registro .main-registro p a {
  color: rgb(206, 24, 30);
  text-decoration: none;
}
body.body-registro .main-registro p a:hover {
  text-decoration: underline;
}

.somos-academy {
  background-color: rgb(249, 255, 250);
  height: 100vh;
  display: flex;
  align-items: center;
}
.somos-academy .container-academy {
  display: flex;
  justify-content: center;
  align-items: center;
}
.somos-academy .container-academy .img-container {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/play-pkm-img.png);
  background-size: cover;
  background-position: center center;
  height: 500px;
  width: 400px;
}
@media (max-width: 990px) {
  .somos-academy .container-academy .img-container {
    display: none;
  }
}
.somos-academy .container-academy .academy-texto h2 {
  font-family: "Sansation", sans-serif;
  font-size: 3rem;
  font-weight: bold;
}
.somos-academy .container-academy .academy-texto .color-somos {
  color: rgb(206, 24, 30);
}
.somos-academy .container-academy .academy-texto p {
  font-size: 1.25rem;
}
@media (max-width: 480px) {
  .somos-academy .container-academy .academy-texto p {
    text-align: center;
    font-size: 1rem;
  }
}
.somos-academy .container-academy .academy-texto {
  width: 50%;
  text-align: initial;
  padding: 0px 40px;
}
@media (max-width: 990px) {
  .somos-academy .container-academy .academy-texto {
    width: 70%;
    padding: 30px 10px;
    text-align: center;
  }
}

.somos-ofrecemos {
  background-color: rgb(15, 15, 15);
  height: 100vh;
  display: flex;
  align-items: center;
}
.somos-ofrecemos .container-ofrecemos {
  display: flex;
  justify-content: center;
  align-items: center;
}
.somos-ofrecemos .container-ofrecemos .ofrecemos-texto {
  width: 50%;
  text-align: initial;
  padding: 0px 40px;
  color: whitesmoke;
  font-size: 1.25rem;
}
@media (max-width: 990px) {
  .somos-ofrecemos .container-ofrecemos .ofrecemos-texto {
    width: 70%;
    padding: 30px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .somos-ofrecemos .container-ofrecemos .ofrecemos-texto {
    font-size: 1rem;
  }
}
.somos-ofrecemos .container-ofrecemos .ofrecemos-img {
  background-image: url(../img/poke-ball.png);
  background-size: cover;
  background-position: center center;
  height: 500px;
  width: 500px;
}
@media (max-width: 990px) {
  .somos-ofrecemos .container-ofrecemos .ofrecemos-img {
    display: none;
  }
}

.nuestros-programas {
  background-color: rgb(15, 15, 15);
  color: white;
  text-align: center;
  padding: 30px 20px;
  gap: 20px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .nuestros-programas {
    height: auto;
  }
}
.nuestros-programas h2 {
  font-family: "Sansation", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 100px;
}
.nuestros-programas .container-card {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 990px) {
  .nuestros-programas .container-card {
    flex-direction: column;
    align-items: center;
  }
}
.nuestros-programas .container-card .card {
  margin-top: 30px;
  background-color: rgba(90, 30, 117, 0.2);
  color: white;
  border-radius: 20px;
}
.nuestros-programas .container-card .card .card-body h3 {
  font-weight: bold;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.9);
  color: rgb(249, 255, 250);
}
.nuestros-programas .container-card .card .card-body p {
  font-size: 1rem;
  color: rgba(249, 255, 250, 0.8);
}
@media (max-width: 990px) {
  .nuestros-programas .container-card .card .card-body p {
    display: none;
  }
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  gap: 20px;
  color: whitesmoke;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url(../img/main-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.main h1 {
  font-family: "Sansation", sans-serif;
  font-size: 7rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}
@media (max-width: 990px) {
  .main h1 {
    font-size: 3.5rem;
    margin: 10px;
  }
}
@media (max-width: 480px) {
  .main h1 {
    font-size: 2.5rem;
    margin: 10px;
  }
}

#caracteristicas .container-caracteristicas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 20px;
  height: 100vh;
  background-color: rgb(249, 255, 250);
}
#caracteristicas .container-caracteristicas h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: rgb(206, 24, 30);
  text-align: center;
}
#caracteristicas .container-caracteristicas ul {
  list-style: circle;
  font-size: 2rem;
  color: black;
}
@media (max-width: 480px) {
  #caracteristicas .container-caracteristicas ul {
    font-size: 2.5rem;
  }
}

.ready {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 95vh;
  background-color: rgb(15, 15, 15);
  gap: 100px;
}
.ready h2 {
  font-family: "Sansation", sans-serif;
  font-size: 4rem;
  color: whitesmoke;
  font-weight: bold;
}
@media (max-width: 480px) {
  .ready h2 {
    font-size: 2.5rem;
    margin: 20px;
  }
}

.ready-somos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 95vh;
  background-color: rgb(249, 255, 250);
  gap: 100px;
}
.ready-somos h2 {
  font-family: "Sansation", sans-serif;
  font-size: 4rem;
  color: black;
  font-weight: bold;
}
@media (max-width: 480px) {
  .ready-somos h2 {
    font-size: 2.5rem;
    margin: 20px;
  }
}

.programa-page {
  background-color: rgb(15, 15, 15);
  height: 100vh;
  display: flex;
  align-items: center;
}
.programa-page .programa-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.programa-page .programa-content .building-img {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/teambuild-img.png);
  background-size: cover;
  background-position: center center;
  height: 400px;
  width: 600px;
}
@media (max-width: 990px) {
  .programa-page .programa-content .building-img {
    height: 200px;
    width: 400px;
    background-position: center center;
  }
}
@media (max-width: 480px) {
  .programa-page .programa-content .building-img {
    display: none;
  }
}
.programa-page .programa-content .planning-img {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/planning-img.png);
  background-size: cover;
  background-position: center center;
  height: 350px;
  width: 550px;
}
@media (max-width: 990px) {
  .programa-page .programa-content .planning-img {
    height: 200px;
    width: 400px;
    background-position: center center;
  }
}
@media (max-width: 480px) {
  .programa-page .programa-content .planning-img {
    display: none;
  }
}
.programa-page .programa-content .tactics-img {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/tactics-img.png);
  background-size: cover;
  background-position: center center;
  height: 400px;
  width: 600px;
}
@media (max-width: 990px) {
  .programa-page .programa-content .tactics-img {
    height: 200px;
    width: 400px;
    background-position: center center;
  }
}
@media (max-width: 480px) {
  .programa-page .programa-content .tactics-img {
    display: none;
  }
}
.programa-page .programa-content .programa-texto {
  color: whitesmoke;
  width: 50%;
  text-align: initial;
  padding: 10px 40px;
}
@media (max-width: 990px) {
  .programa-page .programa-content .programa-texto {
    width: 80%;
    padding: 40px 10px;
    text-align: center;
  }
}
.programa-page .programa-content .programa-texto h2 {
  font-family: "Sansation", sans-serif;
  font-size: 3rem;
  font-weight: bold;
}
.programa-page .programa-content .programa-texto p {
  color: rgba(245, 245, 245, 0.6);
  font-size: 1.25rem;
}
@media (max-width: 480px) {
  .programa-page .programa-content .programa-texto p {
    text-align: center;
    font-size: 1rem;
  }
}
.programa-page .programa-content .programa-texto .nivelQ {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.25rem;
  color: whitesmoke;
}
@media (max-width: 990px) {
  .programa-page .programa-content .programa-texto .nivelQ {
    text-align: center;
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .programa-page .programa-content .programa-texto .nivelQ {
    text-align: center;
    font-size: 1rem;
  }
}
.programa-page .programa-content .programa-texto .nivelA {
  color: rgba(245, 245, 245, 0.6);
  font-weight: normal;
}
@media (max-width: 990px) {
  .programa-page .programa-content {
    flex-direction: column;
    padding-bottom: 100px;
  }
}

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