/* Establecer el juego de caracteres al principio del archivo */

@charset "UTF-8";

html, body { overflow-x: hidden;}

/* Estilos globales para enlaces */
a {
  cursor: pointer;
  transition: all 0.5s ease;
}
svg{width: inherit;height: inherit;}
/* -------------------------------------------------- */

/* Ocultar el badge de grecaptcha */

.grecaptcha-badge {
  display: none;
}

/* -------------------------------------------------- */

/* input */

input:invalid {
  color: red;
}

/* -------------------------------------------------- */

/* Estilo del precargador */

#loading_content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}

/* Estilo de la animación SVG */

#loading_content .spinner {
  animation: rotate 1s linear infinite;
  width: 50px;
  height: 50px;
}

#loading_content .path {
  stroke: var(--secondary);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Ocultar el precargador después de cargar */

#loading_content.loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  position: relative;
  height: 0;
  width: 0;
}

/* -------------------------------------------------- */

/* Estilos para el elemento .c-branded */

.c-branded {
  border: none;
  border-left: 4px solid var(--secondary);
  position: fixed;
  height: 100vh;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  .c-branded {
    display: none;
  }
}

/* Estilos para el menú de pestañas */

.tabs-container {
  border-bottom: 1px solid var(--primary);
  display: flex;
  margin: 0 1rem;
}

.tabs-container h3,
.tabs-container h4 {
  flex: 1 1 auto;
  padding: 0 0.5rem;
  margin: 0;
}

.tabs-container ul {
  flex: 0 1 auto;
}

ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.tabs li {
  background: none;
  color: #222;
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
}

ul.tabs li.current {
  background: #ededed;
  color: #222;
  border-bottom: 4px solid var(--secondary);
}

.tab-content {
  display: none;
  overflow: hidden;
  margin: 0;
  background-color: white;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--primary);
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
  width: 100%;
}

.tab-content.current {
  display: block;
  background-color: var(--clear);
}

/* -------------------------------------------------- */

/* Estilos para el menú de la barra lateral */

/* Sidebar Menu*/

nav#menu {
  background: var(--secondary);
  bottom: 0;
  box-shadow: 0 0 5px #666;
  height: 100vh;
  left: -17.5rem;
  padding-top: 38px;
  position: fixed;
  top: 0;
  transition: 0.4s ease-in-out;
  width: 17rem;
  user-select: none;
  z-index: 10;
}

nav#menu ul {
}

nav#menu ul li {
  text-indent: 1rem;
  line-height: 1.5rem;
  display: list-item;
  min-height: 1rem;
}

nav#menu a {
  color: #eee;
  display: block;
  transition: 0.5s;
  text-decoration: none;
  -webkit-user-drag: none;
  padding: 1rem 0;
}

nav#menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

nav#menu a.clean:hover {
  background-color: transparent;
}

#nav-collapse {
  padding: 8px 12px;
  position: absolute;
  right: 0;
  top: 0;
}

#nav-expand {
  color: #333;
  display: inline-block;
  padding: 8px 12px 8px 16px;
  text-decoration: none;
  transition: 0.5s linear;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 3px;
}

#nav-expand .icon-menu {
  filter: invert(1) sepia(100%) saturate(10000%) hue-rotate(45deg);
}

#nav-expand:focus {
  opacity: 0;
}

#nav-expand:focus ~ main {
  margin-left: 17rem;
  transition-delay: 0.25s;
}

#nav-expand:focus ~ nav {
  left: 0;
  transition-delay: 0.25s;
}

nav#menu .icon,
#nav-expand .icon {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 1rem;
  width: 1rem;
  vertical-align: text-top;
}

@media (max-width: 768px) {
  nav#menu {
    overflow-y: auto;
    height: 100vh;
  }
}

/* -------------------------------------------------- */

/* Personalización de estilos para la paginación */

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: row;
  flex-wrap: wrap;
}

.pagination li {
  margin-right: 0.5rem;
  display: flex;
  gap: 1rem;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
}

.pagination .active span {
  background-color: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.pagination a:hover {
  background-color: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/* -------------------------------------------------- 
 * MISC 
 --------------------------------------------------  */

/* Estilos alternois */

ul.zebra li:nth-child(even) {
  background-color: #f2f2f2;
}



/* POPUP */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 9999999999;
  transition: all 0.5s ease-out allow-discrete;
  transition-timing-function: cubic-bezier(.29, 1.01, 1, -0.68);
}

.popup-image {
  max-width: 80vw;
  max-height: 80vw;
  transition: all 0.5s ease-out allow-discrete;
  transition-timing-function: cubic-bezier(.29, 1.01, 1, -0.68);
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* -------------------------------------------------- 
 * Arrow Down 
 --------------------------------------------------  */
 .scroll-down-link a {
	height: 3rem ;
	width: 3rem;
	line-height: 60px;
	color: #FFF;
	text-align: center;
	font-size: 70px;
	text-decoration: none;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  background: transparent!important;
}

@media (min-width: 768px) {
  .scroll-down-link_sm {
    display: none!important;
    position: absolute;
    top:-100%;
  }
}

/* -------------------------------------------------- 
 * BONAGENT 
 --------------------------------------------------  */
 /*
  .bonagent-sm
  .bonagent
  .bonagent-color
  .bonagent-color a
 */
 .bonagent-color {background-color: var(--primary); color: var(--white);}
 .bonagent-color a {color: var(--white);}
 .bonagent-color_border { border-color: var(--primary);}



 
/* -------------------------------------------------- */
/* OVERWRITES */

.text-xs {
	font-size: 0.75rem!important; /* 12px */
	line-height: 1rem!important; /* 16px */
}
.text-sm {
	font-size: 0.875rem!important; /* 14px */
	line-height: 1.25rem!important; /* 20px */
}
.text-base {
	font-size: 1rem!important; /* 16px */
	line-height: 1.5rem!important; /* 24px */
}
.text-lg {
	font-size: 1.125rem!important; /* 18px */
	line-height: 1.75rem!important; /* 28px */
}
.text-xl {
	font-size: 1.25rem!important; /* 20px */
	line-height: 1.75rem!important; /* 28px */
}
.text-2xl {
	font-size: 1.5rem!important; /* 24px */
	line-height: 2rem!important; /* 32px */
}
.text-3xl {
	font-size: 1.875rem!important; /* 30px */
	line-height: 2.25rem!important; /* 36px */
}
.text-4xl {
	font-size: 2.25rem!important; /* 36px */
	line-height: 2.5rem!important; /* 40px */
}
.text-5xl {
	font-size: 3rem!important; /* 48px */
	line-height: 1!important;
}
.text-6xl {
	font-size: 3.75rem!important; /* 60px */
	line-height: 1!important;
}
.text-7xl {
	font-size: 4.5rem!important; /* 72px */
	line-height: 1!important;
}
.text-8xl {
	font-size: 6rem!important; /* 96px */
	line-height: 1!important;
}
.text-9xl {
	font-size: 8rem!important; /* 128px */
	line-height: 1!important;
}


.font-bold {
    font-weight: 700!important;
}


.leading-3	{line-height: .75rem!important; /* 12px */}
.leading-4	{line-height: 1rem!important; /* 16px */}
.leading-5	{line-height: 1.25rem!important; /* 20px */}
.leading-6	{line-height: 1.5rem!important; /* 24px */}
.leading-7	{line-height: 1.75rem!important; /* 28px */}
.leading-8	{line-height: 2rem!important; /* 32px */}
.leading-9	{line-height: 2.25rem!important; /* 36px */}
.leading-10	{line-height: 2.5rem!important; /* 40px */}
.leading-none	{line-height: 1!important;}
.leading-tight	{line-height: 1.25!important;}
.leading-snug	{line-height: 1.375!important;}
.leading-normal	{line-height: 1.5!important;}
.leading-relaxed	{line-height: 1.625!important;}
.leading-loose	{line-height: 2!important;}


@media (min-width: 768px) {
    .md\:text-3xl {
        font-size: 1.875rem!important;
        line-height: 2.25rem!important;
    }
    .md\:text-lg {
        font-size: 1.125rem!important;
        line-height: 1.75rem!important;
    }

}
@media (min-width: 1280px) {
    .xl\:px-10 {
        padding-left:2.5rem!important;
        padding-right: 2.5rem!important;
    }
    .xl\:text-9xl {
        font-size: 8rem!important;
        line-height: 1!important;
    }
    .xl\:text-8xl {
        font-size: 6rem!important;
        line-height: 1!important;
    }
    .xl\:text-7xl {
        font-size: 4.5rem!important;
        line-height: 1!important;
    }
    .xl\:text-6xl {
        font-size: 3.75rem!important;
        line-height: 1!important;
    }
    .xl\:text-5xl {
        font-size: 3rem!important;
        line-height: 1!important;
    }
    .xl\:text-4xl {
        font-size: 2.25rem!important;
        line-height: 1!important;
    }
    .xl\:text-3xl {
        font-size: 1.875rem!important;
        line-height: 2.25!important;
    }
    .xl\:text-2xl {
        font-size: 1.5rem!important;
        line-height: 2!important;
    }
}