@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap");
header {
  position: absolute; /* Posiciona el header en la parte superior de la página */
  top: 0; /* Alinea al borde superior */
  left: 0; /* Alinea al borde izquierdo */
  width: 100%; /* Hace que el header abarque todo el ancho */
  display: flex;
  justify-content: center; /* Alinea el contenido a la izquierda */
  align-items: center; /* Alinea verticalmente en el centro */
  padding: 1rem 0rem; /* Ajusta el padding según necesites */
  z-index: 10; /* Asegura que el header esté por encima del contenido */
}

.logo img {
  height: 3rem;
  margin: 0; /* Elimina cualquier margen adicional */
}

@media (max-width: 900px) {
  header {
    display: flex;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 1rem;
    padding: 2rem 0;
  }
  header .logo img {
    height: 3rem;
    text-align: center;
  }
}
/* Estilos generales para la sección VSL */
.vsl {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0rem 10rem;
  height: 100vh;
  background-image: linear-gradient(to bottom, rgba(34, 32, 31, 0) 10%, #22201f 100%), url(../images/MIOlaw1.webp);
  background-size: cover;
  /* Asegura que la imagen cubra todo el contenedor */
  background-position: center;
  /* Centra la imagen */
}

/* Estilos para el contenedor de texto VSL */
.textVSL {
  width: 100%;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
}

.subtextIntro {
  color: white;
  text-align: center;
  padding: 2rem 0rem;
  font-size: 1rem;
}

/* Estilos para los títulos */
.TituloVSL {
  color: white;
  font-weight: 600;
  font-size: 6rem !important;
  margin-bottom: 0;
  margin: 0;
  padding: 0;
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.803));
}

/* Estilos para las palabras destacadas en dorado */
.textVSL span {
  color: #d6b26a;
  background: -webkit-linear-gradient(146deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Estilos para el subtítulo */
.Subtitle {
  font-size: 2rem;
  color: #d6b26a;
  background: -webkit-linear-gradient(146deg, rgb(255, 233, 152) 0%, rgb(213, 189, 117) 8%, rgb(217, 152, 67) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.803));
  font-weight: 600;
}

#MobileOut {
  margin: 0;
  padding: 0 20rem;
  font-size: 2.5rem;
  text-align: center;
  color: rgb(221, 215, 215);
}

#MobileOut .descriptionHighlight {
  color: #d6b26a;
  background: -webkit-linear-gradient(146deg, rgb(255, 233, 152) 0%, rgb(213, 189, 117) 8%, rgb(217, 152, 67) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.803));
  font-weight: 500;
}

#BotonContainer {
  margin: 0.5rem 0;
  gap: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}

.ButtonsTextContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.textButtons {
  font-size: 1rem;
  text-align: center;
  color: rgb(221, 215, 215);
}

/* Estilos de los botones */
.button {
  padding: 18px 40px;
  border: none;
  margin-top: 2rem;
  outline: none;
  font-family: "Poppins", sans-serif;
  background-color: #ededed;
  color: black;
  border-radius: 9px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease-out;
  /* Animación de sacudida con ciclo de 5 segundos y descanso de 15 segundos */
  /* Comienza inmediatamente */
}

/* Estilos hover */
.button:hover {
  transform: translateY(-3px);
}

.button-span {
  color: #5c5a5a;
}

/* Animación de sacudida usando rotación */
@keyframes shakeRotation {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-1.5deg);
  }
  20% {
    transform: rotate(1.5deg);
  }
  30% {
    transform: rotate(-1.5deg);
  }
  40% {
    transform: rotate(1.5deg);
  }
  50% {
    transform: rotate(-1.5deg);
  }
  60% {
    transform: rotate(1.5deg);
  }
  70% {
    transform: rotate(-1.5deg);
  }
  80% {
    transform: rotate(1.5deg);
  }
  90% {
    transform: rotate(-1.5deg);
  }
}
/* Ajustes para pantallas pequeñas */
@media (max-width: 1000px) {
  /* Estilos generales para la sección VSL */
  .vsl {
    display: flex;
    flex-direction: column;
    /* Cambia la dirección del flex a columna */
    align-items: center;
    padding: 0rem 0rem;
    /* Aleja los textos */
    background-image: linear-gradient(to bottom, rgba(34, 32, 31, 0) 10%, #22201f 100%), url(../images/MIOlaw1.webp);
    background-size: cover;
    /* Asegura que la imagen cubra todo el contenedor */
    background-position: center;
    /* Centra la imagen */
    height: 95vh;
    position: relative;
  }
  /* Estilos para el contenedor de texto VSL */
  .textVSL {
    width: auto;
    padding: 0rem;
    text-align: center;
    /* Centra el texto */
    padding-top: 0;
    /* Asegura que el texto esté debajo de la imagen */
    max-width: 100%;
  }
  .subtextIntro {
    color: white;
    position: absolute;
    text-align: center;
    bottom: 20px;
    font-size: 0.9rem;
  }
  /* Estilos para los títulos */
  .TituloVSL {
    padding: 0;
    font-size: 2.8rem !important;
  }
  .textVSL span {
    color: white;
    background: -webkit-linear-gradient(146deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgb(254, 254, 254) 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* Estilos para el subtítulo */
  .Subtitle {
    font-size: 2rem;
    display: none;
  }
  #MobileOut {
    padding: 0 2rem;
    font-size: 1.5rem;
    text-align: center;
    color: white;
    padding-bottom: 1.5rem;
  }
  #BotonContainer {
    margin: 0.5rem 0;
    gap: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
  .textButtons {
    font-size: 1rem;
    padding: 0 2rem;
  }
  /* Contenedor de los botones */
  #BotonContainer {
    margin: 0;
    justify-content: center;
    align-items: center;
    gap: 20px;
    display: flex;
    flex-direction: row;
    position: relative;
  }
  /* Estilos de los botones */
  .button {
    padding: 15px 30px;
    border: none;
    margin-top: 0rem;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease-out;
  }
  .button:hover {
    transform: translateY(-3px);
  }
  .button-span {
    color: #5c5a5a;
  }
  /* Contenedor de la imagen de Ahmed y su hermano */
  .ahmedYhermano {
    position: absolute;
    top: 90px;
    /* Ajusta la posición para que esté arriba del texto */
    right: 35px;
    /* Ajusta la posición desde la derecha en pantallas pequeñas */
    width: 80%;
    /* Ajusta el ancho de la imagen para que ocupe todo el contenedor */
  }
  .ahmedYhermano img {
    height: 180px;
    /* Ajusta la altura de la imagen en pantallas pequeñas */
    width: 98%;
    /* Asegura que la imagen ocupe el ancho completo */
    -o-object-fit: cover;
       object-fit: cover;
    /* Mantiene la proporción de la imagen */
    border-bottom: 7px #d6b26a solid;
  }
}
/* Ajustes para pantallas pequeñas */
@media (min-width: 1100px) and (max-width: 1450px) {
  /* Estilos generales para la sección VSL */
  .vsl {
    display: flex;
    flex-direction: column;
    /* Cambia la dirección del flex a columna */
    align-items: center;
    padding: 0rem 0rem;
    /* Aleja los textos */
    background-image: linear-gradient(to bottom, rgba(34, 32, 31, 0) 10%, #22201f 100%), url(../images/MIOlaw1.webp);
    background-size: cover;
    /* Asegura que la imagen cubra todo el contenedor */
    background-position: center;
    /* Centra la imagen */
    height: 100vh;
    position: relative;
  }
  /* Estilos para el contenedor de texto VSL */
  .textVSL {
    width: 100%;
    text-align: center;
    /* Centra el texto */
    padding-top: 0;
    /* Asegura que el texto esté debajo de la imagen */
  }
  /* Estilos para los títulos */
  .TituloVSL {
    padding: 2rem 1rem;
    font-size: 4rem !important;
  }
  .textVSL span {
    color: white;
    background: -webkit-linear-gradient(146deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgb(254, 254, 254) 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* Estilos para el subtítulo */
  .Subtitle {
    font-size: 2rem;
    display: none;
  }
  #MobileOut {
    padding: 0 2rem;
    font-size: 1.5rem;
    text-align: center;
    color: white;
  }
  /* Contenedor de los botones */
  #BotonContainer {
    margin: 0.5rem 0;
    gap: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
  .ButtonsTextContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  /* Estilos de los botones */
  .button {
    padding: 15px 30px;
    border: none;
    margin-top: 1rem;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease-out;
  }
  .button:hover {
    transform: translateY(-3px);
  }
  .button-span {
    color: #5c5a5a;
  }
}
.AboutContainer {
  width: auto;
  margin: 0 auto;
  padding: 0 10rem;
  display: grid;
  justify-content: center;
  margin: 0 auto;
  justify-items: center;
  color: white;
  align-items: center;
  grid-template-areas: "about info info" "stats stats stats";
}
.AboutContainer .AboutUsTitle {
  display: flex;
  grid-area: about;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 5rem;
}
.AboutContainer .AboutUsTitle .TituloAbout {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  color: white;
  margin: 0;
  padding: 0;
  font-family: "Bebas Neue", sans-serif;
}
.AboutContainer .bloque2 {
  width: 80%;
  font-size: 1.3rem;
  text-align: left;
  font-weight: 300;
  margin-left: 30px;
  grid-area: info;
  padding: 40px;
  color: rgb(198, 194, 194);
}
.AboutContainer .bloque3 {
  border: 2px rgba(205, 199, 199, 0.1) solid;
  border-radius: 20px;
  display: flex;
  grid-area: stats;
  width: 90%;
}
.AboutContainer .bloque3 .bloque {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding-right: 0px;
  padding-left: 1.5rem;
  /* Ajusta el padding según sea necesario */
  border-right: 2px rgba(205, 199, 199, 0.1) solid;
  justify-content: center;
}
.AboutContainer .bloque3 .bloque:last-child {
  /* Aplica estilos al último elemento .bloque dentro de .bloque3 */
  border-right: none;
}
.AboutContainer .bloque3 .bloque .tituloStats {
  font-size: 3.5rem;
  color: rgb(214, 178, 106);
  background: -webkit-linear-gradient(10deg, rgb(255, 233, 152) 0%, rgb(213, 189, 117) 8%, rgb(113, 73, 20) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  /* Separación entre el título y el párrafo */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.AboutContainer .bloque3 .bloque .DescriptionStats {
  font-size: 1.3rem;
  color: rgb(255, 255, 255);
  padding-bottom: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.lineHorizontalPractice {
  margin: 0 auto;
  margin-top: 3rem;
  width: 80%;
  border-top: 1px rgb(124, 118, 118) solid;
}

@media (max-width: 900px) {
  .AboutContainer {
    gap: 0;
    width: auto;
    margin: 0;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
  }
  .AboutContainer .AboutUsTitle {
    margin: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .AboutContainer .AboutUsTitle .TituloAbout {
    padding: 0;
    height: auto;
    margin: 0;
    font-size: 2.8rem;
  }
  .AboutContainer .bloque2 {
    width: auto;
    font-size: 1rem;
    text-align: center;
    font-weight: 300;
    margin-left: 0;
    color: rgb(198, 194, 194);
    padding: 0 2rem;
  }
  .AboutContainer .bloque3 {
    border: 2px rgba(205, 199, 199, 0.1) solid;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    width: 90%;
  }
  .AboutContainer .bloque3 .bloque {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding-right: 0;
    padding-left: 0;
    /* Ajusta el padding según sea necesario */
    border-bottom: 2px rgba(205, 199, 199, 0.1) solid;
    justify-content: center;
  }
  .AboutContainer .bloque3 .bloque:first-child {
    /* Aplica estilos al último elemento .bloque dentro de .bloque3 */
    border-right: none;
  }
  .AboutContainer .bloque3 .bloque:last-child {
    /* Aplica estilos al último elemento .bloque dentro de .bloque3 */
    border-bottom: none;
  }
  .AboutContainer .bloque3 .bloque:nth-child(2) {
    border-right: none;
  }
  .AboutContainer .bloque3 .bloque .tituloStats {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
    /* Separación entre el título y el párrafo */
  }
  .AboutContainer .bloque3 .bloque .DescriptionStats {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}
.AboutAhmed {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "titulo titulo" "socials socials" "pictures textAhmed";
}

.tituloAboutAhmed {
  grid-area: titulo;
  text-align: center;
  font-size: 2.5rem;
  color: white;
}

.ProfileContainer {
  display: flex;
}

.profilePicture {
  grid-area: picture;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));
  height: 35vw;
  margin-right: 3rem;
}

.descriptionAhmed {
  grid-area: textAhmed;
  color: white;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  padding: 0 3rem;
  justify-content: center;
  text-align: left;
}

.descriptionAhmed .textDescription {
  align-items: center;
  font-weight: 300;
}

.card {
  grid-area: socials;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem 1rem 2rem;
  gap: 50px;
  margin: auto;
  border-radius: 10px;
}

.card .socialContainer {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
}

.card .socialContainer:hover {
  transform: scale(1.1) translateY(-3px);
}

.card .socialContainer:active {
  transform: scale(0.9);
}

.card .socialContainer .socialSvg {
  width: 17px;
}

.card .socialContainer .socialSvg path {
  fill: rgb(255, 255, 255);
}

.card .socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

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

.viewsBloque .viewsText {
  padding: 30px;
  color: #d6b26a;
  background: -webkit-linear-gradient(146deg, rgb(177, 148, 42) 0%, rgb(222, 196, 196) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: 800;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.viewsBloque .viewsText span {
  font-weight: 800;
}

.viewsBloque .vl {
  border-left: 1.5px solid rgb(152, 149, 149);
  height: 3.5rem;
}

.FotoTikTok {
  width: 100%;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Responsive Design for screens <= 900px */
@media (max-width: 900px) {
  .AboutAhmed {
    display: flex;
    flex-direction: column;
    padding: 0rem;
    justify-content: center;
    width: 90%;
  }
  .tituloAboutAhmed {
    font-size: 1.1rem;
  }
  .ProfileContainer {
    display: flex;
  }
  .profilePicture {
    height: 90vw;
    margin: 0 auto;
    text-align: center;
  }
  .descriptionAhmed {
    width: auto;
    padding: 1rem;
    font-size: 1rem;
    float: none;
  }
  .FotoTikTok {
    width: 45%;
  }
  .card {
    padding: 1rem;
    gap: 20px;
  }
  .card .socialContainer {
    width: 30%;
    height: auto;
  }
  .card .socialContainer:hover,
  .card .socialContainer:active {
    transform: none;
  }
  .viewsBloque .viewsText {
    text-align: center;
    padding: 0 0.5rem;
    font-size: 1rem;
  }
}
/* Estilos para MacBook Air (screens between 1280px and 1440px) */
@media only screen and (min-width: 1280px) and (max-width: 1440px) {
  .AboutAhmed {
    padding: 0 10rem;
    width: 80%;
    margin: 0 auto;
  }
  .ProfileContainer {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .profilePicture {
    height: 85%;
    margin-right: 3rem;
  }
  .descriptionAhmed {
    font-size: 1rem;
    padding: 1rem;
  }
  .descriptionAhmed .btnAhmed {
    margin-top: 2rem;
    height: 3.5rem;
  }
  .descriptionAhmed .btnAhmed span a {
    font-weight: 700;
    font-size: 1rem;
  }
}
.BenefitsSection {
  display: flex;
  padding: 0 9rem;
  margin-bottom: 1rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.BenefitsSection .titleBenefit {
  font-size: 3.4rem;
  margin: 0;
  margin-top: 2rem;
  font-weight: 500;
  color: white;
  font-family: "Bebas Neue", sans-serif;
}

.BenefitsSection .descriptionBenefit {
  font-size: 1.3rem;
  color: rgb(203, 198, 198);
  margin: 1rem 0;
}

.BenefitsSection .containerBenefit {
  display: flex;
  padding: 2rem;
  color: black;
  gap: 2rem;
  max-width: 100%;
}

.BenefitsSection .containerBenefit .benefitBox {
  color: #49505A;
  background-color: #dcdcdc;
  border-radius: 1.3rem;
  transition: all 0.2s ease;
  width: 390px;
  height: 250px;
  padding: 2.2rem 1.5rem;
  box-shadow: 5px 5px 20px rgba(50, 50, 50, 0.4196078431);
}

.BenefitsSection .containerBenefit .benefitBox img {
  width: 15%;
  padding-top: 1.5rem;
}

.BenefitsSection .containerBenefit .benefitBox:hover {
  transform: translateY(-3px);
}

.lineHorizontalNetwork {
  margin: 3rem auto 0;
  width: 80%;
  border-top: 1px solid rgb(124, 118, 118);
}

.TitleCardBenefit {
  font-size: 1.2rem;
}

/* Responsive Design for screens <= 900px */
@media (max-width: 900px) {
  .BenefitsSection {
    padding: 0 1rem;
  }
  .BenefitsSection .titleBenefit {
    font-size: 2.3rem;
    margin: 1.5rem 0;
  }
  .BenefitsSection .descriptionBenefit {
    font-size: 1rem;
    margin: 0;
    margin-bottom: 1rem;
  }
  .BenefitsSection .containerBenefit {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem 0rem;
  }
  .BenefitsSection .containerBenefit .benefitBox {
    width: 99%;
    height: 300px;
    padding: 0;
    border-radius: 20px;
  }
  .BenefitsSection .containerBenefit .benefitBox img {
    width: 15%;
    padding-top: 0.5rem;
  }
  .BenefitsSection .containerBenefit .benefitBox:hover {
    transform: none;
  }
}
/* Responsive Design for screens <= 700px */
@media screen and (max-width: 700px) {
  .BenefitsSection {
    padding: 0 1.5rem;
  }
  .BenefitsSection .titleBenefit {
    width: 100%;
  }
  .BenefitsSection .descriptionBenefit {
    width: 100%;
    padding: 0 2rem;
  }
  .BenefitsSection .containerBenefit {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .BenefitsSection .containerBenefit .benefitBox {
    width: 90%;
    height: auto;
    padding: 1rem;
  }
}
/* Specific styles for tablets and iPads (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .BenefitsSection {
    padding: 0 2rem;
  }
  .BenefitsSection .titleBenefit {
    font-size: 30px;
  }
  .BenefitsSection .descriptionBenefit {
    font-size: 1.1rem;
  }
  .BenefitsSection .containerBenefit {
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
  }
  .BenefitsSection .containerBenefit .benefitBox {
    width: 70%;
    height: auto;
    padding: 2rem;
  }
  .BenefitsSection .containerBenefit .benefitBox img {
    width: 15%;
    padding-top: 1rem;
  }
}
.questions {
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  width: auto;
  margin: 0 auto;
}

.titleQuestions {
  font-size: 3.4rem;
  font-weight: 500;
  color: rgb(214, 178, 106);
  background: -webkit-linear-gradient(146deg, rgb(255, 233, 152) 0%, rgb(123, 80, 24) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 4rem 0rem;
  font-family: "Bebas Neue", sans-serif;
}

.faq {
  max-width: 70%;
  min-width: 70%;
  margin-top: 0rem;
  padding-bottom: 0rem;
  border-bottom: 1px solid rgb(176, 170, 170);
  cursor: pointer;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}

.answer p {
  color: rgb(182, 176, 176);
  padding-top: 0rem;
  line-height: 1.6;
  text-align: left;
  font-size: 1.4rem;
}

.faq.active .answer {
  max-height: 200px;
  animation: fade 0.6s ease-in-out;
}

.faq.active svg {
  transform: rotate(180deg);
}

svg {
  transition: transform 0.4s ease-in;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* Media Query para celulares móviles (hasta 600px) */
@media (max-width: 600px) {
  .questions {
    padding: 1rem;
    padding-top: 1rem;
    /* Reduzco el padding lateral para móviles */
  }
  .titleQuestions {
    font-size: 2rem;
    /* Reduzco el tamaño de la fuente del título para móviles */
    margin: 1rem 0;
    /* Ajusto el margen del título para móviles */
    text-align: center;
    /* Centro el texto del título */
  }
  .faq {
    max-width: 100%;
    /* Ancho máximo del 100% para ocupar todo el ancho del móvil */
    margin-top: 1rem;
    /* Aumento el margen superior de cada pregunta */
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgb(142, 138, 138);
  }
  .faq.active .answer {
    max-height: 300px;
    /* Aumento la altura máxima de la respuesta activa para móviles */
  }
  .question h3 {
    font-size: 1rem;
    /* Reduzco el tamaño de la fuente de las preguntas para móviles */
    width: 90%;
    /* Ajusto el ancho del texto de las preguntas */
  }
  .answer p {
    font-size: 1rem;
    /* Reduzco el tamaño de la fuente de las respuestas para móviles */
  }
}
/* Media Query para iPads y tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .questions {
    padding: 0 2rem;
    /* Reduzco el padding lateral para iPads y tablets */
  }
  .titleQuestions {
    font-size: 2rem;
    /* Tamaño de la fuente del título para iPads y tablets */
    margin: 3rem 0;
    /* Ajusto el margen del título para iPads y tablets */
    text-align: center;
    /* Centro el texto del título */
  }
  .faq {
    max-width: 90%;
    /* Limito el ancho máximo al 70% para iPads y tablets */
    min-width: 70%;
    margin-top: 1rem;
    /* Aumento el margen superior de cada pregunta */
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgb(142, 138, 138);
  }
  .faq.active .answer {
    max-height: 300px;
    /* Aumento la altura máxima de la respuesta activa para iPads y tablets */
  }
  .question h3 {
    font-size: 1.2rem;
    /* Tamaño de la fuente de las preguntas para iPads y tablets */
    width: 90%;
    /* Ajusto el ancho del texto de las preguntas */
  }
  .answer p {
    font-size: 1.2rem;
    /* Tamaño de la fuente de las respuestas para iPads y tablets */
  }
}
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  margin-bottom: 3rem;
}

.wrapper ul {
  border-radius: 30px;
  border: 2px rgba(205, 199, 199, 0.1) solid;
  flex-direction: column;
  align-items: left;
  flex: 1;
  width: 70%;
}

.wrapper ul li {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0;
  padding: 0;
}

.wrapper ul li span {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}

.TextAreasDescription {
  color: white;
  font-size: 1.3rem;
  font-weight: 200;
}

.iconExpertise {
  display: flex;
  align-items: start;
  height: 9.8vh;
}

.wrapper .IconArrow {
  color: rgb(214, 178, 106);
  font-size: 2.3rem;
  margin-right: 0.9rem;
}

.wrapper .titleWrapper {
  color: white;
  text-align: center;
  font-size: 3.2rem;
  margin: 2rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
  padding: 0 30px;
}

.wrapper .column-list {
  -moz-columns: 2;
       columns: 2;
  list-style-type: none;
  padding: 3rem;
  margin: 0 auto;
}

#BtnMargin {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.wrapper .column-list li {
  margin-bottom: 10px;
}

/* Existing styles for smaller screens */
@media (max-width: 900px) {
  .wrapper ul {
    border-radius: 20px;
    border: none;
    flex-direction: column;
    flex: 1;
    width: 100%;
  }
  .wrapper ul li {
    padding: 0;
    margin-top: 0px;
  }
  .wrapper ul li span {
    color: white;
    font-size: 1rem;
  }
  .wrapper .IconArrow {
    font-size: 0 !important;
    margin-right: 1rem !important;
    align-items: baseline;
    min-width: none;
  }
  .iconExpertise {
    height: 12vh;
  }
  .TextAreasDescription {
    color: white;
    font-size: 1rem;
    font-weight: 200;
  }
  .wrapper .titleWrapper {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.3rem;
  }
  .wrapper .column-list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
  }
}
/* Specific styles for tablets and iPads (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .wrapper ul {
    width: 90%;
  }
  .wrapper ul li span {
    font-size: 1.4rem;
  }
  .wrapper .titleWrapper {
    font-size: 2.5rem;
  }
  .wrapper .column-list {
    padding: 2rem;
  }
}
.outerdiv {
  width: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}

.innerdiv {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 5rem;
  transform: scale(0.9);
  justify-content: center;
}

.btnContainer {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  height: auto;
}

.btnTestimonio {
  height: 5rem;
  text-align: center;
}

.TitleTestimonialContainer {
  color: white;
  font-size: 3.5rem;
  font-weight: 500;
  padding: 0 4rem;
  text-align: center;
  margin: 2rem 0;
  font-family: "Bebas Neue", sans-serif;
}

.eachdiv {
  padding: 1.5rem 2.5rem;
  border-radius: 0.8rem;
  box-shadow: 5px 5px 20px rgba(109, 107, 107, 0.4196078431);
  color: black;
  background: #dcdcdc;
}

.userdetails {
  display: flex;
}

.imgbox {
  margin-right: 1rem;
}

.imgbox img {
  border-radius: 50%;
  width: 2rem;
  border: 2px solid #cec5c5;
}

.detbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detbox .name {
  color: #49505A;
  font-size: 1rem;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.detbox .designation {
  color: #49505A;
  opacity: 50%;
  font-size: 0.9rem;
}

.review h4 {
  font-size: 1.4rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.review p {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 500;
  opacity: 50%;
  line-height: 1.5;
}

.attribution {
  font-size: 1rem;
  line-height: 1.5;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  text-align: right;
}

.attribution a {
  text-decoration: none;
}

.cssbuttons-io {
  margin: 2rem 0;
}

.div1 {
  grid-column: 1/2;
  grid-row: 1/2;
}

.div2 {
  grid-column: 2/3;
  grid-row: 1/2;
}

.div3 {
  grid-column: 1/3;
  grid-row: 2/3;
}

@media only screen and (max-width: 1000px) {
  .innerdiv {
    transform: scale(0.7);
  }
}
@media only screen and (max-width: 800px) {
  .innerdiv {
    transform: scale(0.6);
  }
  .TitleTestimonialContainer {
    font-size: 1rem;
    font-weight: 600;
    padding: 0 4rem;
    margin-bottom: 0rem;
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .innerdiv {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    margin: 0 2rem;
    margin-bottom: 0rem;
    padding: 0;
  }
  .TitleTestimonialContainer {
    font-size: 2rem;
    padding: 0 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .innerdiv {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    margin: 0 3rem;
    grid-template-columns: 1fr;
  }
  .btnContainer {
    margin-top: 0rem;
  }
  .TitleTestimonialContainer {
    font-size: 2rem;
    padding: 0 2rem;
  }
  .eachdiv {
    padding: 2rem 3rem;
  }
  .btnTestimonio {
    height: 4rem;
    margin-bottom: 1rem;
  }
}
.HowitWorksContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 5rem 0rem;
}

.TitleHowitWorks {
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
  color: white;
  margin: 0;
  padding: 0;
  font-family: "Bebas Neue", sans-serif;
}

.DescriptionWork {
  color: rgb(211, 211, 211);
  font-size: 1.3rem;
  padding: 1rem 20rem;
  text-align: center;
}

.CardsContainer {
  display: flex;
  color: white;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.cardWork {
  border: 2px #af8f4e solid;
  padding: 2rem;
  border-radius: 10px;
  height: 250px;
  width: 400px;
}

.TitleCardSteps {
  font-weight: 400;
}

.StepTitle {
  font-weight: 500;
}

.StepsDescription {
  color: #adadad;
}

.lineaWork {
  border: 2px #af8f4e solid;
  width: 50px;
  height: 0px;
}

@media (max-width: 900px) {
  .HowitWorksContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1rem 2rem 1rem;
  }
  .TitleHowitWorks {
    text-align: center;
    font-size: 2.5rem;
    color: white;
  }
  .StepTitle {
    font-size: 1.3rem;
  }
  .StepsDescription {
    font-size: 1rem;
  }
  .DescriptionWork {
    font-size: 1rem;
    color: rgb(228, 228, 228);
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .CardsContainer {
    display: flex;
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: auto;
    width: 100%;
  }
  .cardWork {
    border: 2px #af8f4e solid;
    padding: 1.5rem 1.5rem;
    border-radius: 10px;
    height: auto;
    width: auto;
  }
  .lineaWork {
    border: 2px #af8f4e solid;
    width: 0;
    height: 50px;
  }
}
/* Media Query para iPads y tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .HowitWorksContainer {
    padding: 1rem 8rem 3rem 8rem;
  }
  .cardWork {
    border: 2px #af8f4e solid;
    padding: 2rem;
    border-radius: 10px;
    height: auto;
    width: auto;
  }
  .lineaWork {
    border: 2px #af8f4e solid;
    width: 0;
    height: 50px;
  }
}
@media (min-width: 1000px) and (max-width: 1450px) {
  .HowitWorksContainer {
    display: flex;
    padding: 2rem;
  }
  .TitleHowitWorks {
    text-align: center;
    font-size: 3.3rem;
    font-weight: 500;
    color: white;
    margin: 0;
    padding: 0;
    font-family: "Bebas Neue", sans-serif;
  }
  .DescriptionWork {
    color: rgb(211, 211, 211);
    font-size: 1.3rem;
    padding: 1rem 20rem;
    text-align: center;
  }
  .CardsContainer {
    display: flex;
    color: white;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 5rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .cardWork {
    border: 2px #af8f4e solid;
    padding: 2rem;
    border-radius: 10px;
    height: 250px;
    width: 400px;
  }
  .TitleCardSteps {
    font-weight: 400;
  }
  .StepTitle {
    font-weight: 500;
  }
  .StepsDescription {
    color: #adadad;
  }
  .lineaWork {
    border: 2px #af8f4e solid;
    width: 50px;
    height: 0px;
  }
}
footer {
  text-align: center;
  margin-top: 1rem;
}
footer img {
  width: 10%;
}
footer p {
  font-size: 1rem;
  padding: 20px;
  color: rgb(186, 191, 196);
}

@media (max-width: 900px) {
  footer {
    text-align: center;
    padding: 2rem 0;
  }
  footer img {
    width: 30%;
  }
  footer p {
    font-size: 0.7rem;
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  footer {
    text-align: center;
    padding: 2rem 0;
  }
  footer img {
    width: 20%;
  }
  footer p {
    font-size: 0.7rem;
    padding: 10px;
  }
}
body {
  padding: 0;
  scroll-behavior: smooth;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #222020;
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth !important;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.lineHorizontal {
  margin: 0 auto;
  padding: 0;
  width: 80%;
  border-top: 1px rgb(124, 118, 118) solid;
}

.title {
  font-size: 2rem;
  /* Ajustar el tamaño según tus necesidades */
  font-weight: bold;
}

/* Tamaño de fuente para descripciones */
.description {
  font-size: 1.2rem;
  /* Ajustar el tamaño según tus necesidades */
  font-weight: normal;
}

@media (max-width: 900px) {
  .lineHorizontal {
    margin: 0 auto;
    padding: 0;
    width: 90%;
    border-top: 1px rgb(124, 118, 118) solid;
  }
}
.GoldSpan {
  color: rgb(214, 178, 106);
  background: -webkit-linear-gradient(146deg, rgb(255, 233, 152) 0%, rgb(213, 189, 117) 8%, rgb(133, 87, 27) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bodyForm {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form {
  display: flex;
  width: 40%;
  flex-direction: column;
  gap: 10px;
  padding: 4rem;
  border-radius: 20px;
  position: relative;
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  transition: 0.6s ease-in-out all;
}

form:hover {
  border-color: rgba(192, 153, 81, 0.4549019608);
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

.textForm {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}
.textForm .title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #c09951;
}
.textForm .title::before {
  width: 18px;
  height: 18px;
}
.textForm .title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}
.textForm .title::before,
.textForm .title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #e3b764;
}
.textForm .message,
.textForm .signin {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  to {
    transform: translateY(-0.1em);
  }
}
@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .bodyForm {
    display: flex;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 75%;
    border-radius: 20px;
    position: relative;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    transition: 0.6s ease-in-out all;
    padding: 2rem 3rem 3rem 2rem;
    margin: 0;
  }
  form:hover {
    border-color: rgba(192, 153, 81, 0.4549019608);
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
  }
  .textForm {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
  }
  .textForm .title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    color: #c09951;
  }
  .textForm .title::before {
    width: 18px;
    height: 18px;
  }
  .textForm .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  .textForm .title::before,
  .textForm .title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #e3b764;
  }
  .textForm .message,
  .textForm .signin {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
  }
  .textForm .signin {
    text-align: center;
  }
  .textForm .signin a:hover {
    -webkit-text-decoration: underline #c09951;
            text-decoration: underline #c09951;
  }
  .textForm .signin a {
    color: #00bfff;
  }
  .textForm .flex {
    display: flex;
    width: auto;
    gap: 1.5rem;
    padding: 0;
  }
  .textForm .flex label {
    width: 100%;
  }
  .textForm .form label {
    position: relative;
  }
  .textForm .form label .input {
    background-color: #333;
    color: #fff;
    width: 100%;
    padding: 20px 5px 5px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
  }
  .textForm .form label .input + span {
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 15px;
    top: 0px;
    font-size: 0.7em;
    cursor: text;
    transition: 0.3s ease;
  }
  .textForm .form label .input:-moz-placeholder-shown + span {
    top: 12.5px;
    font-size: 0.8em;
  }
  .textForm .form label .input:placeholder-shown + span {
    top: 12.5px;
    font-size: 0.8em;
  }
  .textForm .form label .input:focus + span,
  .textForm .form label .input:valid + span {
    color: #00bfff;
    top: 0px;
    font-size: 0.5em;
    font-weight: 600;
  }
  .textForm .input {
    font-size: medium;
  }
  .textForm #AreaDropdown {
    width: 107%;
    background-color: #333;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(105, 105, 105, 0.397);
    color: rgba(255, 255, 255, 0.5);
  }
  .textForm #AreaDropdown select {
    width: 100%;
  }
  .textForm .btnForm {
    font-family: inherit;
    font-size: 1rem;
    background: #c09951;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
    margin-top: 1rem;
    cursor: pointer;
  }
  .textForm .btnForm:hover {
    background-color: #ceac6d;
  }
  .textForm .btnForm span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
  }
  .textForm .btnForm svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
  }
  .textForm .btnForm:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
  }
  .textForm .btnForm:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
  }
  .textForm .btnForm:hover span {
    transform: translateX(5em);
  }
  .textForm .btnForm:active {
    transform: scale(0.95);
  }
  @keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
    to {
      transform: translateY(-0.1em);
    }
  }
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }
}
.review-box {
  display: flex;
  align-items: center;
  padding: 0rem 2rem;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 300px;
  font-family: Arial, sans-serif;
  margin: 0;
}

.review-box img {
  width: 90px;
  height: 90px;
  margin-right: 3rem;
}

.review-content {
  display: flex;
  flex-direction: column;
}

.rating {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.rating .stars {
  color: #FFD700;
  margin-left: 5px;
}

.reviews {
  font-size: 0.9rem;
  color: #555;
}

.reviews p {
  text-decoration: none;
  font-weight: bold;
  margin: 0;
}

.reviews a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .review-box {
    display: flex;
    align-items: center;
    padding: 0rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    max-width: 300px;
    font-family: Arial, sans-serif;
  }
  .review-box img {
    width: 90px;
    height: 90px;
    margin-right: 3rem;
  }
  .review-content {
    display: flex;
    flex-direction: column;
  }
  .rating {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
  }
  .rating .stars {
    color: #FFD700;
    margin-left: 5px;
  }
  .reviews {
    font-size: 0.9rem;
    color: #555;
  }
  .reviews a {
    color: #4285F4;
    text-decoration: none;
    font-weight: bold;
  }
  .reviews a:hover {
    text-decoration: underline;
  }
}
/* Estilos generales para la sección VSL */
.bodyThankyou {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0rem 10rem;
  height: 100vh;
  background-image: linear-gradient(to bottom, rgba(34, 32, 31, 0) 10%, #22201f 100%), url(../images/MIOlaw1.webp);
  background-size: cover;
  /* Asegura que la imagen cubra todo el contenedor */
  background-position: center;
  /* Centra la imagen */
}

.logoThankyou {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.container {
  max-width: 600px;
  margin: 80px auto;
  background-color: rgba(255, 255, 255, 0.3843137255);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.247);
  border-radius: 12px;
  text-align: center;
  border: 1px rgba(255, 255, 255, 0.466) solid;
}

.tituloThank {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e4e4e4;
}

.descripcionThank {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e4e4e4;
}

@media (max-width: 768px) {
  /* Estilos generales para la sección VSL */
  .logoThankyou {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .bodyThankyou {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0rem 1rem;
    height: 100vh;
    background-repeat: no-repeat;
  }
  .container {
    max-width: 600px;
    margin: 20px auto;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
  }
  .tituloThank {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  .descripcionThank {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=estilos.css.map */