@charset "UTF-8";
/*
    000 - 600      phone
    600 - 900      tablet portrait
    900 - 1200     tablet landscape
    [1200 - 1800]  normal styles
    1800 +         big desktop
*/
/*

Breakpoint argument choices

-phone
-tab-port
-tab-land
-big-desktop
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translate(-30rem);
  }
  30% {
    opacity: 0;
    transform: translate(-20rem);
  }
  65% {
    transform: translate(2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translate(10rem);
  }
  80% {
    transform: translate(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(20rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(-20rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotation-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 0 orange;
    background-color: white;
  }
  25% {
    box-shadow: 0 0 2rem orange;
    background-color: orange;
  }
  50% {
    box-shadow: 0 0 0rem orange;
    background-color: white;
  }
  75% {
    box-shadow: 0 0 2rem orange;
    background-color: orange;
  }
  100% {
    box-shadow: 0 0 0rem orange;
    background-color: white;
  }
}
.animate__animated.animate__bounce {
  --animate-duration: 1.2s;
}

/* Animación del brillo */
@keyframes glow {
  0% {
    text-shadow: 0 0 1px #00adfc;
  }
  25% {
    text-shadow: 0 0 2px #00adfc;
  }
  50% {
    text-shadow: 0 0 4px #00adfc;
  }
  75% {
    text-shadow: 0 0 2px #00adfc;
  }
  100% {
    text-shadow: 0 0 1px #00adfc;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  box-sizing: border-box;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: white;
  cursor: auto;
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  position: relative;
  width: 100%;
  height: calc(100vh - 8rem);
  margin-top: 8rem;
  margin-bottom: 2rem;
  box-shadow: 0rem 2rem 4rem rgba(0, 0, 0, 0.2), 0rem 0.8rem 2rem rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/Photos-1-001/20241029_091959.jpg") no-repeat center/cover, grey;
  z-index: -1;
}
header .text {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header h1 {
  margin: 0;
  color: #fff;
  font-size: 6rem;
  text-align: center;
  text-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.7);
}
header h2 {
  margin: 0;
  color: #fff;
  font-size: 4rem;
  text-align: center;
  text-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.7);
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background-image: inherit; /* Usa la misma imagen de fondo */
  background-size: inherit;
  background-position: inherit;
  filter: grayscale(0.3) contrast(0.9); /* Aplica el blur a la imagen */
  z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  color: inherit;
}

.thanks_popup,
.fail_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 300;
}

.thanks_popup_content,
.fail_popup_content {
  width: 60rem;
  height: 25rem;
  padding: 8rem 3rem 3rem 3rem;
  background: black;
  border-radius: 8px;
  animation: glow-box 0.8s infinite alternate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 40.625em) {
  .thanks_popup_content,
  .fail_popup_content {
    width: 80%;
    height: 40%;
  }
}

@keyframes glow-box {
  from {
    box-shadow: inset 0 0 0rem 0.1rem rgba(255, 255, 255, 0.2), 0 0 1rem 0.2rem rgba(255, 255, 255, 0.2), 0 0 0rem 0.2rem rgba(255, 255, 255, 0.2), 0 0 0rem 0.1rem rgba(255, 255, 255, 0.2);
  }
  to {
    box-shadow: inset 0 0 1rem 0.1rem rgba(255, 255, 255, 0.2), 0 0 1.2rem 0.3rem rgba(255, 255, 255, 0.2), 0 0 2.2rem 0.3rem rgba(255, 255, 255, 0.2), 0 0 3.2rem 0.3rem rgba(255, 255, 255, 0.2);
  }
}
.thanks_popup_content h1,
.fail_popup_content h1 {
  font-size: 3rem;
  font-weight: 800;
}

.thanks_popup_content p,
.fail_popup_content p {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  width: 90%;
}

.thanks_popup:target,
.fail_popup:target {
  visibility: visible;
  opacity: 1;
}

.popup_close_button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.popup_logo {
  position: absolute;
  top: 1rem;
  left: -1rem;
  width: 25rem;
  height: auto;
}

/* Scrollbar estilo moderno */
::-webkit-scrollbar {
  width: 10px; /* grosor */
}

::-webkit-scrollbar-track {
  background: white; /* fondo */
}

::-webkit-scrollbar-thumb {
  background: #00adfc;
}

::-webkit-scrollbar-thumb:hover {
  background: #00adfc;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #00adfc transparent;
}

a,
a:link,
a:visited {
  text-decoration: none !important;
}

ul {
  list-style: none;
}

.glowing-text {
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff, 0 0 80px #ff00ff, 0 0 120px #ff00ff; /* Configuración inicial del brillo */
  animation: glow 4s infinite alternate-reverse;
}

.section-title {
  color: white;
  font-size: 8rem;
}

.section-subtitle {
  color: white;
  font-size: 4rem;
  font-weight: 300;
}

.navbar {
  width: 100vw;
  height: 8rem;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  position: fixed;
  box-shadow: 0rem 0.5rem 2rem rgba(0, 0, 0, 0.2);
}
.navbar__logo-box {
  height: 100%;
  width: auto;
}
.navbar__image {
  height: 100%;
}
.navbar__menu-box {
  position: relative;
  color: black;
  height: 100%;
  width: 40rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.navbar__icon {
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-style: normal;
  text-decoration: none;
  list-style: none;
  border-style: double;
  border-width: 2px;
  border-color: transparent;
}
.navbar__icon:hover {
  color: #00adfc;
  border-bottom-color: #00adfc;
}
.navbar__button-box {
  height: 100%;
  width: 12rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.navbar__login-button {
  background-color: #00adfc;
  padding: 1rem 3rem;
  border-radius: 20px;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 0.3rem 0.7rem rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.navbar__login-button:hover {
  scale: 1.06;
}

.section {
  width: 90%;
  height: 110vh;
  background-color: white;
}
.section--1 {
  margin-top: 5rem;
}
.section__content {
  width: 100%;
  height: 100%;
  padding: 3rem 10rem;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__title {
  color: black;
  font-size: 5rem;
  margin-top: 10rem;
}
.section__subtitle {
  color: black;
  font-size: 3rem;
}
.section__text {
  font-size: 2rem;
  font-weight: 300;
  padding: 0 38rem;
}

.card {
  width: 100%;
  padding: 2rem 5rem;
  display: flex;
}

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