@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
:root {
  --fuenteTitulos: "Tektur", cursive;
}

/*┌───────────────────────────────────────────── ∘°Media Queries°∘ ─────────────────────────────────────────────┐*/
a {
  color: white;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  text-align: start;
  list-style: square;
  font-weight: 500;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #000 !important;
  min-width: 350px;
}

html {
  font-size: 62.5%;
}

@media (min-width: 1200px) {
  [index=index] {
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

p {
  color: white;
  margin: 0;
}

legend {
  font-size: 2rem;
}

label {
  display: block;
}

.no-margin {
  margin: 0rem !important;
}

.invisible {
  visibility: hidden;
}

.text-center {
  text-align: center !important;
}

.text-white {
  color: white !important;
}

@font-face {
  font-family: "Roboto-Regular"; /* Nombre de la fuente que usarás en CSS */
  src: url("fonts/Roboto-Regular.ttf") format("ttf"); /* Ruta al archivo de la fuente */
  font-weight: normal; /* Puedes especificar peso y estilo si la fuente tiene variantes */
  font-style: normal;
}
.color-code {
  color: #ff4e05;
}

/*┌───────────────────────────────────────────── ∘°Boostrap°∘ ─────────────────────────────────────────────┐*/
.h-80 {
  height: 80% !important;
}

.fw-bold {
  font-weight: bold !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-6 {
  margin-top: 6rem;
}

@media (min-width: 1200px) {
  .mt-xl-6 {
    margin-top: 6rem;
  }
}

.ml-1 {
  margin-left: 1rem;
}

.active {
  color: #ff4e05 !important;
  font-size: 2rem;
}
.active::before {
  content: "";
  background-color: #ff4e05 !important;
}

.k-form-container {
  width: 100%;
}
.k-form-container .k-form__division {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .k-form-container .k-form__division {
    flex-direction: row;
    gap: 1rem;
  }
}
.k-form-container .k-form__field {
  width: 100%;
  margin: 1rem 0;
}
.k-form-container .k-form__field label {
  color: black;
  font-size: 1.4rem;
  text-transform: uppercase;
  display: block;
}
.k-form-container .k-form__field input, .k-form-container .k-form__field select {
  width: 100%;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.k-form-container .k-form__field input:hover, .k-form-container .k-form__field select:hover {
  cursor: pointer;
}
.k-form-container .k-form__field input:focus, .k-form-container .k-form__field select:focus {
  opacity: 1;
}
.k-form-container .k-form__field .form-text-area {
  width: 100%;
  max-width: 100%;
  min-width: 50%;
  overflow: hidden;
  border-radius: 10px;
  height: 8rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 8rem;
  max-height: 10rem;
}

.cortina {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cortina img {
  z-index: 2;
  transition: opacity 0.5s ease-out; /* Controla la duración de la transición */
  opacity: 0;
  width: 40%;
}

.cortina span {
  position: absolute;
  top: 0;
  left: var(--direction);
  width: 50%;
  height: 100%;
  transition: 1s ease-in;
}
.cortina span:nth-child(2) {
  left: 100%;
}

.cortina.active img {
  opacity: 1;
}

.cortina-izquierda {
  background-image: url(../../img/cortina/cortina-1.png);
  background-size: cover;
  background-position: center right;
}

.cortina-derecha {
  background-image: url(../../img/cortina/cortina-2.png);
  background-size: cover;
  background-position: center left;
}

.cortina.active span {
  left: 0;
}
.cortina.active span:nth-child(2) {
  left: 50%;
}

.dev-info {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.5s;
}
@media (min-width: 768px) {
  .dev-info {
    font-size: 1.8rem;
  }
}

.cortina.active .dev-info {
  opacity: 1;
}

@media (min-width: 1200px) {
  .navbar {
    justify-content: space-between;
  }
}
.navbar .menu-container {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .navbar .menu-container {
    flex: unset;
  }
}
.navbar .menu-container .menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #111111;
  border-radius: 10px;
  margin: 0 1rem;
}
@media (min-width: 768px) {
  .navbar .menu-container .menu {
    justify-content: space-around;
  }
}
@media (min-width: 992px) {
  .navbar .menu-container .menu {
    background-color: inherit;
  }
}
@media (min-width: 1440px) {
  .navbar .menu-container .menu {
    margin-right: 9vw;
  }
}
.navbar .menu-container .menu li {
  color: white;
  font-size: 1.6rem;
  list-style: none;
  gap: 1rem;
  transition: 0.3s ease-in;
}
.navbar .menu-container .menu li:hover {
  color: #ff4e05;
}
@media (min-width: 992px) {
  .navbar .menu-container .menu li {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .navbar .menu-container .menu li {
    font-size: 2.8rem;
  }
}
.navbar .menu-container .menu li:nth-child(1), .navbar .menu-container .menu li:nth-child(2), .navbar .menu-container .menu li:nth-child(3), .navbar .menu-container .menu li:nth-child(4) {
  flex-basis: 45%;
  text-align: center;
  padding: 1rem;
}
@media (min-width: 768px) {
  .navbar .menu-container .menu li:nth-child(1), .navbar .menu-container .menu li:nth-child(2), .navbar .menu-container .menu li:nth-child(3), .navbar .menu-container .menu li:nth-child(4) {
    flex-basis: inherit;
  }
}
.navbar .logo img {
  width: 250px;
  max-width: 380px;
}
@media (min-width: 576px) {
  .navbar .logo img {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .navbar .logo img {
    margin-left: 9vw;
  }
}
@media (min-width: 1440px) {
  .navbar li {
    color: white;
    list-style: none;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
  }
  .navbar li::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -0.1rem;
    transform: translateX(-50%);
    background-color: transparent;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  .navbar li:hover {
    color: #ff4e05;
  }
  .navbar li:hover::after {
    background-color: #ff4e05;
  }
}

.hamburger {
  width: 40px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-right: 2rem;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #ff4e05;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Animación de la hamburguesa cuando está activa */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(13px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(13px, -5px);
}

.oculto {
  display: none;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 15dvh;
  padding: 1rem;
  margin-bottom: 14rem;
  height: calc(100dvh - 14rem);
}
@media (min-width: 1200px) {
  .title-container {
    height: auto;
  }
}
.title-container .title__titulo {
  color: white;
  font-size: clamp(2.8rem, 5vw, 8rem);
  text-align: center;
}
.title-container .title_description {
  font-size: clamp(2rem, 2vw, 3rem);
  color: white;
  text-align: center;
  margin-top: 3rem;
}
@media (min-width: 1200px) {
  .title-container .title_description {
    margin-top: 8rem;
  }
}
.title-container .future-container {
  color: white;
  font-size: 2rem;
  border: solid 3px #ff4e05;
  border-radius: 50px;
  margin-top: 2rem;
  display: flex;
  align-items: stretch;
  gap: 1rem;
  align-items: center;
  padding-left: 2rem;
}
@media (min-width: 1200px) {
  .title-container .future-container {
    margin-top: 8rem;
    font-size: 2.8rem;
  }
}
.title-container .future__button {
  background-color: #ff4e05;
  width: 80px;
  border-radius: 50px;
  margin-right: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-container .future__button img {
  width: 60px;
  padding: 0.5rem;
}

.typed-formato {
  color: #ff4e05;
}

.wsp__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0.1rem;
  position: fixed;
  top: 90%;
  right: 2rem;
  z-index: 10000;
  background: linear-gradient(45deg, #25d366, #128c7e);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
}
.wsp__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}
.wsp__icon:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 0 4px 15px rgba(18, 140, 126, 0.4);
  transform: scale(1.1);
}
.wsp__icon:hover::before {
  width: 120%;
  height: 120%;
  opacity: 0;
}
.wsp__icon img {
  width: 60%;
  height: 60%;
}

.paquetes__container {
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .paquetes__container {
    background-image: url("../../img/Elementos/Laptop.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    width: 100%;
    min-width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .paquetes__container {
    min-width: 900px;
  }
}
.paquetes__container .swiper-slide .card {
  width: 100%;
  height: 100%;
  border-radius: 20%;
  aspect-ratio: 1/2;
  background-color: whtie;
  min-width: 350px;
  max-width: 360px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 576px) {
  .paquetes__container .swiper-slide .card {
    min-width: 260px;
  }
}
.paquetes__container .swiper-slide .card p {
  font-size: 5rem;
  text-align: center;
  line-height: 6rem;
  margin-bottom: 7rem !important;
  font-weight: 500;
}
.paquetes__container .swiper-slide .card p span {
  display: block;
  font-size: 9rem;
}
.paquetes__container .swiper-slide .card--color__orange {
  background-color: #ff4e05;
}

.paquetes__text {
  font-size: clamp(2rem, 2vw, 3rem);
  text-align: center;
  font-weight: 600;
  margin-top: 12rem;
  padding: 0.5rem;
}
@media (min-width: 1200px) {
  .paquetes__text {
    margin-top: 6rem;
  }
}

.swiper {
  width: 50%;
  height: 400px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  font-size: 1.5rem;
  border-radius: 10px;
}

.alinear-prev {
  top: unset !important;
  width: 75px !important;
  height: 80px !important;
  background-color: #ff4e05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  color: white !important;
  font-weight: bolder;
  bottom: -10rem;
}
.alinear-prev::after {
  content: "" !important;
}
@media (min-width: 768px) {
  .alinear-prev {
    bottom: 5rem;
    left: calc(50% - 15rem) !important;
  }
}
@media (min-width: 1200px) {
  .alinear-prev {
    bottom: 7rem;
  }
}
.alinear-prev .swiper__arrow--izquierda {
  transform: rotate(90deg);
  z-index: 11;
}

.alinear-next {
  top: unset !important;
  width: 75px !important;
  height: 80px !important;
  background-color: #ff4e05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  color: white !important;
  font-weight: bolder;
  bottom: -10rem;
}
.alinear-next::after {
  content: "" !important;
}
@media (min-width: 768px) {
  .alinear-next {
    bottom: 5rem;
    right: calc(50% - 15rem) !important;
  }
}
@media (min-width: 1200px) {
  .alinear-next {
    bottom: 7rem;
  }
}
.alinear-next .swiper__arrow--derecha {
  transform: rotate(270deg);
  z-index: 11;
}

.pack__container__section {
  display: flex;
  display: block;
  margin: 0 auto;
  max-width: 500px;
}
@media (min-width: 1200px) {
  .pack__container__section {
    width: 100%;
    max-width: inherit;
  }
}

.necesidad-container {
  width: 100%;
}
.necesidad-container .necesidad__title__container {
  margin-top: 25vh;
  margin-bottom: 5rem;
}
.necesidad-container .necesidad__title__container .necesidad__title {
  font-size: clamp(2.8rem, 5vw, 8rem);
  color: #ff4e05;
  font-weight: 700;
  text-align: center;
  display: block;
}
.necesidad-container .necesidad__text {
  font-size: clamp(2rem, 2vw, 3rem);
  text-align: center;
  font-weight: 600;
}

.necesidad__hexagon__container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .necesidad__hexagon__container {
    gap: 2rem;
  }
}
.necesidad__hexagon__container .necesidad__hexagon {
  width: 50px;
  height: 35px;
  background-color: #ff4e05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
}
@media (min-width: 576px) {
  .necesidad__hexagon__container .necesidad__hexagon {
    width: 50px;
    height: 55px;
  }
}
.necesidad__hexagon__container p {
  font-size: 2.5rem;
}

.pack__container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  text-align: center;
  font-size: 1.5rem;
  gap: 3rem;
  padding: 1rem;
}
@media (min-width: 1200px) {
  .pack__container {
    gap: 10rem;
    font-size: 2.4rem;
  }
}
.pack__container span {
  font-weight: 700;
}
.pack__container .pack__circle {
  background-color: #FFFFFF;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pack__container .pack__circle:hover {
  border: 4px solid rgb(255, 255, 255); /* Bordecito principal */
  border-radius: 50%; /* Bordes redondeados */
  outline: 4px solid rgb(255, 0, 0); /* Bordecito exterior inicial */
  animation: animarBordeExterior 2s infinite; /* Anima el borde exterior */
}
@media (min-width: 1200px) {
  .pack__container .pack__circle {
    height: 170px;
    width: 170px;
  }
}
.pack__container .pack__circle img {
  width: 60%;
}

.necesidad__view {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .necesidad__view {
    flex-direction: row;
  }
}
.necesidad__view .view__container {
  width: 100%;
  color: white;
}
.necesidad__view .view__container:nth-child(2) {
  width: 70%;
}
.necesidad__view .view__container h3 {
  font-size: clamp(24px, 5vw, 40px);
  border: solid 3px red;
  display: inline-block;
  padding: 1rem 8rem 1rem 3rem;
  border-radius: 100px;
  margin-bottom: 5rem;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .necesidad__view .view__container h3 {
    width: unset;
  }
}
.necesidad__view .view__container ul {
  width: 80%;
}
.necesidad__view .view__container li {
  font-size: clamp(16px, 3vw, 20px); /* Escala entre 16px y 20px */
}
.necesidad__view .view__container li span {
  display: block;
  font-size: clamp(10px, 3vw, 14px);
}
.necesidad__view .view__container li::marker {
  color: #ff4e05;
}
.necesidad__view .view__container .container__img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.necesidad__view .view__container .container__img img {
  width: 50%;
  aspect-ratio: 1/1;
  max-width: 250px;
  min-width: 200px;
}
@media (min-width: 768px) {
  .necesidad__view .view__container .container__img img {
    min-width: inherit;
  }
}
.necesidad__view .view__container .container__img p {
  font-size: clamp(16px, 3vw, 20px);
  color: white;
}

.progress-bar__container {
  width: 100%;
  display: flex;
  padding: 0 1rem;
  justify-content: center;
  margin-top: 4rem;
}
@media (min-width: 1200px) {
  .progress-bar__container {
    padding: unset;
  }
}
.progress-bar__container .progress-bar_1 {
  border-radius: 10px;
  height: 10px;
  width: 80rem;
  background-color: #222220;
}
.progress-bar__container .progress-bar_1 .progress__avance {
  transition: 0.5s ease-out;
  border-radius: 10px;
  width: 0;
  height: 10px;
  background-color: color-mix(in srgb, #ff4e05 100%, black 60%);
  position: relative;
}

.progress__hexagono__container {
  width: 100%;
  justify-content: center;
  position: absolute;
  left: 95%;
  width: 30px;
  height: 35px;
  bottom: -1.5rem;
}
@media (min-width: 768px) {
  .progress__hexagono__container {
    bottom: -1.9rem;
    width: 40px;
    height: 45px;
  }
}
@media (min-width: 1200px) {
  .progress__hexagono__container {
    bottom: -2rem;
    width: 50px;
    height: 55px;
  }
}
.progress__hexagono__container .progress__hexagono {
  background-color: #ff4e05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
}
.progress__hexagono__container .progress__hexagono .progress__arrow {
  transform: rotate(180deg);
}

.necesidad__view {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50rem); /* Empieza 20px hacia abajo */
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s ease;
  position: absolute; /* Evita que ocupen espacio mientras están ocultos */
  aspect-ratio: 16/4;
}

.necesidad__view.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0rem); /* Vuelve a su posición original */
  position: relative; /* Recupera su posición en el flujo */
}

.test {
  overflow: hidden;
  position: relative;
}

.info__list span {
  display: block;
  padding-left: 4rem;
  font-weight: 700;
  text-align: start;
}

@keyframes animarBordeExterior {
  0% {
    outline-color: rgb(255, 0, 0); /* Rojo */
    box-shadow: 0 0 15px rgb(255, 0, 0);
  }
  33% {
    outline-color: rgb(0, 255, 0); /* Verde */
    box-shadow: 0 0 15px rgb(0, 255, 0);
  }
  66% {
    outline-color: rgb(0, 0, 255); /* Azul */
    box-shadow: 0 0 15px rgb(0, 0, 255);
  }
  100% {
    outline-color: rgb(255, 0, 0); /* Regresa a rojo */
    box-shadow: 0 0 15px rgb(255, 0, 0);
  }
}
.presencia-container {
  background-color: #222220;
  display: flex;
  flex-direction: column;
  margin-top: 8rem;
  padding: 5rem 0;
}
@media (min-width: 1200px) {
  .presencia-container {
    flex-direction: row;
  }
}
.presencia-container .presencia__text {
  width: 100%;
  text-align: center;
}
@media (min-width: 1200px) {
  .presencia-container .presencia__text {
    width: 50%;
    text-align: start;
    margin-left: 10vw;
    margin-top: 15rem;
  }
}
.presencia-container .presencia__text .presencia__text__title {
  font-size: clamp(2.8rem, 5vw, 8rem);
  font-weight: 700;
  color: #ff4e05;
  line-height: 5rem;
}
@media (min-width: 1200px) {
  .presencia-container .presencia__text .presencia__text__title {
    line-height: 10rem;
  }
}
.presencia-container .presencia__text .presencia__text__title span {
  display: block;
}
.presencia-container .presencia__mockup {
  width: 100%;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  .presencia-container .presencia__mockup {
    width: 40%;
  }
}
.presencia-container .presencia__mockup .mockup__img {
  width: 100%;
  max-width: 630px;
  max-height: 400px;
}
@media (min-width: 1200px) {
  .presencia-container .presencia__mockup .mockup__img {
    max-width: inherit;
    transform: translateX(-18rem);
    margin-top: 7rem;
    min-width: 630px;
  }
}
@media (min-width: 1440px) {
  .presencia-container .presencia__mockup .mockup__img {
    max-width: inherit;
    transform: translateX(-22rem);
    margin-top: 7rem;
    min-width: 800px;
    max-height: 600px;
  }
}

.presencia__button__container {
  color: white;
  font-size: 2rem;
  border: solid 3px #ff4e05;
  border-radius: 50px;
  margin-top: 2rem;
  display: inline-flex;
  align-items: stretch;
  gap: 1rem;
  align-items: center;
  padding-left: 2rem;
}
@media (min-width: 1200px) {
  .presencia__button__container {
    margin-top: 3rem;
    font-size: 2.8rem;
  }
}

.presencia__button {
  background-color: #ff4e05;
  width: 80px;
  border-radius: 50px;
  margin-right: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.presencia__button img {
  width: 60px;
  padding: 0.5rem;
}

@media (min-width: 992px) {
  .contacto_section {
    background-image: url(../../../img/contacto/codemaster-contacto.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100dvh;
  }
}
@media (min-width: 1440px) {
  .contacto_section {
    height: 100dvh;
  }
}

.contacto__container {
  background-color: #ff4e05;
  font-size: 1.6rem;
  height: 100%;
  padding: 5rem 0.5rem;
}
@media (min-width: 992px) {
  .contacto__container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10%;
    width: 70%;
    position: relative;
    right: 0;
    align-items: center;
    height: 85%;
    border-radius: 50px;
    padding: 2rem;
  }
}
@media (min-width: 1440px) {
  .contacto__container {
    right: 7%;
  }
}
@media (min-width: 576px) {
  .contacto__container .contacto__inputs {
    margin: 0 10%;
  }
}
@media (min-width: 768px) {
  .contacto__container .contacto__inputs {
    margin: 0 15%;
  }
}
@media (min-width: 992px) {
  .contacto__container .contacto__inputs {
    margin: unset;
  }
}
.contacto__container .contacto__inputs label {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 30px);
  color: white;
  display: block;
}
@media (min-width: 1200px) {
  .contacto__container .contacto__inputs label {
    text-align: start;
  }
}
.contacto__container .contacto__inputs h4 {
  font-size: 5rem;
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(5rem, 5vw, 20rem);
}
@media (min-width: 1200px) {
  .contacto__container .contacto__inputs h4 {
    text-align: start;
  }
}
.contacto__container .contacto__inputs input {
  width: 100%;
  height: 4rem;
  border: none;
}
@media (min-width: 1200px) {
  .contacto__container .contacto__inputs input {
    height: 8rem;
    font-size: 2rem;
    padding-left: 1rem;
  }
}
@media (min-width: 992px) {
  .contacto__container .contacto__inputs input {
    height: 6rem;
  }
}
.contacto__container .contacto__inputs input::placeholder {
  color: #191919;
  font-weight: 700;
}
@media (min-width: 1440px) {
  .contacto__container .contacto__inputs input::placeholder {
    font-size: 2rem;
    font-weight: 600;
  }
}
.contacto__container .contacto__inputs textarea {
  width: 100%;
  height: 100%;
  min-height: 5rem;
  max-height: 100px;
  font-size: 1.6rem;
  border: none;
  position: relative;
}
@media (min-width: 1440px) {
  .contacto__container .contacto__inputs textarea {
    height: 18rem;
    max-height: 300px;
    font-size: 2rem;
    padding-left: 1rem;
  }
}
.contacto__container .contacto__inputs textarea::placeholder {
  color: #191919;
  font-weight: 700;
}
@media (min-width: 1440px) {
  .contacto__container .contacto__inputs textarea::placeholder {
    font-size: 2rem;
    font-weight: 600;
  }
}
.contacto__container .contacto__inputs .input__flex {
  display: flex;
  gap: 2rem;
}
.contacto__container .contacto__inputs .input__flex .form-group {
  width: 100%;
}
.contacto__container .contacto__redes {
  display: flex;
  flex-direction: column;
}
.contacto__container .contacto__redes p {
  text-align: center;
}
@media (min-width: 1200px) {
  .contacto__container .contacto__redes p {
    font-size: 2.2rem;
  }
}
.contacto__container .contacto__redes p span {
  font-weight: 700;
}
@media (min-width: 1200px) {
  .contacto__container .contacto__redes p span {
    font-size: 2.2rem;
  }
}
.contacto__container .contacto__redes .redes__logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contacto__container .contacto__redes .redes__logo img {
  width: 100%;
  max-width: 250px;
}
@media (min-width: 1200px) {
  .contacto__container .contacto__redes .redes__logo img {
    max-width: 300px;
  }
}
.contacto__container .contacto__redes .redes__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.contacto__container .contacto__redes .redes__links a {
  text-decoration: none;
  color: white;
  border: solid 2px white;
  padding: 0.6rem 2rem;
  border-radius: 50px;
}
.contacto__container .contacto__redes .redes__links a:hover {
  background-color: red;
}
.contacto__container .contacto__redes .redes__correo {
  line-height: 1rem;
}

.formulario {
  position: relative;
  margin-bottom: 5rem;
}
.formulario .form__send {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -4rem;
  background-color: #191919;
  color: white;
  border-radius: 50px;
  padding: 1rem 5rem;
  border: none;
  font-size: 2rem;
}
@media (min-width: 1200px) {
  .formulario .form__send {
    bottom: -1.5rem;
  }
}

.footer {
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1d1d1b;
  margin-top: 2rem;
  text-align: center;
  flex-direction: column;
  padding: 0.5rem;
}
.footer p {
  font-size: clamp(2rem, 2vw, 2rem);
}
.footer .icon__tamaño {
  padding: 1rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .icon__tamaño img {
  width: 20px;
}

.pag__info span {
  font-weight: 900;
  color: #ff4e05;
}

.floating-button {
  position: fixed;
  right: -70px; /* Comenzamos fuera de la pantalla */
  top: 80%;
  width: 50px;
  height: 50px;
  background-color: #ff4e05;
  color: white;
  border: solid 1px #191919;
  border-radius: 10px;
  cursor: pointer;
  display: block; /* Cambiamos a block para que la transición funcione */
  transition: all 0.3s ease;
  padding: 12px;
}

.floating-button.show {
  right: 20px; /* Posición final cuando está visible */
}

.floating-button:hover {
  background-color: white;
  transform: translateY(-3px);
}
.floating-button:hover svg {
  fill: black;
}

.floating-button svg {
  fill: white;
}

.mini__nav {
  width: 100%;
  background-color: #191919;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 576px) {
  .mini__nav {
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0 3rem;
  }
}
@media (min-width: 992px) {
  .mini__nav {
    padding: 0 10rem;
  }
}
.mini__nav .mini__img {
  width: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
@media (min-width: 576px) {
  .mini__nav .mini__img {
    width: auto;
    flex-grow: unset;
  }
}
.mini__nav .mini__img a img {
  height: 5rem;
}

.mininav__links {
  display: flex;
  font-size: 1.8rem;
  gap: 5rem;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}
@media (min-width: 576px) {
  .mininav__links {
    gap: 2rem;
    width: auto;
  }
}
.mininav__links a {
  text-decoration: none;
  color: white;
  position: relative;
}
.mininav__links a::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 0;
  animation: width-links-reverse 0.3s forwards; /* Estado inicial */
}
.mininav__links a:hover::before {
  animation: width-links 0.3s forwards; /* Estado al hacer hover */
}

@keyframes width-links {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes width-links-reverse {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
/* CSS */
.nosotros__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
  margin-top: 10rem;
}
.nosotros__wrapper .somos__container {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans", sans-serif;
  width: 100%;
}
@media (min-width: 1200px) {
  .nosotros__wrapper .somos__container {
    width: 1024px;
    flex-direction: row;
  }
  .nosotros__wrapper .somos__container:not(:first-child) {
    margin-top: 25rem;
  }
}
.nosotros__wrapper .somos__container .somos__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
  flex: 0 0 50%;
  border-radius: 16px;
  background-color: white;
  padding: 5rem;
  transform: translate(0, 5rem);
  margin: 2rem;
}
@media (min-width: 1200px) {
  .nosotros__wrapper .somos__container .somos__texts {
    transform: translate(5rem, -3rem);
    margin: unset;
  }
}
.nosotros__wrapper .somos__container .somos__texts p {
  color: #000;
  margin-top: 1rem;
}
.nosotros__wrapper .somos__container .somos__texts .texts__title {
  font-size: 4rem;
  font-weight: bold;
}
.nosotros__wrapper .somos__container .somos__img {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex: 0 0 60%;
  width: 100%;
}
@media (min-width: 1200px) {
  .nosotros__wrapper .somos__container .somos__img {
    width: 644px;
    max-height: 512px;
  }
}
@media (min-width: 1200px) {
  .nosotros__wrapper .somos__container .somos__img img {
    transform: scale(0.8);
  }
}

.hacemos__container {
  flex-direction: column-reverse !important;
}
@media (min-width: 1200px) {
  .hacemos__container {
    margin-left: 30rem;
    flex-direction: row-reverse !important;
  }
}
@media (min-width: 1200px) {
  .hacemos__container .somos__texts {
    transform: translate(-5rem, -3rem) !important;
    margin: unset;
  }
}
.hacemos__container .somos__texts .hacemos__list {
  height: 350px;
  overflow-y: scroll;
  padding-right: 1rem;
  /* Fondo de la barra de desplazamiento */
  /* La barra de desplazamiento en sí */
  /* Cuando pasas el mouse sobre la barra */
}
.hacemos__container .somos__texts .hacemos__list li:first-child {
  margin-top: 1rem;
}
.hacemos__container .somos__texts .hacemos__list li:not(:last-child) {
  margin-bottom: 1rem;
}
.hacemos__container .somos__texts .hacemos__list::-webkit-scrollbar {
  width: 10px; /* Ancho de la barra */
}
.hacemos__container .somos__texts .hacemos__list::-webkit-scrollbar-track {
  background: #c1c1c1; /* Color del fondo */
  border-radius: 10px;
}
.hacemos__container .somos__texts .hacemos__list::-webkit-scrollbar-thumb {
  background: #ff4e05; /* Color de la barra */
  border-radius: 10px; /* Bordes redondeados */
  min-height: 200px;
}
.hacemos__container .somos__texts .hacemos__list::-webkit-scrollbar-thumb:hover {
  background-color: rgb(209, 61.028, 0);
}
.hacemos__container .somos__img img {
  transform: scale(0.5) !important;
}

.elegirnos__container .elegirnos__list {
  height: 350px;
  overflow-y: scroll;
  padding-right: 1rem;
  /* Fondo de la barra de desplazamiento */
  /* La barra de desplazamiento en sí */
  /* Cuando pasas el mouse sobre la barra */
}
.elegirnos__container .elegirnos__list li:first-child {
  margin-top: 1rem;
}
.elegirnos__container .elegirnos__list li:not(:last-child) {
  margin-bottom: 1rem;
}
.elegirnos__container .elegirnos__list::-webkit-scrollbar {
  width: 10px; /* Ancho de la barra */
}
.elegirnos__container .elegirnos__list::-webkit-scrollbar-track {
  background: #c1c1c1; /* Color del fondo */
  border-radius: 10px;
}
.elegirnos__container .elegirnos__list::-webkit-scrollbar-thumb {
  background: #ff4e05; /* Color de la barra */
  border-radius: 10px; /* Bordes redondeados */
  min-height: 200px;
}
.elegirnos__container .elegirnos__list::-webkit-scrollbar-thumb:hover {
  background-color: rgb(209, 61.028, 0);
}

.paquetes__code__container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.paquetes__code__container p {
  font-size: 1.8rem;
  display: block;
  margin: auto;
}
@media (min-width: 768px) {
  .paquetes__code__container p {
    width: 700px;
  }
}
.paquetes__code__container .code__paquetes {
  color: white;
  padding: 5rem 0 2rem 0;
  font-size: 4rem;
  font-size: 5em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px white;
  text-shadow: 0 0 0 #fff;
  transition: all 250ms;
  display: inline-block;
}
.paquetes__code__container .code__paquetes:hover {
  text-shadow: 4px 4px 0 #ff4e05;
  transform: translate(-3px, -3px);
}

.nosotros__container {
  width: 100%;
  font-family: Inter, Helvetica, sans-serif;
}
.nosotros__container h3 {
  color: #FFF;
  font-size: 2.4rem;
  margin: 0;
}
.nosotros__container li {
  color: #FFF;
  font-size: 1.6rem;
  list-style: none;
  margin: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nosotros__container p {
  font-size: 1.8rem;
}

.paquetes__marketing__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 15rem 0;
}

.marketing__wrapper {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  row-gap: 10rem;
}
.marketing__wrapper p {
  margin: 0;
}
.marketing__wrapper .marketing__card {
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .marketing__wrapper .marketing__card {
    width: 400px;
  }
}
.marketing__wrapper .marketing__card .card__header-m {
  border: solid 3px #ff4e05;
  font-size: 3rem;
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0.3rem 0.3rem 2rem;
  border-radius: 32px;
  background-color: white;
}
.marketing__wrapper .marketing__card .card__header-m p {
  margin: 0;
  color: black;
}
.marketing__wrapper .marketing__card .card__header-m .card-m__voz {
  width: 100px;
  background-color: #ff4e05;
  border-radius: 32px;
  height: 50px;
}
.marketing__wrapper .marketing__card .card-m__body {
  margin-top: 3rem;
  position: relative;
  background-color: #191919;
  list-style: none;
  border-radius: 32px;
  padding: 2rem 1rem 4rem 1rem;
  border: solid 1px rgba(255, 255, 255, 0.2);
}
.marketing__wrapper .marketing__card .card-m__body ul span {
  margin-right: 1rem;
}
.marketing__wrapper .marketing__card .card-m__body ul .precio__list {
  margin-left: 3rem;
  border-radius: 0 32px 32px 32px;
  padding: 0.3rem 1rem;
  color: white;
  font-weight: bold;
  background: linear-gradient(to right, #ff6a00, #FF9E3D);
}
.marketing__wrapper .marketing__card .card-m__body li {
  list-style: none;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
}
.marketing__wrapper .marketing__card .card-m__body li:last-child {
  margin-bottom: 10rem;
  flex-wrap: wrap;
}
.marketing__wrapper .marketing__card .card-m__body .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  color: #ff4e05;
}
.marketing__wrapper .marketing__card .card-m__price {
  display: flex;
  font-weight: 500;
  font-size: 3rem;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
.marketing__wrapper .marketing__card .card-m__price .price__container {
  background-color: #ff4e05;
  border-radius: 64px;
  position: absolute;
  bottom: -2.5rem;
  width: 70%;
  line-height: 2.5rem;
}
.marketing__wrapper .marketing__card .card-m__price .price__container a {
  width: 100%;
  display: flex;
  height: 6rem;
  align-items: center;
  justify-content: center;
}
.marketing__wrapper .marketing__card .card-m__price .price__container:hover {
  background-color: rgb(209, 61.028, 0);
}
.marketing__wrapper .marketing__card .card-m__price .price__container:active {
  transform: scale(1.05);
}
.marketing__wrapper .marketing__card .card-m__price .price__iva {
  color: #ff4e05;
  font-size: 1.5rem;
  position: absolute;
  bottom: -7.5%;
  right: 0;
  font-weight: 900;
}
.marketing__wrapper .marketing__card .card-m__price .contrato__tri {
  position: absolute;
  bottom: -6rem;
  font-size: 1.6rem;
}

.icons__body {
  position: absolute;
  width: 100px;
  height: 25px;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}
.icons__body img {
  width: 100%;
  height: 100%;
}
.icons__body .icon__tamaño-m {
  background-color: #ff4e05;
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icons__body .icon__tamaño-m img {
  filter: invert(1);
}

.notfound__container {
  width: 100%;
  background-color: white;
}

.notfound__wrapper {
  width: fit-content;
  display: flex;
  flex-direction: column;
  color: #686868;
  padding: 1rem;
  height: calc(100dvh - 5rem);
  display: block;
  margin: auto;
}
@media (min-width: 992px) {
  .notfound__wrapper {
    padding-top: 2%;
  }
}
.notfound__wrapper .notfound_title {
  text-align: center;
  font-size: 6rem;
  font-weight: 100;
}
@media (min-width: 992px) {
  .notfound__wrapper .notfound_title {
    font-size: 8rem;
    text-align: start;
  }
}
.notfound__wrapper .notfound_text {
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .notfound__wrapper .notfound_text {
    text-align: start;
  }
}
.notfound__wrapper .notfound__redireccion {
  font-size: 2rem;
  margin-top: 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  .notfound__wrapper .notfound__redireccion {
    text-align: start;
  }
}
.notfound__wrapper .notfound__redireccion a {
  color: #3E97FF;
  display: block;
}
@media (min-width: 992px) {
  .notfound__wrapper .notfound__redireccion a {
    display: inline-block;
  }
}
.notfound__wrapper .code__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .notfound__wrapper .code__container {
    margin-top: 5rem;
    flex-direction: row;
    align-items: baseline;
  }
}
.notfound__wrapper .code__container img {
  width: 100%;
  max-width: 250px;
}
@media (min-width: 992px) {
  .notfound__wrapper .code__container img {
    max-width: 300px;
  }
}
.notfound__wrapper .code__container h4 {
  font-size: 2rem;
  margin-top: 2rem;
}

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