@charset "UTF-8";
@import url("https://use.typekit.net/lfp5idg.css");
:root {
  --mainfont: "proxima-nova", sans-serif;
  --headlinefont: "proxima-nova", sans-serif;
  --back: #E8EEF2;
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --glass-blur: 8px;
  --fsize_xs: 12px;
  --fsize_sm: 14px;
  --fsize_md: 16px;
  --fsize_lg: 22px;
  --fsize_display: clamp(1.375rem, -0.0313rem + 4.5vw, 2.5rem);
  --ctacolor: #554971;
  --ctacolor_rgb: rgb(85, 73, 113);
  --focuscolor: #2C497F;
  --ctacolor: #2C497F;
  --tyrian_purple: #700548;
  --glaucos: #7272AB;
  --focuscolor: #B0228C;
  --ctacolor: var(--focuscolor);
  --focuscolor: #EF233C;
  --ctacolor: var(--focuscolor);
  --fontcolor: #36213E;
  --burger_menu_color: #2C497F;
  --burger_menu_item_color: var(--back);
  --hamburguer-width: 20px;
  --agenda: #2C497F;
  --sticky: #7EB2DD;
  --lsticky: #bcd5ea;
  --tangerine: #F18805;
  --grey: #818AA3;
  --dark_grey: #565554;
  --dark_grey: #697083;
  --blue: #2C497F;
  --light_blue:#325FA0;
  --xlight_blue: #B5E2FA;
  --magenta: #B0228C;
  --lapis_lazuli: #2A628F;
  --green: #00C49A;
  --yellow: #eaf47c;
  --red: #f47c7c;
  --blue_rgba: rgba(44, 73, 127, 0.4);
  --blue_rgb: rgb(44, 73, 127);
  --comision_directiva_w: 550px;
  --comision_directiva_h: 250px;
  --comision_directiva_img: 200px;
  --comision_directiva_rol_fs: var(--fsize_sm);
  --comision_directiva_name_fs: var(--fsize_sm);
  --comision_directiva_bio_fs: var(--fsize_xs);
  --comision_directiva_desc_pad: 30px 15px //30px 15px;
  --comision_directiva_background: linear-gradient( 67.6deg, rgba(225,242,254,1) -2.8%, rgba(193,224,250,1) 44.6%, rgba(19,116,197,1) 102.4% );
  --comision_directiva_box_shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
  --pro_destacado_background: background: linear-gradient(90deg, hsla(4, 93%, 67%, 1) 0%, hsla(29, 86%, 52%, 1) 100%);
  --box_shadow: 6px 6px 12px var(--blue), -6px -6px 12px var(--xlight_blue);
  --box_shadow2: 0 0 10px rgba(44, 73, 127, 0.5);
  --border_radius: 0.25rem;
  --blue_gradient: linear-gradient(to right, var(--blue), var(--light_blue)) ;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video, svg {
  height: auto;
}

body {
  margin: 0;
  min-height: 100dvh;
  max-width: 100dvw;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  text-transform: uppercase;
}

p {
  text-wrap: pretty;
  font-family: var(--mainfont);
}

html {
  font-size: 16px;
  letter-spacing: 1.1px;
}

body {
  background-color: var(--back);
  font-family: var(--mainfont);
  color: var(--fontcolor);
  overflow-x: hidden;
}

main {
  position: relative;
  top: 20vh;
  width: 90vw;
  margin-inline: auto;
}

h1 {
  text-align: center;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.1;
}

h2 {
  line-height: 1;
}

.edit-button, input[type=file] {
  padding: 5px 10px;
  font-size: var(--fsize_xs);
  background-color: transparent;
  cursor: pointer;
  border: 1px solid var(--back);
  color: var(--back);
}

.hidden {
  display: none;
  transition: all 0.5s;
}

.transitioning {
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.collapsed {
  max-height: 0;
  opacity: 0;
}

.expanded {
  max-height: 500px; /* Un valor mayor que la altura máxima esperada del contenido */
  opacity: 1;
}

h3 {
  font-size: clamp(1.125rem, 0.9688rem + 0.5vw, 1.375rem);
}

a {
  text-decoration: none;
  color: var(--blue);
}

h2 {
  margin: 0;
  letter-spacing: 0;
  color: var(--grey);
  font-size: clamp(1rem, 0.4531rem + 1.75vw, 1.875rem);
}

.loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body, h1, h2, h3, h4, h5, h6, p {
  text-rendering: optimizeSpeed;
}

table .back1 {
  background-color: var(--light_blue);
  color: var(--back);
}

table .back2 {
  background-color: var(--blue);
  color: var(--back);
}

.news__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: var(--tangerine);
  font-size: var(--fsize_sm);
  margin-bottom: 2vh;
  padding-top: 2vh;
  padding-right: 50px;
}
.news__link span {
  display: inherit;
  transition: transform 0.5s;
}
.news__link:hover span {
  transform: translateX(0.5rem);
}

.card-description-social {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.card-description-social .card-description-social-follow {
  display: block;
  margin-bottom: 8px;
  color: #555572;
  font-size: 14px;
}
.card-description-social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* email */
  /* LinkedIn */
  /* Facebook */
  /* Twitter */
  /* Instagram */
}
.card-description-social ul li {
  list-style-type: none;
}
.card-description-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #121212;
  border-radius: 50%;
  box-shadow: var(--comision_directiva_box_shadow);
  transition: all 0.4s;
}
.card-description-social ul li a:hover {
  color: white;
  transform: translate(0, -7px);
}
.card-description-social ul li a[href*=mailto]:hover {
  background-color: var(--grey);
}
.card-description-social ul li a[href*=linkedin]:hover {
  background-color: #0A66C2;
}
.card-description-social ul li a[href*=facebook]:hover {
  background-color: #3b5998;
}
.card-description-social ul li a[href*=twitter]:hover {
  background-color: #1DA1F2;
}
.card-description-social ul li a[href*=instagram]:hover {
  background-color: #E4405F;
}

.comision-directiva svg {
  width: calc(100% - 15px);
  height: calc(100% - 15px);
}

h1 {
  font-size: 2.986rem;
}

h2 {
  font-size: 2.488rem;
}

h3 {
  font-size: 2.074rem;
}

h4 {
  font-size: 1.728rem;
}

h5 {
  font-size: 1.44rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
}

.texturas, .texturas1 {
  width: 100%;
  height: 100%;
  /* Add your background pattern here */
  background-image: radial-gradient(var(--blue_rgba), 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px;
}

.texturas {
  position: absolute;
  top: 80vh;
  height: 60vh;
  width: 60vw;
  right: 0;
}

.logoform {
  width: 180px;
  padding-top: 2vh;
}
.logoform img {
  object-fit: cover;
  width: 100%;
  height: auto;
  margin: 0;
  background-position: center;
}

.confirmado {
  color: #00C49A;
  font-weight: bold;
  cursor: pointer;
}

.no-confirmado {
  color: var(--focuscolor);
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.875rem;
  }
  p {
    font-size: 0.875rem;
  }
}
.presencial, .virtual {
  font-family: var(--mainfont);
  font-size: 0.9rem;
}

.presencial {
  color: var(--magenta);
}

.virtual {
  color: var(--magenta);
}

.side-menu {
  width: 300px;
  height: 100%;
  padding: 50px 0;
  box-sizing: border-box;
  background-image: var(--blue_gradient);
  display: flex;
  flex-flow: column nowrap;
  position: fixed;
  top: 20vh;
  z-index: 200;
  transition: 0.5s ease;
  border-radius: var(--border_radius);
  box-shadow: var(--box_shadow2);
  /* transform: translateX(0); */
}

.side-menu-label {
  position: absolute;
  width: 40px;
  height: 120px;
  background: var(--light_blue);
  color: #fff;
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 60px;
  text-align: center;
  font-size: 30px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}

#side-menu-switch {
  position: absolute;
  opacity: 0;
}

#side-menu-switch:checked + .side-menu {
  transform: translateX(-100%);
}

#side-menu-switch:checked + .side-menu label .fas {
  transform: scaleX(-1);
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

.side-menu-link {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.side-menu-link + .side-menu-link::before {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  left: 10px;
  right: 10px;
  top: 0;
}

/* Method 1 */
.side-menu-link .fas {
  margin-right: -1.1em;
  transform: scale(0);
  transition: 0.5s;
}

.side-menu-link:hover .fas {
  margin-right: 0.3em;
  transform: scale(1);
}

.profile-container {
  display: none;
}

.side-menu-container p {
  color: var(--xlight_blue);
  padding-top: 12px;
  padding-left: 8px;
  font-weight: bold;
}

.profile-section .hvr {
  color: var(--fontcolor);
  border: 1px solid var(--fontcolor);
}
.profile-section .avatar {
  width: 100px;
  height: 100px;
  border: 2px solid var(--fontcolor);
}

.profile-header h2 {
  color: var(--back);
  font-size: clamp(1rem, 0.4531rem + 1.75vw, 1.875rem);
}

.profile-container {
  position: relative;
  display: flex;
  flex-direction: column;
  position: fixed;
  width: min(95vw, 450px);
  top: 20vh;
  background: var(--blue_gradient);
  min-height: 80vh;
  border-radius: var(--border_radius);
  box-shadow: var(--box_shadow2);
  left: -450px; /* Ajusta según el ancho del contenedor */
  height: 100%;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}

.profile-container.show {
  left: 0;
}

.profile-data {
  color: var(--back);
  position: absolute;
  padding: 0 20px;
  top: 5vh;
  width: 95%;
  margin: auto;
}

.profile-details {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 2vh 0 5vh;
}

.profile-item-numbers {
  display: flex;
  align-items: flex-end;
  column-gap: 25px;
}
.profile-item-numbers .profile-text {
  width: 90px;
}
.profile-item-numbers .profile-title {
  width: 100px;
}

.profile-item-extra {
  display: flex;
  align-items: flex-end;
  column-gap: 30px;
}
.profile-item-extra.profile-text {
  width: 150px;
}
.profile-item-extra .profile-title {
  width: 150px;
}

.profile-text {
  background-color: var(--xlight_blue);
  color: var(--blue);
  padding: 3px 5px;
  border-radius: var(--border-radius);
  text-align: center;
  font-size: var(--fsize_sm);
  font-family: var(--mainfont);
}
.profile-text::placeholder {
  color: var(--blue);
}

.bio {
  min-height: 100px;
  font-size: var(--fsize_sm);
  text-align: left;
  padding: 5px;
  font-family: var(--mainfont);
}

.email {
  font-size: var(--fsize_sm);
}

.profile-item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 10px 0;
}
.profile-item .profile-title {
  font-size: var(--fsize_xs);
}

.edit-avatar {
  padding: 7px 10px;
  width: 180px;
}

.pro-container {
  display: flex;
  align-items: center;
}

.pro {
  background-color: var(--xlight_blue);
  padding: 2px 5px;
  width: 70px;
  text-align: center;
  margin-left: 5px;
  color: var(--blue);
  font-weight: bold;
  border-radius: var(--border-radius);
}

.hidden-file-input {
  display: none;
}

.profile-description-social {
  position: relative;
  bottom: 0;
  left: 0;
  font-size: var(--fsize_xs);
  display: flex;
  flex-direction: column;
}
.profile-description-social ul {
  padding-top: 10px;
  justify-content: flex-start;
  column-gap: 10px;
}
.profile-description-social ul svg {
  fill: white;
}
.profile-description-social ul img {
  width: 20px;
}

.profile-forms {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.redes-sociales {
  display: flex;
  padding-top: 0;
}
.redes-sociales li {
  list-style-type: none;
}
.redes-sociales a svg {
  width: 20px;
}

.profile-data h3 {
  color: var(--grey);
  font-size: 0.9rem;
}

.edit-rrss {
  background: var(--blue_gradient);
  width: 500px;
  display: none;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  padding: 30px;
  color: var(--back);
  border-radius: var(--border-radius);
  box-shadow: var(--box_shadow2);
}
.edit-rrss input:nth-of-type(2) {
  display: none;
}
.edit-rrss input {
  padding: 5px 10px;
  border-radius: var(--border-radius);
  border: 1px solid var(--back);
  box-shadow: none;
  color: var(--back);
  font-family: var(--mainfont);
}
.edit-rrss input::placeholder {
  color: var(--grey);
  font-size: 0.8rem;
  font-family: var(--mainfont);
}
.edit-rrss .form-item {
  display: flex;
  padding: 10px 0;
}
.edit-rrss label {
  width: 150px;
}
.edit-rrss h2 {
  font-size: 1.5rem;
  padding-bottom: 20px;
}
.edit-rrss .closeRrss {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

nav {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: top 0.6s;
  height: 17vh;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.logo {
  padding-left: 5vw;
}
.logo img {
  width: 230px;
}

.main-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 90vw;
}

.social-nav {
  width: 100dvw;
  height: 4vh;
  background-color: var(--blue);
}
.social-nav .social-nav-data {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4vh;
  width: 95vw;
}
.social-nav .social-nav-data p {
  font-size: 0.8rem;
  text-wrap: nowrap;
}
.social-nav .social-nav-data a {
  font-size: 1rem;
}
.social-nav .social-nav-data .marquee {
  font-size: 0.8rem;
}
.social-nav .user-profile {
  color: var(--back);
}
.social-nav a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--back);
}
.social-nav ul {
  list-style-type: none;
  display: flex;
  column-gap: 20px;
}
.social-nav ul li {
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: transform 0.5s ease;
}
.social-nav ul li:hover {
  transform: translateY(5px);
}
.social-nav ul li a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.social-nav ul li .email {
  width: 90px;
  display: flex;
}

.social-nav .social-nav-data marquee {
  font-size: 0.8rem;
}

.social-nav li a[href*=mailto]:hover {
  background-color: var(--grey);
}

/* LinkedIn */
.social-nav li a[href*=linkedin]:hover {
  background-color: #0A66C2;
}

/* LinkedIn */
.social-nav li a[href*="wa.me"]:hover {
  background-color: #25D366;
}

/* Facebook */
.social-nav li a[href*=facebook]:hover {
  background-color: #3b5998;
}

/* Twitter */
.social-nav li a[href*=twitter]:hover {
  background-color: #1DA1F2;
}

/* Instagram */
.social-nav li a[href*=instagram]:hover {
  background-color: #E4405F;
}

.social-nav li a[href*=agenda]:hover {
  background-color: var(--tyrian_purple);
}

.social-nav li a[href*=cursos]:hover {
  background-color: var(--lapis_lazuli);
}

.user-profile {
  display: flex;
  width: 20vw;
  justify-content: space-around;
}
.user-profile a {
  color: var(--xlight_blue);
}

marquee {
  width: 12vw;
}
marquee p {
  color: var(--back);
  cursor: pointer;
}

.rmenu {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.rmenu .hvr {
  position: relative;
}
.rmenu .hvr::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  top: 20px;
  height: 2px;
  background-color: var(--focuscolor);
  transition: width 0.3s ease-in-out;
}
.rmenu .hvr:hover::after {
  width: 100%;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-left: 5vw;
  width: 100%;
  align-items: center;
}
.menu a {
  text-decoration: none;
  color: var(--fontcolor);
  letter-spacing: 0.5px;
  font-size: var(--fsize_sm);
}

.text-link {
  background-color: var(--fontcolor);
  position: relative;
  display: inline-block;
  font-size: var(--fsize_md);
  text-decoration: none;
  color: var(--fontcolor);
  padding: 0.8vw 1.5vw;
  z-index: 1;
}
.text-link:before, .text-link:after {
  content: attr(data-content);
  position: absolute;
  padding: 0.8vw 1.5vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.text-link:before {
  color: #00ffff;
  z-index: -1;
}
.text-link:after {
  color: #ff00ff;
  z-index: -2;
}
.text-link:hover:before {
  animation: glitchy 0.3s ease 0.3s infinite;
}
.text-link:hover:after {
  animation: glitchy 0.3s ease infinite reverse;
}

.cta a {
  text-decoration: none;
  color: var(--back);
  font-size: var(--fsize_sm);
  background-color: var(--ctacolor);
  padding: 8px 14px;
  border-radius: var(--border_radius);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
.cta a:hover, .cta a:focus {
  animation: pulse 1s infinite;
  box-shadow: 0 0 0 1em transparent;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--grey);
  }
}
.drop-content {
  display: none;
  position: absolute;
  padding: 15px 5px;
  background-color: transparent;
  min-width: 100px;
  width: 800px;
}
.drop-content a {
  float: none;
  white-space: nowrap;
  color: var(--fontcolor);
  text-decoration: none;
  display: block;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
}
.drop-content a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0%;
  opacity: 0;
  height: 0px;
  background-color: var(--back);
}
.drop-content a:hover {
  color: var(--back);
}
.drop-content a:hover::before {
  width: 0%;
  opacity: 1;
  height: 1.8px;
  transition: height 0.3s ease-out, opacity 0.3s ease-out, width 0.3s ease-out;
}

.drop-content-int {
  background: var(--back);
  position: absolute;
  padding: 15px 25px 15px 10px;
  border-radius: 0 15px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.drop-content-int a {
  padding: 5px;
}
.drop-content-int a img {
  opacity: 0;
  width: 8px;
  transform: translateX(-4px);
  transition: all 0.2s ease-out;
  padding-right: 8px;
}
.drop-content-int a:hover {
  color: var(--fontcolor);
  font-weight: 600;
  letter-spacing: 2px;
}

.item:hover > .drop-content {
  display: block;
}

.drop-content-int a:hover > img {
  opacity: 1;
  transform: translateX(4px);
  width: 16px;
}

.drop-content:hover {
  display: block;
}

.drop:active + .drop-content {
  display: block;
}

.drop-content:active {
  display: block;
}

.sub-menu1 {
  width: 280px;
}

.sub-menu2 {
  width: 250px;
}

.sub-menu3 {
  width: 350px;
}

.sub-menu4 {
  width: 300px;
}

.sub-menu5 {
  width: 250px;
  transform: translateX(-100px);
}

.profile-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  width: 40vw;
}
.profile-section .hvr {
  font-size: var(--fsize_sm);
  color: var(--blue);
  border: solid 1px var(--light_blue);
  padding: 5px 10px;
  border-radius: var(--border_radius);
  white-space: nowrap;
}

.profile-section .avatar {
  display: block;
  width: 80px; /* Asegúrate de que el ancho y el alto sean iguales */
  height: 80px;
  border-radius: 50%;
  box-shadow: var(--box_shadow2);
  overflow: hidden; /* Asegúrate de que cualquier contenido que desborde el contenedor sea recortado */
  flex-shrink: 0;
  margin-right: 50px;
}

.profile-section .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.profile-section .avatar img:hover {
  transform: scale(1.1);
}

/* Burger Button */
.burger {
  background-color: transparent;
  position: absolute;
  right: 5vw;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
  z-index: 1000;
}

.line {
  fill: none;
  stroke: var(--focuscolor);
  stroke-width: 4;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

/* Burger Menu */
.burger-menu {
  display: none;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(56, 63, 81, 0.4);
  backdrop-filter: blur(5px);
}
.burger-menu .logo img {
  width: 180px;
  transform: translateX(-40px);
}

.burger-profile-section .avatar {
  display: block;
  width: 80px; /* Asegúrate de que el ancho y el alto sean iguales */
  height: 80px;
  border-radius: 50%;
  box-shadow: var(--box_shadow2);
  overflow: hidden; /* Asegúrate de que cualquier contenido que desborde el contenedor sea recortado */
  flex-shrink: 0;
  margin-right: 50px;
  border: 1px solid var(--back);
}

.burger-profile-section .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.burger-profile-section .avatar img:hover {
  transform: scale(1.1);
}

.burger-sub-menu {
  padding-top: 10vh;
  background-color: var(--burger_menu_color);
  height: 100dvh;
}

.burger-items {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-top: 5vh;
}
.burger-items h3 {
  opacity: 0;
  color: var(--burger_menu_item_color);
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  cursor: pointer;
}
.burger-items .social ul {
  padding-top: 5vh;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
  width: 60%;
}
.burger-items .social ul li a {
  color: var(--back);
  width: 25px;
}
.burger-items .social ul li a svg {
  width: 20px;
  height: 20px;
}

.burger-items.hide {
  display: none;
}

.burger-drop-content {
  display: none;
  animation: dropdownFade 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.burger-drop-content a img {
  width: 22px;
  padding-right: 9px;
}

.burger-drop-content.show {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  animation: navlinkFade 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  height: 70vh;
  padding-top: 5vh;
  justify-content: space-around;
}
.burger-drop-content.show h3, .burger-drop-content.show a {
  color: var(--back);
  opacity: 0;
  font-size: 14px;
  white-space: nowrap;
}

.sub-burger-active {
  width: 75vw;
  height: 100dvh;
  padding: 10vh 10vw 10vh;
}

.long {
  padding: 0;
}

.sub-decor-active {
  width: 50vw;
  height: 70vh;
  filter: screen();
}

.burger-active {
  display: flex;
}

.perfil {
  position: absolute;
  display: none;
  top: 0;
  left: 50vw;
  background-color: var(--sticky);
  top: 20vh;
}

/* Animations */
@keyframes navlinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes sub-decor {
  0% {
    transform: translateX(100%);
    opacity: 6;
  }
  99% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes subburger {
  from {
    transform: translateX(100%);
    border-left: 50px solid var(--focuscolor);
  }
  to {
    transform: translateX(0);
    border-left: 0;
  }
}
@keyframes subburger-reverse {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
/* Media Queries */
@media screen and (max-width: 900px) {
  .burger {
    display: flex;
  }
  .rmenu, .profile-section, .social-nav {
    display: none;
  }
  nav {
    width: 95vw;
    flex-direction: row;
  }
  nav .main-nav {
    justify-content: space-between;
  }
}
:root {
  --length: 12; /* Número total de tarjetas */
}

.pro-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  place-items: center;
  z-index: 1000;
}
.pro-modal h2 {
  color: white;
}
.pro-modal .pro-modal-content {
  position: relative;
  background: var(--back);
  background: var(--blue_gradient);
  color: var(--back);
  padding: 20px 40px;
  padding-top: 30px;
  width: min(950px, 90vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--border_radius);
  box-shadow: var(--box_shadow2);
}
.pro-modal .pro-modal-content .promo {
  width: 40%;
}
.pro-modal .pro-modal-content .promo h3 {
  font-size: 1.5rem;
  color: white;
}
.pro-modal .pro-modal-content .promo .price {
  font-size: 2rem;
  color: white;
  font-weight: bold;
}
.pro-modal .pro-modal-content .promo .price span {
  font-size: 0.9rem;
}
.pro-modal .pro-modal-content .venta {
  display: none;
  font-size: 1rem;
  color: var(--xlight_blue);
  border: 1px solid var(--xlight_blue);
  border-radius: var(--border_radius);
  padding: 10px 20px;
  width: 300px;
  position: absolute;
  top: 30%;
  right: 70px;
}
.pro-modal .pro-modal-content .beneficios {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pro-modal .pro-modal-content .beneficios .beneficio {
  display: flex;
  flex: 0 1 calc(30% - 10px);
  align-items: center;
}
.pro-modal .pro-modal-content .beneficios .beneficio i {
  color: var(--yellow);
  padding-right: 5px;
}
.pro-modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.pro-modal-content .card {
  --stop: calc(100% / var(--length) * var(--i));
  --hue: 35;
  --saturation: 95%;
  --lightness-start: 49%;
  --lightness-step: calc((75% - var(--lightness-start)) / (var(--length) - 1));
  --lightness: calc(var(--lightness-start) + (var(--i) - 1) * var(--lightness-step));
  --c1: hsl(35, 95%, calc( 49% + ( 1 - 1) * calc((75% - 49% ) / ( 6 - 1)) ));
  --c2: hsl(35, 95%, calc(calc( 49% + ( 1 - 1) * calc((75% - 49% ) / ( 6 - 1)) ) + 20%));
  display: flex;
  justify-content: space-between;
  width: min(550px, 90vw);
  height: var(--comision_directiva_h);
  position: relative;
  color: var(--fontcolor);
  background: white;
  letter-spacing: 1px;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: var(--comision_directiva_box_shadow);
  margin: 5vh 0;
}
.pro-modal-content .card::before {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--c1) var(--stop), var(--c2) var(--stop));
}
.pro-modal-content .card .card-image {
  width: 200px;
  height: 100%;
  object-fit: cover;
}
.pro-modal-content .card .card-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  padding: var(--comision_directiva_desc_pad);
  height: 70%;
}
.pro-modal-content .card .card-description-nro {
  color: var(--blue);
  font-size: var(--comision_directiva_rol_fs);
  letter-spacing: 1.5px;
  margin-left: 10px;
  margin-top: 10px;
}
.pro-modal-content .card span {
  font-size: var(--fsize_lg);
  color: var(--tangerine);
}
.pro-modal-content .card .card-description-name {
  display: block;
  font-size: var(--comision_directiva_name_fs);
  margin-left: 10px;
}
.pro-modal-content .card .card-description-bio {
  display: block;
  font-size: var(--comision_directiva_bio_fs);
  margin-left: 10px;
  color: var(--blue);
}
.pro-modal-content .card .card-description-social {
  position: absolute;
  bottom: 20px;
  left: 10px;
}
.pro-modal-content .card .card-description-social .card-description-social-follow {
  display: block;
  margin-bottom: 8px;
  color: #555572;
  font-size: 14px;
}
.pro-modal-content .card .card-description-social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.pro-modal-content .card .card-description-social ul li {
  list-style-type: none;
}
.pro-modal-content .card .card-description-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #121212;
  border-radius: 50%;
  box-shadow: var(--comision_directiva_box_shadow);
  transition: all 0.4s;
}
.pro-modal-content .card .card-description-social ul li a:hover {
  color: white;
  transform: translate(0, -7px);
}
.pro-modal-content .card .card-description-social ul li a svg {
  width: calc(100% - 15px);
  height: calc(100% - 15px);
}

/* email */
.email a:hover {
  background-color: var(--grey);
}

/* whatsapp */
.whatsapp a:hover {
  background-color: #25D366;
}

/* LinkedIn */
.linkedin a:hover {
  background-color: #0A66C2;
}

/* Facebook */
.facebook a:hover {
  background-color: #3b5998;
}

/* Twitter */
.twitter a:hover {
  background-color: #1DA1F2;
}

/* Instagram */
.instagram a:hover {
  background: #E4405F;
}

.boton {
  margin: 10px 0;
  background-color: var(--blue);
  color: var(--back);
  font-family: var(--mainfont);
  letter-spacing: 1px;
  padding: 5px 10px;
  cursor: pointer;
  border: 1px solid var(--back);
  width: 150px;
  animation: pulse;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
.boton:hover, .boton:focus {
  animation: pulse_form 1s infinite;
  box-shadow: 0 0 0 1em transparent;
}

@keyframes pulse_form {
  0% {
    box-shadow: 0 0 0 0 var(--back);
  }
}
button, input {
  background: none; /* Elimina el fondo */
  box-shadow: none; /* Elimina cualquier sombra */
  padding: 0; /* Opcional: ajusta el padding */
  margin: 0; /* Opcional: ajusta el margin */
  outline: none; /* Elimina el contorno cuando el botón está enfocado */
}

.informes-container {
  max-width: 800px;
  margin: 20px auto;
}

.select-group {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.custom-select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--blue);
  border-radius: 6px;
  font-size: 16px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(mainfont);
}

.custom-select:hover {
  border-color: var(--light_blue);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-select:focus {
  outline: none;
  border-color: var(--light_blue);
  box-shadow: 0 0 0 3px rgba(115, 83, 186, 0.2);
}

button, select {
  font-family: var(--mainfont);
  font-size: 0.9rem;
}

.doc-button {
  position: relative;
  background: var(--blue_gradient);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  z-index: 1;
  overflow: hidden;
  font-family: var(mainfont);
}

.doc-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.doc-button:hover::before {
  opacity: 1;
}

footer {
  position: relative;
  margin-top: 40vh;
  background: var(--blue_gradient);
}

footer .footer-end {
  background-color: var(--blue);
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

footer .footer-end p, footer .footer-end i {
  font-size: 0.8rem;
  color: var(--back);
}

footer .footer-end .end-data {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  width: 90vw;
  gap: 3vw;
  padding: 3vh 0;
  margin-inline: auto;
  justify-content: space-evenly;
  flex-direction: column; /* Default to column for responsiveness */
}

footer .footer-content p {
  font-size: 0.9rem;
  color: var(--xlight_blue);
  text-wrap: pretty;
}

footer .footer-content h6 {
  color: var(--xlight_blue);
}

footer .footer-content-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

footer .footer-logo {
  width: 250px;
}
footer .footer-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

footer .footer-contacto {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

footer .footer-contacto p {
  margin: 0;
}

footer .developer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

footer .dev-logo {
  width: 50px;
}

footer .dev-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

#map {
  width: 100%;
  height: 250px;
  border-radius: var(--border_radius);
}

footer .form {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}

footer .title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--xlight_blue);
}

footer .description {
  line-height: 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
  color: var(--back);
}

footer .form div {
  display: flex;
  max-width: 28rem;
  margin-top: 1rem;
  column-gap: 0.5rem;
}

footer .form div input {
  outline: none;
  line-height: 1.5rem;
  font-size: 0.875rem;
  color: var(--blue);
  padding: 0.5rem 0.875rem;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(253, 253, 253, 0.363);
  border-radius: 0.375rem;
  flex: 1 1 auto;
}

footer .form div input::placeholder {
  color: rgb(216, 212, 212);
}

footer .form div input:focus {
  border: 1px solid rgb(99, 102, 241);
}

footer .form div button {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.625rem 0.875rem;
  background-color: rgb(99, 102, 241);
  border-radius: 0.375rem;
  border: none;
  outline: none;
  cursor: pointer;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  footer .footer-content {
    flex-direction: row; /* Switch to row for larger screens */
  }
  footer .footer-content-item:first-child {
    width: 60%; /* El primer elemento ocupa el 60% */
  }
  footer .footer-content-item:last-child {
    width: 35%; /* El segundo elemento ocupa el 40% */
  }
}
.footer-como-llegar {
  margin-top: 10px;
  text-align: center;
}

.boton-como-llegar {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.625rem 0.875rem;
  background-color: rgb(99, 102, 241);
  border-radius: 0.375rem;
  border: none;
  outline: none;
  cursor: pointer;
  text-wrap: nowrap;
}

.boton-como-llegar:hover {
  background-color: #0d62cb;
}

.boton-como-llegar i {
  margin-right: 8px;
}

.directions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 768px) {
  .directions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    margin-top: 10px;
  }
}
.loader-section {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  position: fixed;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  z-index: 2000;
  transition: all 1s 1s ease-out;
  opacity: 1;
  backdrop-filter: blur(5px);
  background-color: var(--blue_rgba);
}

.show-loader {
  display: flex;
}

.spinner {
  width: 80px;
  height: 80px;
  --clr: rgb(127, 207, 255);
  --clr-alpha: rgb(127, 207, 255, .1);
  animation: spinner 2s infinite linear;
  transform-style: preserve-3d;
}

.spinner > div {
  background-color: var(--clr-alpha);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 5px solid var(--clr);
}

.spinner div:nth-of-type(1) {
  transform: translateZ(-40px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
}

.spinner div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
}

.spinner div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
}

.spinner div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
  transform: translateZ(40px);
}

@keyframes spinner {
  0% {
    transform: rotate(0deg) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: rotate(180deg) rotateX(180deg) rotateY(180deg);
  }
  100% {
    transform: rotate(360deg) rotateX(360deg) rotateY(360deg);
  }
}
:root {
  --length: 14; /* Número total de tarjetas */
}

main {
  position: relative;
  top: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
main h1 {
  position: relative;
}
main h3 {
  text-align: center;
  padding-top: 20px;
}

.profile-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 30px;
}
.profile-cards .card {
  --stop: calc(100% / var(--length) * var(--i));
  --hue: 215; /* Hue for blue color */
  --saturation: 50%; /* Saturation for blue color */
  --lightness-start: 25%; /* Starting lightness for the darkest blue */
  --lightness-step: calc((75% - var(--lightness-start)) / (var(--length) - 1));
  --lightness: calc(var(--lightness-start) + (var(--i) - 1) * var(--lightness-step));
  --c1: hsl(var(--hue), var(--saturation), var(--lightness));
  --c2: hsl(var(--hue), var(--saturation), calc(var(--lightness) + 20%));
  display: flex;
  justify-content: space-between;
  width: min(var(--comision_directiva_w), 90vw);
  height: var(--comision_directiva_h);
  position: relative;
  color: var(--fontcolor);
  background: white;
  background: #E0EAFC; /* fallback for old browsers */
  background: linear-gradient(to right, #CFDEF3, #E0EAFC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background: hsl(186, 33%, 94%);
  background: linear-gradient(90deg, hsl(186, 33%, 94%) 0%, hsl(216, 41%, 79%) 100%);
  letter-spacing: 1px;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: var(--comision_directiva_box_shadow);
}
.profile-cards .card::before {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--c1) var(--stop), var(--c2) var(--stop));
}
.profile-cards .card .card-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  padding: var(--comision_directiva_desc_pad);
  height: 70%;
}
.profile-cards .card .card-description .card-description-rol {
  color: var(--blue);
  font-size: var(--comision_directiva_rol_fs);
  letter-spacing: 1.5px;
  margin-left: 20px;
  margin-top: 10px;
}
.profile-cards .card .card-description .card-description-name {
  display: block;
  font-size: var(--comision_directiva_name_fs);
  margin-left: 20px;
}
.profile-cards .card .card-description .card-description-bio {
  display: block;
  font-size: var(--comision_directiva_bio_fs);
  margin: 0 20px;
}
.profile-cards .card .card-image {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .profile-cards .card {
    height: 350px;
  }
  .profile-cards .card .card-image {
    width: 120px;
    height: 80%;
  }
  .profile-cards .card .card-description.card-description-bio {
    font-size: var(--fsize_xs);
  }
  .profile-cards .card .card-description.card-description-rol, .profile-cards .card .card-description .card-description-name {
    font-size: var(--fsize_sm);
  }
  .card-description-social ul {
    width: 80vw;
  }
  .profile-cards .card .card-description {
    height: 80%;
  }
  .select-group {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=consejo_directivo.css.map */