/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*56px*/

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --hue: 46;
  --first-color: hsl(var(--hue), 94.3%, 40.61%);
  --first-color-alt: hsl(var(--hue), 24%, 28%);
  --first-color-light: hsl(var(--hue), 24%, 66%);
  --first-color-lighten: hsl(var(--hue), 24%, 92%);
  --title-color: hsl(var(--hue), 4%, 15%);
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  --body-color: hsl(var(--hue), 0%, 100%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  margin: var(--header-height) 0 0 0;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .4s;
  /*For animation dark mode*/
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-dark: hsl(var(--hue), 8%, 20%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 75%);
  --body-color: hsl(var(--hue), 8%, 12%);
  --container-color: hsl(var(--hue), 8%, 16%);
}


.textimg {
  position: absolute;
  margin: 8px 5px;
  right: 0px;
  color: #000000;
  padding: 0px 5px;
  border-radius: 5px;
  background-color: white;
}

/*========== Button Dark/Light ==========*/
.change-theme {
  color: var(--title-color);
  font-size: 1.50rem;
  cursor: pointer;
}

.nav__btns {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}

/*========== 
Color changes in some parts of 
the website, in dark theme 
==========*/

.dark-theme .steps__bg,
.dark-theme .questions {
  background-color: var(--first-color-dark);
}

.dark-theme .product__circle,
.dark-theme .footer__subscribe {
  background-color: var(--container-color);
}

.dark-theme .scroll-header {
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 4%, .3);
}

/* ============================ */
/* .textoimg {
  display: flex;
  flex-wrap: wrap;
} */

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: .5rem 0 1rem;
}

.section__title,
.section__title-center {
  /* text-align: center; */
  /* Centra el texto */
  /* display: inline-block; */
  /* Ajusta el tamaño al texto */
  border-bottom: 1px solid gold;
  /* Línea dorada y delgada */
  padding-bottom: 2px;
  /* Espacio entre el texto y la línea */
  /* Agrega subrayado */

  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

.section__title-center {
  /* text-align: center; */
  /* Centra el texto */
  /* display: inline-block; */
  /* Ajusta el tamaño al texto */
  border-bottom: 1px solid gold;
  /* Línea dorada y delgada */
  padding-bottom: 2px;
  /* Espacio entre el texto y la línea */
  /* Agrega subrayado */

  text-align: center;
}

.container {
  max-width: 1100px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

.main {
  overflow: hidden;
  /*For animation*/
}

/*=============== HEADER ===============*/
.header {
  padding: 15px 0px;
  width: 100%;
  height: 75px;
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .4s;
  /*For animation dark mode*/
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nab {
  /* height: var(--header-height); */
  height: 5.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav__logo,
.nav__toggle,
.nav__close {
  color: var(--title-color);
}

.nav__logo {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  transition: .3s;
}

.nav__logo-icon {
  font-size: 1.15rem;
  color: var(--first-color);
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__toggle {
  display: inline-flex;
  font-size: 3.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--container-color);
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: -2px 0 4px hsla(var(--hue), 24%, 15%, .1);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: .3s;
    z-index: var(--z-fixed);
  }
}

.nav__close {
  font-size: 3rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: .3s;
  font-weight: bold;
}

.hover:hover {
  box-shadow: 0px 1.5px 4px 0px #bebcbabd;
  padding: 2px;
  border-radius: 10px;
}

.nav__link:hover {
  color: var(--first-color);

}

/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 15%, .1);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--first-color);
}

.active-link::after {
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  padding: 1.5rem 0 2rem;
}

.home__container {
  position: relative;
  row-gap: 2rem;
}

.home__img {
  width: 200px;
  justify-self: center;
}

.home__title {
  font-size: var(--big-font-size);
  line-height: 140%;
  margin-bottom: var(--mb-1);
}

.home__description {
  margin-bottom: var(--mb-2-5);
}

.home__social {
  position: absolute;
  top: 2rem;
  right: -1rem;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__social-follow {
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  color: var(--first-color);
  position: relative;
  transform: rotate(90deg);
}

.home__social-follow::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: var(--first-color);
  right: -45%;
  top: 50%;
}

.home__social-links {
  display: inline-flex;
  flex-direction: column;
  row-gap: .25rem;
}

.home__social-link {
  font-size: 1rem;
  color: var(--first-color);
  transition: .3s;
}

.home__social-link:hover {
  transform: translateX(.25rem);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #FFF;
  padding: 1rem 1.75rem;
  border-radius: .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
  /* box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5); */
}

.button:hover {
  background-color: var(--first-color-alt);
  box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5);

}

.button__icon {
  transition: .3s;
}

.button:hover .button__icon {
  transform: translateX(.25rem);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.button--link {
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.button--link:hover .button__icon {
  transform: translateX(.25rem);
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 2rem;
}

.about__img {
  width: 280px;
  justify-self: center;
}

.about__title {
  margin-bottom: var(--mb-1);
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__details {
  display: grid;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.about__details-description {
  display: inline-flex;
  column-gap: .5rem;
  font-size: var(--small-font-size);
}

.about__details-icon {
  font-size: 1rem;
  color: var(--first-color);
  margin-top: .15rem;
}

/*=============== STEPS ===============*/
.steps__bg {
  background-color: var(--first-color);
  padding: 3rem 2rem 2rem;
  border-radius: 1rem;
}

.steps__container {
  gap: 2rem;
  padding-top: 1rem;
}

.steps__title {
  color: #FFF;
}

.steps__card {
  background-color: var(--container-color);
  padding: 2.5rem 3rem 2rem 1.5rem;
  border-radius: 1rem;
}

.steps__card-number {
  display: inline-block;
  background-color: var(--first-color-alt);
  color: #FFF;
  padding: .5rem .75rem;
  border-radius: .25rem;
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  transition: .3s;
}

.steps__card-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.steps__card-description {
  font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number {
  transform: translateY(-.25rem);
}

/*=============== PRODUCTS ===============*/
.product__description {
  text-align: center;
}

.product__container {
  padding: 3rem 0;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem 3rem;
}

.product__containera {
  padding: 3rem 0;
  grid-template-columns: repeat(1, 1fr);
  gap: .5rem 1rem;
}

.product__card {
  display: grid;
  position: relative;
}



.product__img {
  position: relative;
  /* width: 120px; */
  justify-self: center;
  margin-bottom: var(--mb-0-75);
  transition: .3s;
  border-radius: 17px;
  box-shadow: 0px 0px 9px 3px rgb(186 143 51 / 55%);
}

.product__title,
.product__price {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.product__title {
  margin-bottom: .25rem;
}

.product__button {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--first-color);
  color: #FFF;
  padding: .25rem;
  border-radius: .35rem;
  font-size: 1.15rem;
}

.product__button:hover {
  background-color: var(--first-color-alt);
}

.product__circle {
  width: 90px;
  height: 90px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 5%;
}

.product__card:hover .product__img {
  transform: translateY(-.5rem);
}

/*=============== QUESTIONS ===============*/
.questions {
  background-color: var(--first-color-lighten);
}

.questions__container {
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.questions__group {
  display: grid;
  row-gap: 1.5rem;
}

.questions__item {
  background-color: var(--container-color);
  border-radius: .25rem;
}

.questions__item-title {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.questions__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.questions__description {
  font-size: var(--smaller-font-size);
  padding: 0 1.25rem 1.25rem 2.5rem;
}

.questions__header {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  padding: .75rem .5rem;
  cursor: pointer;
}

.questions__content {
  overflow: hidden;
  height: 0;
}

.questions__item,
.questions__header,
.questions__item-title,
.questions__icon,
.questions__description,
.questions__content {
  transition: .3s;
}

.questions__item:hover {
  box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, .15);
}

/*Rotate icon, change color of titles and background*/
.accordion-open .questions__header,
.accordion-open .questions__content {
  background-color: var(--first-color);
}

.accordion-open .questions__item-title,
.accordion-open .questions__description,
.accordion-open .questions__icon {
  color: #FFF;
}

.accordion-open .questions__icon {
  transform: rotate(45deg);
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3.5rem;
}

.contact__data {
  display: grid;
  row-gap: 2rem;
}

.contact__subtitle {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: var(--mb-0-5);
}

.contact__description {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__icon {
  font-size: 1.25rem;
}

.contact__inputs {
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content {
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.contact__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;

  color: var(--text-color);


  border: none;
  outline: none;
  z-index: 1;
}

.contact__label {
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: .3s;
}

.contact__area {
  height: 7rem;
}

.contact__area textarea {
  resize: none;
}

/*Input focus move up label*/
.contact__input:focus+.contact__label {
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus)+.contact__label {
  top: -.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 3rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--mb-2-5);
  transition: .3s;
}

.footer__logo-icon {
  font-size: 1.15rem;
  color: var(--first-color);
}

.footer__logo:hover {
  color: var(--first-color);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
}

.footer__subscribe {
  background-color: var(--first-color-lighten);
  padding: .75rem;
  display: flex;
  justify-content: space-between;
  border-radius: .5rem;
}

.footer__input {
  width: 70%;
  padding: 0 .5rem;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
}

.footer__button {
  padding: 1rem;
}

.footer__data {
  display: grid;
  row-gap: .75rem;
}

.footer__information {
  font-size: var(--small-font-size);
}

.footer__social {
  display: inline-flex;
  column-gap: .75rem;
}

.footer__social-link {
  font-size: 1rem;
  color: var(--text-color);
  transition: .3s;
}

.footer__social-link:hover {
  transform: translateY(-.25rem);
}

.footer__cards {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.footer__card {
  width: 35px;
}

.footer__copy {
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin: 5rem 0 1rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  background-color: var(--first-color);
  right: 1rem;
  bottom: -30%;
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.scrollup__icon {
  font-size: 1rem;
  color: #FFF;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: .5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--hue), 4%, 29%);
  border-radius: .5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img {
    width: 180px;
  }

  .home__title {
    font-size: var(--h1-font-size);
  }

  .steps__bg {
    padding: 2rem 1rem;
  }

  .steps__card {
    padding: 1.5rem;
  }

  .product__container {
    grid-template-columns: .6fr;
    justify-content: center;
  }

  .product__containera {
    grid-template-columns: .6fr;
    justify-content: center;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product__description {
    padding: 0 4rem;
  }

  .product__container {
    grid-template-columns: repeat(2, 250px);
    justify-content: center;
    column-gap: 5rem;
  }

  .product__containera {
    grid-template-columns: repeat(2, 250px);
    justify-content: center;
    column-gap: 5rem;
  }

  .certificado {
    height: 50px;
  }

  .footer__subscribe {
    width: 400px;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }



  .nav {
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 3rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 2rem;
  }

  .nav__menu {
    margin-left: auto;
  }

  .home__container,
  .about__container,
  .questions__container,
  .contact__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home {
    padding: 5rem 0 5rem;
  }

  .home__container {
    align-items: center;
  }

  .home__img {
    width: 280px;
    order: 1;
  }

  .home__social {
    top: 30%;
  }

  .questions__container {
    align-items: flex-start;
  }

  .footer__container {
    column-gap: 3rem;
  }

  .swiperpostt {
    width: 1100px;

  }

  .dfsdf {
    width: 100%;
  }

  .footer__subscribe {
    width: initial;
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .certificado {
    height: 74px;
  }

  /* .swiperpostt {
    width: 370px;

  } */

  .section {
    padding: 2rem 0 1rem;
  }

  /* .swiperpost {
    width: 370px;
    height: auto;
    box-shadow: 0px 0px 9px 0px rgb(192 153 70 / 42%);
  } */

  .section__title,
  .section__title-center {
    font-size: var(--h1-font-size);
    /* text-align: center; */
    /* Centra el texto */
    /* display: inline-block; */
    /* Ajusta el tamaño al texto */
    border-bottom: 1px solid gold;
    /* Línea dorada y delgada */
    padding-bottom: 2px;
    /* Espacio entre el texto y la línea */

  }

  .home {
    padding: 5rem 0 1rem;
  }

  .home__img {
    width: 350px;
  }

  .home__description {
    padding-right: 5rem;
  }

  .about__img {
    width: 480px;
  }

  .steps__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps__bg {
    padding: 2.5rem 2.5rem;
  }

  .steps__card-title {
    font-size: var(--normal-font-size);
  }

  .product__description {
    padding: 0 16rem;
  }

  .product__container {

    /* padding: 4rem 0; */
    grid-template-columns: repeat(3, 370PX);
    /* gap: 4rem 6rem; */

  }

  /* 
  .swiperpostt {
    width: 370px;

  } */

  /* ========================================= */
  .product__containera {
    grid-template-columns: repeat(2, 580px);
  }

  /* grid-template-columns */

  .product__img {
    width: 360px;
    box-shadow: 0px 0px 9px 3px rgb(186 143 51 / 55%);
  }

  .product__circle {
    width: 110px;
    height: 110px;
  }

  .product__title,
  .product__price {
    font-size: var(--normal-font-size);
  }

  .questions__container {
    padding: 1rem 0 4rem;
  }

  .questions__title {
    text-align: initial;
  }

  .questions__group {
    row-gap: 2rem;
  }

  .questions__header {
    padding: 1rem;
  }

  .questions__description {
    padding: 0 3.5rem 2.25rem 2.75rem;
  }

  .footer__logo {
    font-size: var(--h3-font-size);
  }

  .footer__container {
    grid-template-columns: 1fr .8fr .8fr;
  }

  .footer__copy {
    margin: 7rem 0 2rem;
  }
}

@media screen and (min-width: 1200px) {
  .home__social {
    right: -3rem;
    row-gap: 4.5rem;
  }

  .home__social-follow {
    font-size: var(--small-font-size);
  }

  .home__social-follow::after {
    width: 1.5rem;
    right: -60%;
  }

  .home__social-link {
    font-size: 1.15rem;
  }

  .about__container {
    column-gap: 7rem;
  }

  .scrollup {
    right: 1.5rem;
  }

  .dfsdf {
    max-width: 32%;


  }

}

/* =================================swiper================================================== */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
}

/* =====================================content menu========================== */



/* ==========================================SUBMENU2=================================== */


/* ==========================================================imagen ampliada  */
.image-overlay {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Fondo oscuro semitransparente */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.image-overlay img {
  max-width: 90%;
  /* Tamaño máximo de la imagen ampliada */
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =================================================================== */
.gawhite {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ========================puntos salteados */
.puntos {
  border-bottom: 2px dashed rgb(255, 203, 46);
  /* Línea de borde discontinua */
  /* padding-bottom: 10px; */

}

/* ========================================================================= */

/* 5 */
.btn-5 {
  width: 100%;
  height: auto;
  line-height: 35px;
  padding: 0;
  border: none;
  background-color: var(--first-color);
  background: linear-gradient(0deg, var(--first-color), var(--first-color));
}

.btn-5:hover {
  color: var(--first-color);
  background: transparent;
  box-shadow: none;
}

.btn-5:before,
.btn-5:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: var(--first-color);
  box-shadow:
    -1px -1px 5px 0px #fff,
    7px 7px 20px 0px #0003,
    4px 4px 5px 0px #0002;
  transition: 400ms ease all;
}

.btn-5:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

.btn-5:hover:before,
.btn-5:hover:after {
  width: 100%;
  transition: 800ms ease all;
}

/* =========================================================================== */


/* ======================================================================================== */



/* ===============================================POST============================ */
.padre {
  width: 100%;
  background-color: #00ffff00;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.hijo {
  border: 1px dashed #ffffff;
  /* text-align: left; */
  background-image: url(../../assets/img/d2-min.png);
  width: 100%;
  /* background-color: rgb(255, 72, 0); */
  display: flex;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 5px 0px;
  overflow-wrap: break-word;
  align-items: center;
  box-shadow: 0px 0px 9px 0px rgb(192 153 70 / 42%);
  transition: transform 0.3s ease;
  justify-content: flex-start;
}

.ga {
  width: 100%;
  /* background-color: rgb(255, 72, 0); */
  display: flex;
  justify-content: space-between;
  height: auto;
  margin: 5px 0px;
  overflow-wrap: break-word;
  box-shadow: 0px 0px 9px 0px rgb(209 157 47);
  transition: transform 0.3s ease;
}

.ga1 {
  width: 150px;
  background-color: rgb(14 22 51);
  height: auto;
  /* margin: 5px 0px; */
  overflow-wrap: break-word;
  font-weight: bold;
  /* text-align: center; */
  display: flex;
  align-items: center;
  color: #ffd68a;
  /* align-content: center; */
  justify-content: center;
  padding: 10px;
  margin: 2px;
  /* border-radius: 15px;*/
}

.ga2 {
  width: 100%;
  background-color: rgb(5 49 63);
  height: auto;
  overflow-wrap: break-word;
  font-weight: bold;
  padding: 10px;
  margin: 2px;
  color: #ffffff;
  /* border-radius: 15px; */
  transition: transform 0.3s ease;

}

.hijotitulo1 {
  border: 1px dashed #ffffff;
  width: 200px;
  background-color: rgb(14 22 51);
  height: 7rem;
  /* margin: 5px 0px; */
  overflow-wrap: break-word;
  font-weight: bold;
  /* text-align: center; */
  display: flex;
  align-items: center;
  /* align-content: center; */
  justify-content: center;
  padding: 10px;
  margin: 2px;
  color: #ffd68a;
  /* border-radius: 15px;*/

}

.hijotitulo2 {
  /* border: 1px dashed #ffffff;  */
  /* text-align: left; */
  width: 100%;
  /* background-color: rgb(74, 107, 227); */
  height: auto;
  /* overflow-wrap: break-word; */
  background-color: rgb(159 154 136 / 0%);
  /* background-image: url(../../assets/img/d2.png); */
  font-weight: bold;
  /* text-align: center; */
  color: #ffffff;
  display: flex;
  /* align-items: start; */
  /* align-content: center; */
  justify-content: center;
  padding: 10px;
  margin: 2px;
  /* border-radius: 15px;*/
}

.hijo4 {
  width: 100%;
  /* background-color: rgb(255, 127, 219); */
  height: auto;
  margin: 5px 0px;
  overflow-wrap: break-word;
  display: flex;
  align-items: center;
  /* align-content: center; */
  justify-content: center;
  padding: 10px;
  /* margin: 2px; */
  border-radius: 15px;
  box-shadow: 0px 0px 9px 0px rgb(192 153 70 / 42%);
  transition: transform 0.3s ease;
  /* flex-direction: column; */
  flex-wrap: wrap;
}

.hijo5 {
  width: 100%;
  /* background-color: rgba(217, 219, 74, 0.26); */
  background-image: url(../../assets/img/d2-min.png);
  height: auto;
  margin: 5px 0px;
  overflow-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: bold;
  /* text-align: center; */
  display: flex;
  align-items: center;
  /* align-content: center; */
  justify-content: center;
  padding: 10px;
  margin: 2px;
  color: #ffffff;
  /* border-radius: 15px; */
  box-shadow: 0px 0px 9px 0px rgb(192 153 70 / 42%);
  transition: transform 0.3s ease;
  border: 1px dashed #ffffff;
  /* box-shadow: 0px 0px 14px 0px rgb(0 62 82);

}

.hijo:hover,
.hijo4:hover,
.hijo5:hover,
.hijo3:hover,
.ga:hover {
  transform: translate(3px, -3px);
  /* Mueve ligeramente el elemento */
  /* Suaviza la animación */

}

/* .hijo2 {
  width: 100%;
  background-color: rgb(234, 49, 49);
  display: flex;
  justify-content: space-between;
  height: 7rem;
  margin: 5px 0px;
} */

/* SDSD */

/* =====================================Scroll================================== */
#beneficios {
  scroll-margin-top: 5rem;
}

#carreras {
  scroll-margin-top: 5rem;
}

#certificados {
  scroll-margin-top: 5rem;

}

#faqs {
  scroll-margin-top: 5rem;
}

#matricula {
  scroll-margin-top: 5rem;

}

.dubmenutext {}

/* =================================submenu================================= */
/* * {
  margin: 0;
  padding: 0;
  text-decoration: none
}

body {
  background: #555;
} */

header {
  position: relative;
  width: 100%;
  /* background: #333; */
}

/* 
.logo {
  position: relative;
  z-index: 123;
  padding: 10px;
  font: 18px verdana;
  color: #6DDB07;
  float: left;
  width: 15%
} */

/* .logo a {
  color: #6DDB07;
} */

nav {
  position: relative;
  width: 980px;
  margin: 0 auto;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

#cssmenu:after,
#cssmenu>ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0
}

#cssmenu #head-mobile {
  display: none
}

#cssmenu {
  font-family: sans-serif;
  width: 85%;
  /* background: #333; */
  display: flex;
  /* justify-content: space-evenly; */
  justify-content: space-between;
}

#cssmenu>ul>li {
  float: left
}

#cssmenu>ul>li>a {
  padding: 17px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #ddd;
  font-weight: 700;
}

#cssmenu>ul>li:hover>a,
#cssmenu ul li.active a {
  color: #fff
}

#cssmenu>ul>li:hover,
#cssmenu ul li.active:hover,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover {
  background: #c89e14 !important;
  -webkit-transition: background .3s ease;
  -ms-transition: background .3s ease;
  transition: background .3s ease;
}

#cssmenu>ul>li.has-sub>a {
  padding-right: 30px
}

#cssmenu>ul>li.has-sub>a:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #ddd;
  content: ''
}

#cssmenu>ul>li.has-sub>a:before {
  position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #ddd;
  content: '';
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  transition: all .25s ease
}

#cssmenu>ul>li.has-sub:hover>a:before {
  top: 23px;
  height: 0
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px
}

#cssmenu ul ul li {
  height: 0;
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  background: #333;
  transition: all .25s ease
}

#cssmenu ul ul li:hover {}

#cssmenu li:hover>ul {
  left: auto
}

#cssmenu li:hover>ul>li {
  height: 35px
}

#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0
}

#cssmenu ul ul li a {
  border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  padding: 11px 15px;
  width: 170px;
  font-size: 12px;
  text-decoration: none;
  color: #ddd;
  font-weight: 400;
}

#cssmenu ul ul li:last-child>a,
#cssmenu ul ul li.last-item>a {
  border-bottom: 0
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li a:hover {
  color: #fff
}

#cssmenu ul ul li.has-sub>a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #ddd;
  content: ''
}

#cssmenu ul ul li.has-sub>a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #ddd;
  content: '';
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  transition: all .25s ease
}

#cssmenu ul ul>li.has-sub:hover>a:before {
  top: 17px;
  height: 0
}

#cssmenu ul ul li.has-sub:hover,
#cssmenu ul li.has-sub ul li.has-sub ul li:hover {
  background: #363636;
}

#cssmenu ul ul ul li.active a {
  border-left: 1px solid #333
}

#cssmenu>ul>li.has-sub>ul>li.active>a,
#cssmenu>ul ul>li.has-sub>ul>li.active>a {
  border-top: 1px solid #333
}

/* .sdsd {
  display: none;
} */

@media screen and (max-width:1000px) {
  .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    text-align: center;
    padding: 10px 0 0 0;
    float: none
  }

  .erer {
    top: 50px;
  }

  .logo2 {
    display: none
  }

  nav {
    width: 100%;
  }

  #cssmenu {
    width: 100%;
    backdrop-filter: blur(10px);
    background-color: #ffffff;
    color: #000000;
  }

  .logos_responsive {
    position: absolute;
    margin: 0px 0px 0px 10px;

  }


  .swiperpostt {

    width: 370px;

  }


  .nav__logo {
    /* display: none; */
  }


  #cssmenu ul {
    font-family: cursive;
    margin-top: 10px;
    width: 100%;
    display: none;
    background-color: #ffbc43b5;
  }

  #cssmenu ul li {
    width: 100%;
    border-top: 1px dotted #ffffff;
    /* border-top: 1px solid #444 */
  }

  #cssmenu ul li:hover {
    background: #363636;
  }

  #cssmenu ul ul li,
  #cssmenu li:hover>ul>li {
    height: auto
  }

  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0
  }

  #cssmenu>ul>li {
    float: none
  }

  #cssmenu>ul>li>a {
    font-size: 19px;
  }


  #cssmenu ul ul li a {
    padding-left: 25px;
    font-size: 17px;
  }

  #cssmenu ul ul li {
    /* background: #333 !important; */
    background: #696969 !important;
  }

  #cssmenu ul ul li:hover {
    background: #363636 !important
  }

  #cssmenu ul ul ul li a {
    padding-left: 35px
  }

  #cssmenu ul ul li a {
    color: #ddd;
    background: none
  }

  #cssmenu ul ul li:hover>a,
  #cssmenu ul ul li.active>a {
    color: #fff
  }

  #cssmenu ul ul,
  #cssmenu ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left
  }

  #cssmenu>ul>li.has-sub>a:after,
  #cssmenu>ul>li.has-sub>a:before,
  #cssmenu ul ul>li.has-sub>a:after,
  #cssmenu ul ul>li.has-sub>a:before {
    display: none
  }

  #cssmenu #head-mobile {
    display: block;
    /* padding: 23px; */
    color: #ddd;
    font-size: 12px;
    font-weight: 700
  }

  .header {
    padding: 0px;
  }

  .buttonn {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    background-color: #d59f3b;
    top: 0;
    cursor: pointer;
    z-index: 12399994;
  }

  .buttonn:after {
    position: absolute;
    top: 22px;
    right: 20px;
    display: block;
    height: 4px;
    width: 20px;
    /* background: #ff9109; */
    border-bottom: 2px solid #000000;
    content: ''
  }

  .buttonn:before {
    content: " MENU ";

    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    top: 16px;
    right: 20px;
    display: block;
    height: 2px;
    width: 20px;
    background: #000000;
    content: ''
  }

  .buttonn.menu-opened:after {
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    top: 23px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #ffb700;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
  }

  .buttonn.menu-opened:before {
    top: 23px;
    background: #f8b200;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }


  #cssmenu .submenu-buttonn {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid #444;
    height: 46px;
    width: 46px;
    cursor: pointer;
    background-color: #21201c;
  }

  #cssmenu .submenu-buttonn.submenu-opened {
    background: #262626
  }

  #cssmenu ul ul .submenu-buttonn {
    height: 34px;
    width: 34px
  }

  .luna_responsive {

    font-size: 2rem;
    margin: 15px;
  }

  #cssmenu .submenu-buttonn:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: ''
  }

  #cssmenu ul ul .submenu-buttonn:after {
    top: 15px;
    right: 13px
  }

  #cssmenu .submenu-buttonn.submenu-opened:after {
    background: #fff
  }

  #cssmenu .submenu-buttonn:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: ''
  }

  #cssmenu ul ul .submenu-buttonn:before {
    top: 12px;
    right: 16px
  }

  #cssmenu .submenu-buttonn.submenu-opened:before {
    display: none
  }

  #cssmenu ul ul ul li.active a {
    border-left: none
  }

  #cssmenu>ul>li.has-sub>ul>li.active>a,
  #cssmenu>ul ul>li.has-sub>ul>li.active>a {
    border-top: none
  }



  /* .rs {
    height: 350px;
    margin-top: 100px;


  } */

}

/* ==============================================================================! */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #000;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: #000;
}

.swiper-pagination-bullet-active .path {
  display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  -webkit-animation: dash linear 120s;
  animation: dash linear 120s;
  -webkit-animation-iteration-count: unset;
  animation-iteration-count: unset;
}

.path {
  display: none;
}

@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.dds {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.caja {
  /* border: 1px solid #3498db; */
  /* background-color: #ecfaff; */
  border-radius: 5px;
  padding: 15px;
  margin: 20px;
  color: white;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: left;
  /* font-family: Arial, sans-serif; */
  font-size: 18px;
  line-height: 2;

}

.vacio {
  display: none;
}

.tituloCarrera {
  font-weight: bold;
  text-decoration: overline;
}



.swiperpost {
  /* width: 370px; */
  height: auto;
  box-shadow: 0px 0px 9px 0px rgb(192 153 70 / 42%);
}

/* whatsapp */
@import url("https://fonts.googleapis.com/css?family=Roboto");

/* offset-x > | offset-y ^| blur-radius | spread-radius | color */
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 8;
  bottom: 40px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}

@media (max-width: 360px) {
  .nav-bottom {
    width: 320px;
  }
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 8;
  transition: 0.3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4s ease 4;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 10px;
  filter: brightness(1.15);
  bottom: 85px;
  right: 6px;
  transition: 0.5s;
  border-radius: 10px;
  /* background-color: white; */
  background-image: url(../../assets/img/ws-min.png);
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight 0.6s 0s both;
}

.popup-whatsapp>div {
  margin: 5px;
}

@media (max-width: 680px) {
  .popup-whatsapp p {
    font-size: 0.9em;
  }
}

.popup-whatsapp>.content-whatsapp.-top {
  color: #585858;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1em;
  /* padding: 10px 10px;
  background-color: white;
  border-radius: 0px 15px 15px 15px; */
  /* background-image: url(../../assets/img/burbuja.png); */
}

.whatsapMensage {
  /* background-image: url(../../assets/img/burbuja.png); */

}

.popup-whatsapp>.content-whatsapp.-top p {
  color: #585858;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1em;
  padding: 10px 10px;
  background-color: white;
  border-radius: 0px 15px 15px 15px;
}

.popup-whatsapp>.content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}

.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0px 0px 15px 0px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #f76060;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.closePopup:hover {
  background-color: #f71d1d;
  transition: 0.3s;
}

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.send-msPopup:hover {
  background-color: #f8f8f8;
  transition: 0.3s;
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
}

input.whats-input[type=text] {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #ffffff;
  border-radius: 20px;
  font-size: 1em;
  background-color: #ffffff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: 0.3s;
}

@media (max-width: 420px) {
  input.whats-input[type=text] {
    width: 225px;
  }
}

input.whats-input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
}

input.whats-input[type=text]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: 0.3s;
}

.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 45px;
  height: 45px;
}

.icon-font-color {
  color: #ffffff;
}

.icon-font-color--black {
  color: #333333;
}

/* whatsapp */

.rs {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* Quitar bordes */
}

/* ///////////////////////
 */
/* pantalla de carga */


/* Estilo de la pantalla de carga */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f3f3f3;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo del spinner */
.spinner {
  border: 6px solid #ccc;
  /* Anillo gris */
  border-top: 6px solid #cdb636;
  /* Color del spinner */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Animación del spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Ocultar el contenido principal mientras se carga */
body.loaded #loading-screen {
  display: none;
  /* Oculta la pantalla de carga */
}

body.loaded .main-content {
  display: block;
  /* Muestra el contenido principal */
}

.main-content {
  display: none;
  /* Oculta el contenido principal inicialmente */
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}