@charset "UTF-8";
:root {
  --uft_azul: #0096b8;
  --uft_rojo: #e2401f;
  --uft_negro: #19222e;
}

:root {
  --header-height-mobile: 70px;
  --header-height-desktop: 90px;
  --top-bar-height: 40px;
  --header-transition: 0.3s ease;
  --menu-font-family: 'Roboto', sans-serif;
  --menu-font-size: 13px;
  --menu-font-weight: 500;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--uft_azul);
  transition: var(--header-transition);
}
#header .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

#header aside.top {
  display: none;
  background-color: #fff;
  height: var(--top-bar-height);
  transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  overflow: hidden;
}
@media (min-width: 992px) {
  #header aside.top {
    display: block;
  }
}
#header aside.top .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header aside.top ul.uft-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 8px;
}
#header aside.top ul.uft-menu li {
  position: relative;
}
#header aside.top ul.uft-menu a {
  font-family: var(--menu-font-family);
  font-weight: var(--menu-font-weight);
  font-size: 11px;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  padding: 6px 12px;
  display: block;
  position: relative;
  transition: color 0.2s ease;
}
#header aside.top ul.uft-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--uft_azul);
  transition: width 0.3s ease, left 0.3s ease;
}
#header aside.top ul.uft-menu a:hover {
  color: var(--uft_azul);
}
#header aside.top ul.uft-menu a:hover::after {
  width: 100%;
  left: 0;
}

#header header {
  background-color: var(--uft_azul);
  height: var(--header-height-mobile);
  position: relative;
  overflow: visible;
}
@media (min-width: 992px) {
  #header header {
    height: var(--header-height-desktop);
  }
}
#header header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

#header header h1 {
  display: block;
  width: 140px;
  height: 42px;
  margin: 0;
  margin-bottom: 8px;
  background: url(../images/logo-clean.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
  transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
  #header header h1 {
    width: 170px;
    height: 50px;
    margin-bottom: 10px;
  }
}
#header header h1 a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

#header header nav {
  display: none;
}
@media (min-width: 992px) {
  #header header nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    overflow: visible;
  }
}

#header nav .box,
#header nav .box-inner {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: visible;
}
#header nav a {
  font-family: var(--menu-font-family);
  font-weight: var(--menu-font-weight);
  font-size: var(--menu-font-size);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 4px;
  white-space: nowrap;
  border: none;
  min-height: auto;
  line-height: 1.4;
  width: auto;
  margin: 0;
}
#header nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
#header nav a.link-solo {
  padding: 12px 16px;
}

#header nav .acordion {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  height: auto;
  width: auto;
  margin: 0;
}
#header nav .acordion a.header-acordion {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  padding-right: 28px;
  position: relative;
  border: none;
}
#header nav .acordion a.header-acordion::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 0.2s ease;
}
#header nav .acordion a.header-acordion span {
  display: none;
}
#header nav .acordion:hover a.header-acordion::after {
  transform: translateY(-50%) rotate(180deg);
}
#header nav .acordion .contenido-acordion {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1002;
  padding: 8px 0;
  overflow: visible;
}
#header nav .acordion .contenido-acordion ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
#header nav .acordion .contenido-acordion ul li {
  display: block;
  width: 100%;
  float: none;
  padding: 0;
  margin: 0;
}
#header nav .acordion .contenido-acordion ul li a {
  color: #333;
  font-size: 13px;
  text-transform: none;
  padding: 10px 20px;
  display: block;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 0;
  white-space: normal;
  line-height: 1.4;
}
#header nav .acordion .contenido-acordion ul li a:hover {
  background-color: #f5f5f5;
  color: var(--uft_azul);
}
#header nav .acordion:hover .contenido-acordion {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#header header button.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1005;
  position: relative;
  top: auto;
  right: auto;
}
@media (min-width: 992px) {
  #header header button.burger {
    display: none;
  }
}
#header header button.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#header header button.burger span:nth-child(1) {
  top: 14px;
}
#header header button.burger span:nth-child(2) {
  top: 21px;
  width: 18px;
}
#header header button.burger span:nth-child(3) {
  top: 28px;
}
#header header button.burger.active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
#header header button.burger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
#header header button.burger.active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

#header nav.mobile-active {
  display: block;
  position: fixed;
  top: var(--header-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - var(--header-height-mobile));
  background-color: var(--uft_negro);
  z-index: 999;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 991px) {
  #header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--uft_negro);
    z-index: 1003;
    overflow-y: auto;
    transition: right 0.3s ease;
    display: block;
    padding-top: var(--header-height-mobile);
  }
  #header nav.mobile-active, #header nav[style*="right: 0"] {
    right: 0;
  }
  #header nav .box {
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
  }
  #header nav .box-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  #header nav a {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    justify-content: flex-start;
  }
  #header nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  #header nav .acordion {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  #header nav .acordion a.header-acordion {
    width: 100%;
    padding: 16px 20px;
    padding-right: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #header nav .acordion a.header-acordion::after {
    right: 20px;
    border-top-color: #fff;
  }
  #header nav .acordion a.header-acordion.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  #header nav .acordion .contenido-acordion {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }
  #header nav .acordion .contenido-acordion ul {
    padding: 10px 0;
  }
  #header nav .acordion .contenido-acordion ul li {
    width: 100%;
    float: none;
  }
  #header nav .acordion .contenido-acordion ul li a {
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    border-bottom: none;
  }
  #header nav .acordion .contenido-acordion ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  #header nav .acordion.active .contenido-acordion,
  #header nav .acordion a.header-acordion.active + .contenido-acordion {
    max-height: 500px;
  }
  #header header.active ~ nav {
    right: 0;
  }
}
#menu-movil {
  display: none;
}
@media (max-width: 991px) {
  #menu-movil {
    display: block;
    background-color: var(--uft_azul);
    padding: 12px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  #menu-movil .row {
    display: block;
  }
  #menu-movil .main_menu-container {
    display: block;
  }
  #menu-movil ul.uft-main_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  #menu-movil ul.uft-main_menu > li.menu-top {
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
  }
  #menu-movil ul.uft-main_menu > li.menu-top > a#texto-encabezado-menu-movil {
    display: none;
  }
  #menu-movil ul.uft-main_menu > li.menu-top > ul.sub-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
  }
  #menu-movil ul.uft-main_menu > li.menu-top > ul.sub-menu > li {
    display: inline-block;
  }
  #menu-movil ul.uft-main_menu > li.menu-top > ul.sub-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-family: var(--menu-font-family);
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }
  #menu-movil ul.uft-main_menu > li.menu-top > ul.sub-menu > li > a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
  }
  #menu-movil ul.uft-main_menu > li.menu-top > ul.sub-menu > li > a::after {
    display: none;
  }
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  #header.scrolled-down aside.top,
  div#header.scrolled-down aside.top {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
  }
  #header.scrolled-up aside.top,
  div#header.scrolled-up aside.top {
    height: var(--top-bar-height);
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 991px) {
  #menu-movil {
    transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  }
  #header.scrolled-down #menu-movil,
  div#header.scrolled-down #menu-movil {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
  }
  #header.scrolled-up #menu-movil,
  div#header.scrolled-up #menu-movil {
    height: auto;
    padding: 12px 15px;
    opacity: 1;
    pointer-events: auto;
  }
}
body {
  padding-top: var(--header-height-mobile);
}
@media (min-width: 992px) {
  body {
    padding-top: calc(var(--header-height-desktop) + var(--top-bar-height));
  }
}

#header a:focus,
#header button:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
#header nav .acordion .contenido-acordion ul li a:focus {
  outline-color: var(--uft_azul);
}
#header header a.acces {
  display: none;
}

@media print {
  #header {
    position: static;
    box-shadow: none;
  }
  #header aside.top,
  #header header nav,
  #header header button.burger,
  #menu-movil {
    display: none;
  }
}
footer#footer {
  background-color: var(--uft_azul);
  color: #fff;
  padding-top: 40px;
}
footer#footer .img-logo {
  max-width: 180px;
  height: auto;
}
footer#footer .container {
  max-width: 1440px;
}
footer#footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
footer#footer .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 768px) {
  footer#footer .col-md {
    flex: 1 0 0%;
  }
}
footer#footer .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 768px) {
  footer#footer .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 12px;
  }
}
footer#footer .widget_nav_menu > h2 {
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}
footer#footer ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 300;
}
footer#footer .link-uft {
  position: relative;
}
footer#footer .link-uft.menu-item > a {
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
}
footer#footer .link-uft.menu-item > a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  transition: 0.2s all ease-in-out;
}
footer#footer a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}
footer#footer figure {
  margin: 0;
}
footer#footer .wp-block-image img {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  footer#footer .wp-block-image.size-full {
    margin-left: 0;
  }
}
footer#footer section.bottom {
  background-color: var(--uft_negro);
  color: #fff;
  margin-top: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer#footer section.bottom .align-items-center {
  align-items: center;
}
footer#footer section.bottom .justify-content-end {
  justify-content: flex-end;
}
footer#footer section.bottom .d-flex {
  display: flex;
}
footer#footer section.bottom .gap-4 {
  gap: 1.5rem;
}
footer#footer section.bottom ul.wp-block-social-links,
footer#footer section.bottom ul.footer-social-links {
  margin-bottom: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  background: none;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  list-style: none;
}
footer#footer section.bottom ul.wp-block-social-links li,
footer#footer section.bottom ul.footer-social-links li {
  background-color: transparent;
  display: inline-block;
  margin: 0;
  padding: 0;
}
footer#footer section.bottom ul.wp-block-social-links li a,
footer#footer section.bottom ul.footer-social-links li a {
  display: flex;
  align-items: center;
  padding: 0.25em;
}
footer#footer section.bottom ul.wp-block-social-links li svg,
footer#footer section.bottom ul.footer-social-links li svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}
@media (max-width: 768px) {
  footer#footer section.bottom .justify-content-end {
    justify-content: center;
  }
}
footer#footer .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.wp-block-social-link {
  border-radius: 9999px;
  height: auto;
  transition: transform 0.1s ease;
}
.wp-block-social-link a {
  align-items: center;
  display: flex;
  line-height: 0;
  padding: 0.25em;
  transition: transform 0.1s ease;
  border-bottom: 0;
  box-shadow: none;
  text-decoration: none;
}
.wp-block-social-link a:hover {
  border-bottom: 0;
  box-shadow: none;
}

.wp-block-social-links {
  font-size: 24px;
}
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited {
  color: currentColor;
  fill: currentColor;
}

.info-banner {
  position: relative;
  overflow: hidden;
}
.info-banner .owl-info-banner .item {
  position: relative;
  min-height: 300px;
}
.info-banner .owl-info-banner .item .box-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 40px;
}
.info-banner .owl-info-banner .item .box-txt .box {
  max-width: 600px;
  text-align: center;
}
.info-banner .owl-info-banner .item .box-txt .box-inner {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 8px;
}
.info-banner .owl-info-banner .item .box-txt .box-inner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--uft_negro);
}
.info-banner .owl-info-banner .item .box-txt .box-inner h3 small {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 5px;
}
.info-banner .owl-info-banner .item .box-txt .box-inner p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--uft_negro);
}
.info-banner .owl-info-banner .item figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 1;
}

.single-hero, .noticias-hero,
.investigaciones-hero {
  position: relative;
  background: #000;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}
.single-hero .scroll-down, .noticias-hero .scroll-down,
.investigaciones-hero .scroll-down {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}
.single-hero .hero-container, .noticias-hero .hero-container,
.investigaciones-hero .hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.single-hero .hero-image, .noticias-hero .hero-image,
.investigaciones-hero .hero-image {
  flex: 1 1 auto;
  width: 70%;
  min-width: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.single-hero .hero-image img, .noticias-hero .hero-image img,
.investigaciones-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-hero .box-txt, .noticias-hero .box-txt,
.investigaciones-hero .box-txt {
  flex: 0 1 auto;
  width: 45%;
  min-width: 250px;
  margin-left: -15%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.single-hero .box-txt h2, .noticias-hero .box-txt h2,
.investigaciones-hero .box-txt h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}
.single-hero .box-txt p, .noticias-hero .box-txt p,
.investigaciones-hero .box-txt p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .single-hero .scroll-down, .noticias-hero .scroll-down,
  .investigaciones-hero .scroll-down {
    display: none;
  }
  .single-hero .hero-container, .noticias-hero .hero-container,
  .investigaciones-hero .hero-container {
    flex-direction: column;
  }
  .single-hero .hero-image, .noticias-hero .hero-image,
  .investigaciones-hero .hero-image {
    width: 100%;
  }
  .single-hero .box-txt, .noticias-hero .box-txt,
  .investigaciones-hero .box-txt {
    width: 100%;
    margin-left: 0;
    text-align: center;
    align-items: center;
  }
  .single-hero .box-txt p, .noticias-hero .box-txt p,
  .investigaciones-hero .box-txt p {
    text-align: center;
  }
}

section.big-banner {
  margin-top: 174px;
  position: relative;
}

section.big-banner .scroll-down {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 20px;
  left: 15px;
  bottom: 15px;
  z-index: 2;
}

section.big-banner .scroll-down img {
  width: 100%;
}

section.big-banner .owl-big-banner {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  background: #060606;
}

section.big-banner .owl-big-banner .owl-dots {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 12px;
  right: 15px;
  top: 40%;
  text-align: center;
}

section.big-banner .owl-big-banner .owl-dots .owl-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  margin: 6px auto;
  padding: 0;
  transition: all ease 0.4s;
}

section.big-banner .owl-big-banner .owl-dots .owl-dot.active {
  background: #0099BB;
  width: 12px;
  height: 12px;
}

section.big-banner .owl-big-banner .item {
  position: relative;
  display: block;
  overflow: hidden;
  height: 444px;
}

section.big-banner .owl-big-banner figure {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 200px;
  height: 200px;
  left: 0;
  top: 50%;
  margin-top: -60px;
  z-index: 1;
  opacity: 0.7;
}

section.big-banner .owl-big-banner .box-txt {
  display: block;
  position: absolute;
  overflow: hidden;
  right: 40px;
  z-index: 2;
  width: 180px;
  top: 120px;
}

section.big-banner .owl-big-banner .box-txt h2 {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  text-align: right;
}

section.big-banner .owl-big-banner .box-txt p {
  font-size: 14px;
  color: #fff;
  text-align: right;
}

section.big-banner .owl-big-banner .box-txt a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  transition: all ease 0.4s;
  float: right;
}

section.big-banner .owl-big-banner .box-txt a img {
  margin-left: 5px;
  width: 20px;
  transition: all ease 0.4s;
}

section.big-banner .owl-big-banner .box-txt a:hover {
  color: #fff;
}

section.big-banner .owl-big-banner .box-txt a:hover img {
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  section.big-banner {
    margin-top: 34px;
  }
  section.big-banner .scroll-down {
    width: 25px;
    left: 25px;
    bottom: 25px;
  }
  section.big-banner .owl-big-banner .owl-dots {
    width: 14px;
    right: 55px;
    top: 260px;
    text-align: center;
  }
  section.big-banner .owl-big-banner .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
  }
  section.big-banner .owl-big-banner .owl-dots .owl-dot.active {
    background: #0099BB;
    width: 14px;
    height: 14px;
  }
  section.big-banner .owl-big-banner .item {
    height: 70vh;
  }
  section.big-banner .owl-big-banner figure {
    width: 60%;
    height: 400px;
    left: 80px;
    top: 50%;
    margin-top: -156px;
    opacity: 1;
  }
  section.big-banner .owl-big-banner .box-txt {
    right: 100px;
    width: 40%;
    top: 200px;
  }
  section.big-banner .owl-big-banner .box-txt h2 {
    font-size: 30px;
  }
  section.big-banner .owl-big-banner .box-txt p {
    font-size: 16px;
  }
  section.big-banner .owl-big-banner .box-txt a {
    font-size: 16px;
  }
  section.big-banner .owl-big-banner .box-txt a img {
    width: 25px;
  }
}
@media screen and (min-width: 992px) {
  section.big-banner .owl-big-banner .box-txt {
    top: 40%;
  }
  section.big-banner .owl-big-banner .box-txt h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 412px) {
  section.big-banner {
    margin-top: 132px;
  }
}
@media screen and (min-width: 758px) {
  section.big-banner {
    margin-top: 87px;
  }
}
@media screen and (min-width: 768px) {
  section.big-banner {
    margin-top: 124px;
  }
}
@media screen and (min-width: 920px) {
  section.big-banner {
    margin-top: 34px;
  }
}
.noticias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .noticias-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.noticia-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.noticia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.noticia-card:hover .noticia-card__image img {
  transform: scale(1.05);
}
.noticia-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  margin: 0;
}
@media (min-width: 768px) {
  .noticia-card__image {
    height: 200px;
  }
}
@media (min-width: 992px) {
  .noticia-card__image {
    height: 240px;
  }
}
.noticia-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.noticia-card__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  background: url(../images/ico-play-noticias.svg) center/contain no-repeat;
  z-index: 2;
}
.noticia-card__content {
  padding: 20px;
}
.noticia-card__date {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--uft_azul);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.noticia-card__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--uft_negro);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.noticia-card__excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.noticias-cta {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

section.noticias-masonry {
  background-color: #F9F9FB;
  padding: 50px 0 80px;
}

.masonry-grid {
  width: 100%;
}

.masonry-sizer,
.masonry-item {
  width: calc(33.333% - 17px);
}

.masonry-gutter {
  width: 25px;
}

.masonry-item {
  margin-bottom: 25px;
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  transition: all ease 0.3s;
}

.masonry-item:hover {
  transform: translateY(-5px);
}

.masonry-figure {
  margin: 0;
  padding: 0;
  display: block;
}

.masonry-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.masonry-content {
  padding: 20px;
}

.masonry-content .date {
  font-size: 12px;
  color: var(--uft_azul);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.masonry-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 10px 0;
}

.masonry-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .masonry-sizer,
  .masonry-item {
    width: calc(50% - 13px);
  }
}
@media screen and (max-width: 575px) {
  .masonry-sizer,
  .masonry-item {
    width: 100%;
    max-width: none;
  }
  .masonry-gutter {
    width: 0;
  }
}
.noticias-pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding: 20px 0;
  width: 100%;
}

.noticias-pagination-wrapper nav.noticias-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: static;
  right: auto;
  top: auto;
  width: auto;
  height: auto;
  overflow: visible;
  background-color: transparent;
  z-index: auto;
}

nav.noticias-pagination a.page-numbers,
nav.noticias-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--uft_negro);
  background-color: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

nav.noticias-pagination a.page-numbers:hover {
  border-color: var(--uft_azul);
  color: var(--uft_azul);
  text-decoration: none;
}

nav.noticias-pagination span.page-numbers.current {
  background-color: var(--uft_azul);
  border-color: var(--uft_azul);
  color: #fff;
}

nav.noticias-pagination a.prev,
nav.noticias-pagination a.next {
  padding: 0 12px;
  color: #666;
}

nav.noticias-pagination a.prev:hover,
nav.noticias-pagination a.next:hover {
  color: var(--uft_azul);
  border-color: var(--uft_azul);
}

nav.noticias-pagination span.page-numbers.dots {
  border: none;
  background: none;
  min-width: auto;
  padding: 0 4px;
  pointer-events: none;
}

nav.noticias-pagination .page-numbers svg {
  display: block;
  width: 8px;
  height: 14px;
}

nav.noticias-pagination .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 575px) {
  nav.noticias-pagination {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 40px;
  }
  nav.noticias-pagination a.page-numbers,
  nav.noticias-pagination span.page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
}
section.e-news {
  margin: 50px auto 0 auto;
  background-image: url(../images/bg-enews.png);
  background-size: cover;
  background-position: center;
  min-height: 251px;
  padding: 60px 0;
  text-align: center;
}

section.e-news .section-title {
  color: #FFFFFF;
  margin-bottom: 10px;
}

section.e-news p {
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
}

section.e-news .cont-input {
  background-color: #FFFFFF;
  border-radius: 34px;
  height: 48px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

section.e-news .cont-input input {
  display: block;
  position: relative;
  overflow: hidden;
  width: 85%;
  height: 100%;
  background: transparent;
  border: 0px;
  padding: 0 15px;
}

section.e-news .cont-input .btn-input {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 15%;
  height: 48px;
  right: 0;
  top: 0;
  z-index: 1;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  opacity: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

section.e-news .cont-input .btn-input:hover {
  opacity: 0.6;
}

section.e-news .cont-input .btn-input img {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 20px;
  top: 13px;
  left: 50%;
  margin-left: -10px;
}

section.e-news .newsletter-message {
  font-size: 14px;
  margin-top: 15px;
  min-height: 20px;
}

section.e-news .newsletter-message.success {
  color: #a8e6cf;
}

section.e-news .newsletter-message.error {
  color: #ffb3b3;
}

section.investigaciones-destacadas a.leer-mas {
  display: block;
  position: relative;
  overflow: hidden;
  color: #000;
  font-style: italic;
  font-size: 14px;
  text-decoration: none;
  transition: all ease 0.4s;
  margin-bottom: 20px;
}

section.investigaciones-destacadas a.leer-mas img {
  width: 20px;
  margin-left: 5px;
  transition: all ease 0.4s;
}

section.investigaciones-destacadas a.leer-mas:hover {
  text-decoration: underline;
}

section.investigaciones-destacadas a.leer-mas:hover img {
  margin-left: 10px;
}

section.investigacion {
  margin: 50px auto;
}

section.investigacion .investigadores-card {
  position: relative;
}

section.investigacion .investigadores-card .investigadores-info {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5019607843);
  display: flex;
  opacity: 0;
  transition: all ease 0.4s;
  padding: 26px 26px 0 26px;
  min-height: 284px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  bottom: -30px;
}

section.investigacion .investigadores-card:hover .investigadores-info {
  opacity: 1;
  bottom: 0px;
}

section.investigacion .investigadores-card .investigadores-info p {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 0px;
}

section.investigacion .investigadores-card .investigadores-info .imgLiquid {
  background-size: auto;
}

section.investigacion .investigadores-card .investigadores-info hr {
  background-color: #FFFFFF;
  width: 100%;
}

section.investigacion-y-doctorado {
  background-image: url("../images/bg_investigacion-doctorado.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 362px;
  display: flex;
  align-items: center;
}

section.investigacion-y-doctorado h3 {
  color: #FFFFFF;
  text-align: left;
}

section.investigacion-y-doctorado p {
  color: #FFFFFF;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
}

section.investigacion-y-doctorado a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  transition: all ease 0.4s;
}

section.investigaciones-destacadas {
  background: #F9F9FB;
}

section.investigaciones-destacadas.home {
  background: #fff;
}

section.investigaciones-destacadas .nav-pills {
  border: 1px solid #D9D9D9;
  border-radius: 8px;
}

section.investigaciones-destacadas .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background: #0099BB;
  padding: 15px 26px;
}

section.investigaciones-destacadas a.nav-link {
  color: #000000;
  text-decoration: none;
  background-color: transparent;
  padding: 15px 26px;
}

section.investigaciones-destacadas .tab-content .tab-pane .row {
  margin: 30px auto;
  align-items: center;
}

section.investigaciones-destacadas .tab-content .tab-pane .row h5 {
  font-size: 16px;
  text-align: left;
  font-weight: 200;
}

section.investigaciones-destacadas .tab-content .tab-pane .row h4.sub-title {
  font-size: 18px;
  text-align: left;
}

section.investigaciones-destacadas .tab-content .tab-pane .row h2.title {
  font-size: 30px;
  font-weight: 500;
  text-align: left;
  color: #000;
  line-height: 36px;
}

section.investigaciones-destacadas .tab-content .tab-pane .row p {
  font-size: 16px;
  text-align: left;
}

section.investigaciones-destacadas .tab-content .tab-pane .row figure.box-shadow {
  border-radius: 10px;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.5);
}

a.play {
  display: block;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  background: #000;
}

a.play figure {
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  opacity: 1;
}

a.play:hover figure {
  opacity: 0.7;
}

.modal-videos-r {
  display: none;
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  z-index: 99;
}

.modal-videos-r .cont-video {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 80%;
  height: 300px;
  left: 10%;
  top: 50%;
  margin-top: -150px;
  border: 0;
  padding: 0;
}

.modal-videos-r iframe {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}

.modal-videos-r a.cerrar-modal-videos {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 20px;
  height: 20px;
  background: rgba(0, 153, 187, 0.9);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  right: 20px;
  top: 20px;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

.modal-videos-r a.cerrar-modal-videos:hover {
  transform: rotate(180deg);
}

.modal-videos-r a.cerrar-modal-videos span {
  display: block;
  position: relative;
  overflow: hidden;
  width: 10px;
  height: 2px;
  background: #fff;
}

.modal-videos-r a.cerrar-modal-videos span:nth-child(1) {
  left: 5px;
  top: 9px;
  transform: rotate(45deg);
}

.modal-videos-r a.cerrar-modal-videos span:nth-child(2) {
  left: 5px;
  top: 7px;
  transform: rotate(-45deg);
}

.video {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .modal-videos-r .cont-video {
    width: 60%;
    height: 500px;
    left: 20%;
    margin-top: -250px;
  }
  .video {
    position: relative;
    width: 100%;
    height: 773px;
    object-fit: cover;
    z-index: 1;
  }
}
.calendar-container {
  max-width: 340px;
  margin: 20px auto;
  font-family: system-ui, -apple-system, Roboto, sans-serif;
  color: #333;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.calendar-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.back-btn,
.add-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #d74c30;
  cursor: pointer;
}

.back-btn figure {
  margin: 0;
}

.add-btn figure {
  margin: 0;
  background-size: contain;
}

.calendar-month {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  flex: 1;
  text-align: center;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.calendar-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}
.calendar-nav__btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: var(--uft_rojo, #e2401f);
}
.calendar-nav__btn:active {
  transform: scale(0.95);
}
.calendar-nav__btn svg {
  width: 16px;
  height: 16px;
}

.nav-btn {
  border: none;
  cursor: pointer;
  background: none;
}

.nav-btn figure {
  margin: 0;
  background-size: contain;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 14px;
  text-align: center;
}

.day-name {
  font-weight: 700;
  font-size: 14px;
  color: #444;
}

.day {
  font-size: 16px;
  color: #555;
}

.other {
  color: #b0b0b0;
}

.selected {
  background: #b6b6b6;
  color: #fff;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.intro-section {
  padding: 50px 20px;
  background: #fff;
}
.intro-section__content {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}
.intro-section__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #000;
  margin: 0 0 30px 0;
}
.intro-section__text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .intro-section {
    padding: 80px 20px;
  }
  .intro-section__title {
    font-size: 50px;
    margin: 0 0 50px 0;
  }
  .intro-section__text {
    font-size: 18px;
  }
}

.stats-section {
  padding: 50px 20px;
  background: #fff;
}
.stats-section__content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
.stats-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-items: center;
}
@media screen and (min-width: 576px) {
  .stats-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media screen and (min-width: 992px) {
  .stats-section {
    padding: 80px 20px;
  }
  .stats-section__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.stat-circle {
  text-align: center;
  max-width: 220px;
}
.stat-circle__ring {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}
.stat-circle__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.stat-circle__bg {
  fill: none;
  stroke: var(--uft_negro);
  stroke-width: 12;
}
.stat-circle__progress {
  fill: none;
  stroke: var(--uft_azul);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 565.49;
  stroke-dashoffset: 565.49;
  transition: stroke-dashoffset 1.5s ease-out;
}
.stat-circle__value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #000;
}
.stat-circle__label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .stat-circle {
    max-width: 280px;
  }
  .stat-circle__ring {
    width: 200px;
    height: 200px;
  }
  .stat-circle__value {
    font-size: 48px;
  }
  .stat-circle__label {
    font-size: 16px;
  }
}

.direcciones-section {
  padding: 50px 20px;
  background: #fff;
}
.direcciones-section__header {
  max-width: 1440px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 15px;
}
.direcciones-section__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #000;
  margin: 0 0 30px 0;
}
.direcciones-section__description {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 900px;
  margin: 0 auto 30px;
}
.direcciones-section__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.direcciones-section__select {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: normal;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
}
.direcciones-section__select:focus {
  outline: none;
  border-color: var(--uft_azul);
}
.direcciones-section__button {
  padding: 12px 24px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.direcciones-section__button:hover {
  color: var(--uft_azul);
}
.direcciones-section__items {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.direcciones-section__footer {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .direcciones-section {
    padding: 80px 20px;
  }
  .direcciones-section__header {
    margin-bottom: 60px;
  }
  .direcciones-section__title {
    font-size: 50px;
    margin: 0 0 50px 0;
  }
  .direcciones-section__description {
    font-size: 18px;
  }
  .direcciones-section__items {
    gap: 80px;
  }
}

.direccion-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.direccion-card--reversed .direccion-card__content {
  order: 1;
}
.direccion-card--reversed .direccion-card__image {
  order: 2;
}
.direccion-card__content {
  flex: 1;
  padding: 0;
}
.direccion-card__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.3;
}
.direccion-card__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.5;
}
.direccion-card__text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  margin-bottom: 24px;
}
.direccion-card__text strong {
  color: #000;
  font-weight: 700;
}
.direccion-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.direccion-card__link:hover {
  color: var(--uft_azul);
}
.direccion-card__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
}
.direccion-card__image {
  flex: 1;
  width: 100%;
}
.direccion-card__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 992px) {
  .direccion-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .direccion-card--reversed .direccion-card__content {
    order: 2;
  }
  .direccion-card--reversed .direccion-card__image {
    order: 1;
  }
  .direccion-card__title {
    font-size: 32px;
  }
  .direccion-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.people-grid {
  padding: 50px 0;
}
.people-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.people-grid__masonry {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 768px) {
  .people-grid__masonry {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.people-grid__column {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .people-grid__column {
    flex: 0 0 50%;
  }
}
@media (max-width: 480px) {
  .people-grid__column {
    flex: 0 0 100%;
  }
}
.people-grid__card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.people-grid__card:hover {
  text-decoration: none;
  color: inherit;
}
.people-grid__card:hover .people-grid__card-info {
  opacity: 1;
}
.people-grid__card-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  text-align: center;
}
.people-grid__card-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.people-grid__card-title {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}
.people-grid__card-divider {
  background-color: #fff;
  width: 100%;
  margin: 10px 0;
  border: none;
  height: 1px;
}
.people-grid__card-description {
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.people-grid__card-social {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}
.people-grid__card-social-link {
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.people-grid__card-social-link:hover {
  transform: scale(1.1);
}
.people-grid__card-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.people-grid__card-image {
  margin: 0;
  padding: 0;
  line-height: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.people-grid__card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.people-grid__footer {
  text-align: center;
  margin-top: 40px;
}

section.investigadores {
  margin: 50px auto;
}

section.investigadores .buscador-wrap {
  display: block;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

section.investigadores .input-box input {
  width: 100%;
  margin: 15px auto;
  padding: 10px 14px;
  border: 1px solid #D0D0D0;
  font-size: 14px;
  border-radius: 0;
  height: 50px;
}

section.investigadores .btn-text {
  background: none;
  border: none;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

@media screen and (min-width: 768px) {
  section.investigadores .buscador-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
  }
  section.investigadores .select-box select {
    width: 260px;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #D0D0D0;
    border-radius: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
  }
  section.investigadores .input-box input {
    width: 260px;
    padding: 10px 14px;
    border: 1px solid #D0D0D0;
    font-size: 14px;
    border-radius: 0;
    height: 50px;
  }
  section.investigadores .btn-text {
    background: none;
    border: none;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
  }
}
section.perfiles {
  margin: 50px auto;
}

section.perfiles p.nombre {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

section.perfiles p.descripcion {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

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

section.articulo-investigadores .perfil-rrss {
  display: flex;
  align-items: center;
  justify-content: start;
}

.perfil-rrss a {
  cursor: pointer;
}

.perfil-rrss figure {
  margin: 4px 8px;
}

section.perfiles .container {
  max-width: 1440px;
}

section.perfiles .card-perfiles {
  margin: 30px auto;
}

section.perfiles .card-perfiles figure.imgLiquid {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  background-size: cover;
  background-position: center top;
}

section.perfiles .card-perfiles:hover figure.imgLiquid {
  filter: grayscale(0%);
}

section.articulo-investigadores {
  margin: 200px auto 50px auto;
}

section.articulo-investigadores .investigador-foto {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 0;
}

section.articulo-investigadores .investigador-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

section.articulo-investigadores .articulo-investigadores-nav {
  position: relative;
}

section.articulo-investigadores .articulo-investigadores-nav a.back {
  display: flex;
  align-items: center;
  position: absolute;
  top: -40px;
  left: -40px;
  color: #13AFC7;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}

section.articulo-investigadores .articulo-investigadores-nav a.back figure {
  margin: 0;
}

section.articulo-investigadores h3.investigadores-title {
  margin: 0 auto 30px auto;
  font-size: 42px;
  line-height: 100%;
  font-weight: 700;
  color: #000000;
  text-align: left;
}

section.articulo-investigadores p.investigadores-subtitle {
  font-size: 20px;
  line-height: 32px;
  color: #333333;
  font-weight: 400;
}

section.articulo-investigadores p.investigadores-author {
  font-size: 16px;
  line-height: 100%;
  color: #000000;
  font-weight: 400;
}

section.intereses-investigadores {
  margin: 50px auto;
}

section.intereses-investigadores .box {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  max-height: 250px;
  margin-top: 30px;
}

section.intereses-investigadores .box p.box-title {
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  font-weight: 400;
  text-align: center;
  margin: 10px auto 0px auto;
}

section.intereses-investigadores .box p.box-bajada {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  font-weight: 400;
  text-align: center;
  margin: 10px auto 30px auto;
}

section.intereses-investigadores ul.list-point li {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
}

section.intereses-investigadores ul.list-point li span {
  color: #707070;
}

section.intereses-investigadores ul.list-point {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

section.intereses-investigadores ul.list-point li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

section.intereses-investigadores ul.list-point li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 11px;
  height: 11px;
  background-color: #0099BB;
  border-radius: 50%;
}

section.intereses-investigadores hr {
  width: 100%;
  border: none;
  border-top: 1px dashed #999;
  margin-top: 60px;
}

section.biografia {
  margin: 50px auto;
}

section.biografia .bio-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

section.biografia .bio-nav a {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  padding: 16px;
  opacity: 0.6;
  transition: 0.4s;
  position: relative;
}

section.biografia .bio-nav a:hover {
  opacity: 1;
}

section.biografia .bio-nav a:active {
  opacity: 1;
}

section.biografia .bio-nav a figure {
  background-size: 100%;
  min-width: 25px;
  margin: 0 13px;
}

section.biografia .bio-nav a p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
}

section.biografia .bio-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #000;
  opacity: 1;
}

section.biografia .sub-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  margin-top: 30px;
}

section.biografia .sub-title h3,
section.biografia .sub-title figure {
  margin: 0;
}

section.biografia .sub-title h3 {
  font-size: 32px;
  font-weight: 500;
}

section.biografia .sub-title figure {
  min-width: 27px;
  margin-right: 20px;
}

section.biografia ul.list-check li {
  font-size: 16px;
}

section.biografia p.content {
  font-size: 16px;
  font-weight: 400;
}

section.articulo-investigacion {
  padding-top: 120px;
  padding-bottom: 50px;
}

section.articulo-investigacion .investigacion-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

section.articulo-investigacion a.back {
  display: inline-flex;
  align-items: center;
  color: var(--uft_azul);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

section.articulo-investigacion a.back:hover {
  opacity: 0.7;
}

section.articulo-investigacion a.back figure {
  margin: 0;
  width: 20px;
  margin-right: 8px;
}

section.articulo-investigacion .label-investigacion {
  display: inline-block;
  background-color: var(--uft_azul);
  padding: 6px 16px;
  border-radius: 3px;
}

section.articulo-investigacion .label-investigacion .label-txt {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
}

section.articulo-investigacion h1.investigacion-title {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 30px 0;
  background: none;
  font-size: 42px;
  line-height: 120%;
  font-weight: 700;
  color: #000;
  position: static;
  top: auto;
}

section.articulo-investigacion .articulo-investigacion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

section.articulo-investigacion .share {
  display: flex;
  gap: 12px;
}

section.articulo-investigacion .share a {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.articulo-investigacion .share a figure {
  width: 24px;
  height: 24px;
  margin: 0;
}

section.articulo-investigacion .share-bottom {
  justify-content: center;
  margin-top: 30px;
}

section.articulo-investigacion hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

section.articulo-investigacion .investigacion-author {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

section.articulo-investigacion .investigacion-author:hover {
  opacity: 0.8;
}

section.articulo-investigacion .author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
}

section.articulo-investigacion .author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.articulo-investigacion .author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

section.articulo-investigacion .author-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

section.articulo-investigacion .author-cargo {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  margin: 0;
}

section.articulo-investigacion .author-carrera {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

section.articulo-investigacion .investigacion-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

section.articulo-investigacion .investigacion-content p {
  margin-bottom: 1.5em;
}

section.articulo-investigacion .investigacion-content h2,
section.articulo-investigacion .investigacion-content h3,
section.articulo-investigacion .investigacion-content h4 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #000;
}

section.otras-investigaciones {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin-top: 50px;
}

section.otras-investigaciones h2.section-title {
  margin-bottom: 40px;
}

section.otras-investigaciones .investigaciones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

section.otras-investigaciones .investigacion-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.otras-investigaciones .investigacion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

section.otras-investigaciones .investigacion-card figure {
  width: 100%;
  aspect-ratio: 16/10;
  margin: 0;
  overflow: hidden;
}

section.otras-investigaciones .investigacion-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.3s ease;
}

section.otras-investigaciones .investigacion-card:hover figure img {
  transform: scale(1.05);
}

section.otras-investigaciones .investigacion-card .card-category {
  display: inline-block;
  background-color: var(--uft_azul);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 3px;
  margin: 15px 15px 10px 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

section.otras-investigaciones .investigacion-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0 15px 10px 15px;
  line-height: 1.3;
}

section.otras-investigaciones .investigacion-card p {
  font-size: 14px;
  color: #666;
  margin: 0 15px 20px 15px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  section.articulo-investigacion {
    padding-top: 100px;
  }
  section.articulo-investigacion h1.investigacion-title {
    font-size: 32px;
  }
  section.otras-investigaciones .investigaciones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  section.articulo-investigacion h1.investigacion-title {
    font-size: 26px;
  }
  section.articulo-investigacion .articulo-investigacion-header {
    flex-direction: column;
    align-items: flex-start;
  }
  section.otras-investigaciones .investigaciones-grid {
    grid-template-columns: 1fr;
  }
}
.single-entrevista {
  padding-top: 140px;
  padding-bottom: 60px;
}

.single-entrevista__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-entrevista__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.single-entrevista__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--uft_azul);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.single-entrevista__back img {
  width: 20px;
  height: auto;
}
.single-entrevista__back:hover {
  opacity: 0.7;
}

.single-entrevista__share {
  display: flex;
  gap: 12px;
}
.single-entrevista__share a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.single-entrevista__share a:hover {
  opacity: 0.7;
}
.single-entrevista__share a img {
  width: 24px;
  height: 24px;
}

.single-entrevista__tag {
  display: inline-block;
  background-color: var(--uft_azul);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 15px;
}

.single-entrevista__title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 30px 0;
}

.single-entrevista__image {
  margin: 0 0 30px 0;
}
.single-entrevista__image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-entrevista__content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.single-entrevista__content p {
  margin-bottom: 1.5em;
}
.single-entrevista__content h2, .single-entrevista__content h3, .single-entrevista__content h4 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #000;
}
.single-entrevista__content img {
  max-width: 100%;
  height: auto;
}
.single-entrevista__content a {
  color: var(--uft_azul);
}

.single-entrevista__footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.single-entrevista__footer .single-entrevista__share {
  justify-content: center;
}

.mas-entrevistas {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.mas-entrevistas__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mas-entrevistas__title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 40px 0;
  text-align: center;
}

.mas-entrevistas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mas-entrevistas__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mas-entrevistas__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mas-entrevistas__card-image {
  width: 100%;
  aspect-ratio: 16/10;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mas-entrevistas__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mas-entrevistas__card:hover .mas-entrevistas__card-image img {
  transform: scale(1.05);
}
.mas-entrevistas__card-image.no-image::after {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.mas-entrevistas__card-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding: 20px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .mas-entrevistas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .single-entrevista {
    padding-top: 100px;
  }
  .single-entrevista__title {
    font-size: 28px;
  }
  .single-entrevista__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .mas-entrevistas__grid {
    grid-template-columns: 1fr;
  }
  .mas-entrevistas__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.archive-entrevistas {
  padding: 60px 0 80px;
}

.archive-entrevistas__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.archive-entrevistas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.archive-entrevistas__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.archive-entrevistas__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.archive-entrevistas__card-image {
  width: 100%;
  aspect-ratio: 16/10;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-entrevistas__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.archive-entrevistas__card:hover .archive-entrevistas__card-image img {
  transform: scale(1.05);
}
.archive-entrevistas__card-image.no-image::after {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.archive-entrevistas__card-content {
  padding: 20px;
}

.archive-entrevistas__card-tag {
  display: inline-block;
  background-color: var(--uft_azul);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.archive-entrevistas__card-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.archive-entrevistas__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}
.archive-entrevistas__pagination a, .archive-entrevistas__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.archive-entrevistas__pagination a {
  color: #333;
  background-color: #f5f5f5;
}
.archive-entrevistas__pagination a:hover {
  background-color: var(--uft_azul);
  color: #fff;
}
.archive-entrevistas__pagination span.current {
  background-color: var(--uft_azul);
  color: #fff;
}
.archive-entrevistas__pagination .prev, .archive-entrevistas__pagination .next {
  font-weight: 500;
}

.archive-entrevistas__empty {
  text-align: center;
  color: #666;
  font-size: 16px;
  padding: 60px 20px;
}

@media (max-width: 991px) {
  .archive-entrevistas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .archive-entrevistas {
    padding: 40px 0 60px;
  }
  .archive-entrevistas__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .archive-entrevistas__card-title {
    font-size: 16px;
  }
}
section.investigaciones-masonry {
  background-color: #F9F9FB;
  padding: 50px 0 80px;
}
section.investigaciones-masonry .masonry-content .category {
  font-size: 12px;
  color: var(--uft_azul);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.centros-archive {
  padding: 60px 0;
}
.centros-archive .centros-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.centros-archive .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.centros-archive .centros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .centros-archive .centros-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .centros-archive .centros-grid {
    grid-template-columns: 1fr;
  }
}
.centros-archive .centro-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.centros-archive .centro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.centros-archive .centro-card figure {
  margin: 0;
  aspect-ratio: 1/1;
}
.centros-archive .centro-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.centros-archive .centro-card p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 26px;
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}
@media (max-width: 767px) {
  .centros-archive .centro-card p {
    font-size: 22px;
    line-height: 26px;
    padding: 20px;
  }
}
.centros-archive .no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #666;
}

.centros-pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.centros-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.centros-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--uft_negro);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.centros-pagination .page-numbers:hover {
  background-color: #f0f0f0;
}
.centros-pagination .page-numbers.current {
  background-color: var(--uft_azul);
  color: #ffffff;
}
.centros-pagination .page-numbers.prev, .centros-pagination .page-numbers.next {
  background-color: transparent;
}
.centros-pagination .page-numbers.prev:hover, .centros-pagination .page-numbers.next:hover {
  background-color: #f0f0f0;
}
.centros-pagination .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-subtitle {
  font-size: 32px;
  line-height: 32px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
}

ul.list-check {
  list-style: none;
  padding-left: 0;
}
ul.list-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}
ul.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 18px;
  background-image: url("../images/Blue-Check-Mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

section.proyectos-evaluacion {
  margin: 50px auto;
}
section.proyectos-evaluacion p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #333333;
}
section.proyectos-evaluacion .box {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 286px;
  padding: 6px;
}
section.proyectos-evaluacion .box figure {
  max-width: 84px;
}
section.proyectos-evaluacion .box p.title {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
section.proyectos-evaluacion .box a {
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}

section.documentos {
  margin: 50px auto;
}
section.documentos .list-button {
  text-decoration: none;
  cursor: pointer;
}
section.documentos .list-button .card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 13px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #D8D8D8;
}
section.documentos .list-button .card figure {
  margin: 0;
}
section.documentos .list-button .card p {
  font-size: 20px;
  font-weight: 400;
  margin-left: 20px;
  margin-bottom: 0;
}

section.el-equipo {
  margin: 50px auto;
}
section.el-equipo ul.list-point {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
section.el-equipo ul.list-point li {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}
section.el-equipo ul.list-point li span {
  color: #707070;
}
section.el-equipo ul.list-point li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 11px;
  height: 11px;
  background-color: #0099BB;
  border-radius: 50%;
}

section.normativas {
  margin: 50px auto;
}
section.normativas a {
  cursor: pointer;
}
section.normativas .sub-title {
  font-size: 32px;
  line-height: 32px;
  color: #0099BB;
  margin-bottom: 20px;
}
section.normativas .card {
  margin: 13px auto;
  transition: 0.4s;
}
section.normativas .card .card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.normativas .card .card-body figure {
  background-size: contain;
  margin: 0;
  min-width: 20px;
}
section.normativas .card .card-body p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}
section.normativas .card:hover {
  background-color: #F23314;
}
section.normativas .card:hover .card-body p {
  color: #FFFFFF;
}
section.normativas .card:hover .card-body figure {
  background-image: url(../images/ico-export-white.svg);
}
section.normativas .box {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  padding: 20px;
  max-height: 250px;
  margin-top: 30px;
}
section.normativas .box p.title-box {
  font-size: 24px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
  margin-left: 13px;
}
section.normativas .box p.content-box {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-weight: 300;
}
section.normativas .box p.content-box b {
  font-weight: 400;
}
section.normativas .box p.content-box strong {
  font-weight: 700;
}

section.financiamiento {
  margin: 50px auto;
}
section.financiamiento p.content {
  font-size: 16px;
  text-align: left;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  section.financiamiento p.content {
    font-size: 20px;
  }
}
section.financiamiento .nav-pills {
  border: 1px solid #D9D9D9;
  border-radius: 8px;
}
section.financiamiento .nav-pills .nav-link.active,
section.financiamiento .nav-pills .show > .nav-link {
  color: #fff;
  background: #0099BB;
  padding: 15px 26px;
}
section.financiamiento a.nav-link {
  color: #000000;
  text-decoration: none;
  background-color: transparent;
  padding: 15px 26px;
}
section.financiamiento .card-calendario {
  background: #F9F9FB;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  transition: all ease 0.4s;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario {
    flex-direction: row;
    align-items: stretch;
    margin: 30px auto;
  }
}
section.financiamiento .card-calendario:hover {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.5);
}
section.financiamiento .card-calendario .img {
  padding: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
section.financiamiento .card-calendario .img figure {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .img {
    padding: 20px;
    width: auto;
    min-width: 200px;
    aspect-ratio: auto;
  }
}
section.financiamiento .card-calendario .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  padding-right: 90px;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .info {
    max-width: 400px;
    padding: 15px 20px;
    padding-right: 20px;
  }
}
section.financiamiento .card-calendario .info a.title {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin: 0 0 5px 0;
  color: var(--uft_negro, #19222e);
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .info a.title {
    font-size: 18px;
  }
}
section.financiamiento .card-calendario .info a.title:hover {
  color: var(--uft_azul, #0096b8);
}
section.financiamiento .card-calendario .info p.title {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .info p.title {
    font-size: 18px;
  }
}
section.financiamiento .card-calendario .info p.sub-title {
  font-size: 12px;
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .info p.sub-title {
    font-size: 13px;
  }
}
section.financiamiento .card-calendario .info p.content {
  font-size: 14px;
  text-align: left;
  margin: 10px 0;
  display: none;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .info p.content {
    display: block;
    font-size: 16px;
  }
}
section.financiamiento .card-calendario__links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
section.financiamiento .card-calendario__links .btn-link {
  color: var(--uft_azul, #0096b8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
section.financiamiento .card-calendario__links .btn-link:hover {
  text-decoration: underline;
}
section.financiamiento .card-calendario .fecha {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .fecha {
    position: relative;
    min-width: 130px;
  }
}
section.financiamiento .card-calendario .fecha .label {
  background-color: #F23314;
  min-height: 70px;
  min-width: 70px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .fecha .label {
    min-height: 110px;
    min-width: 103px;
  }
}
section.financiamiento .card-calendario .fecha .label .dia {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  margin: 0;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .fecha .label .dia {
    font-size: 56px;
  }
}
section.financiamiento .card-calendario .fecha .label .mes {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
@media screen and (min-width: 768px) {
  section.financiamiento .card-calendario .fecha .label .mes {
    font-size: 28px;
  }
}
section.financiamiento .fechas-destacadas p {
  font-size: 24px;
  font-weight: bold;
}
section.financiamiento .prox-fechas {
  display: flex;
  align-items: center;
  margin: 20px auto;
  text-decoration: none;
  color: inherit;
  transition: all ease 0.3s;
}
section.financiamiento .prox-fechas:hover {
  transform: translateX(5px);
}
section.financiamiento .prox-fechas:hover .fecha .label {
  background-color: var(--uft_azul, #0096b8);
}
section.financiamiento .prox-fechas .fecha {
  min-width: 100px;
}
section.financiamiento .prox-fechas .fecha .label {
  background-color: #F23314;
  border-radius: 8px 0 0 8px;
  min-height: 70px;
  max-width: 70px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: background-color ease 0.3s;
}
section.financiamiento .prox-fechas .fecha .label .dia {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: 24px;
  margin: 0;
}
section.financiamiento .prox-fechas .fecha .label .mes {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 18px;
  margin: 0;
}
section.financiamiento .prox-fechas .info p {
  font-size: 14px;
  margin: 0;
  text-align: left;
  color: var(--uft_negro, #19222e);
}
section.financiamiento .prox-fechas .info p:first-child {
  font-weight: 600;
}
section.financiamiento .prox-fechas .info p:last-child {
  font-size: 12px;
  color: #666;
}
section.financiamiento hr {
  width: 100%;
  border: none;
  border-top: 1px dashed #999;
}

.archive-eventos {
  padding: 60px 0;
}

.archive-eventos__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.archive-eventos__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.archive-eventos__main {
  min-width: 0;
}

.archive-eventos__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.archive-eventos__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.archive-eventos__tab:hover {
  border-color: var(--uft_azul);
  color: var(--uft_azul);
}
.archive-eventos__tab--active {
  background: var(--uft_azul);
  border-color: var(--uft_azul);
  color: #fff;
}
.archive-eventos__tab--active:hover {
  color: #fff;
}
.archive-eventos__tab--active .archive-eventos__tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.archive-eventos__tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: #f0f0f0;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.archive-eventos__tab-content {
  display: none;
}
.archive-eventos__tab-content--active {
  display: block;
}

.archive-eventos__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.archive-eventos__card {
  display: grid;
  grid-template-columns: 70px 180px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.archive-eventos__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.archive-eventos__card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--uft_rojo);
  color: #fff;
  padding: 15px;
  text-align: center;
}

.archive-eventos__card-day {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.archive-eventos__card-month {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
}

.archive-eventos__card-image {
  display: block;
  overflow: hidden;
}
.archive-eventos__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.archive-eventos__card-image:hover img {
  transform: scale(1.05);
}

.archive-eventos__card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.archive-eventos__card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.archive-eventos__card-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--uft_azul);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.archive-eventos__card-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 5px;
  display: block;
}
.archive-eventos__card-title:hover {
  color: var(--uft_azul);
}

.archive-eventos__card-source {
  font-size: 13px;
  color: #666;
  margin: 0 0 8px 0;
}

.archive-eventos__card-excerpt {
  font-size: 14px;
  color: #555;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.archive-eventos__card-links {
  display: flex;
  gap: 15px;
}

.archive-eventos__card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--uft_azul);
  text-decoration: none;
}
.archive-eventos__card-link:hover {
  text-decoration: underline;
}
.archive-eventos__card-link--primary {
  background: var(--uft_azul);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
}
.archive-eventos__card-link--primary:hover {
  background: rgb(0, 108.4239130435, 133);
  text-decoration: none;
}

.archive-eventos__empty {
  text-align: center;
  color: #666;
  padding: 40px 20px;
  font-size: 16px;
}

.archive-eventos__sidebar {
  position: sticky;
  top: 120px;
}

.archive-eventos__calendar-wrapper {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 20px;
}

.archive-eventos__legend {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9fb;
  border-radius: 8px;
}

.archive-eventos__legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
}

.archive-eventos__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}
.archive-eventos__legend-dot--event {
  background: #b6b6b6;
}

@media (max-width: 991px) {
  .archive-eventos__layout {
    grid-template-columns: 1fr;
  }
  .archive-eventos__sidebar {
    position: static;
    order: -1;
  }
  .archive-eventos__calendar-wrapper {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .archive-eventos__card {
    grid-template-columns: 70px 1fr;
  }
  .archive-eventos__card-image {
    display: none;
  }
}
@media (max-width: 600px) {
  .archive-eventos__tabs {
    flex-direction: column;
  }
  .archive-eventos__tab {
    justify-content: center;
  }
  .archive-eventos__card {
    grid-template-columns: 1fr;
  }
  .archive-eventos__card-date {
    flex-direction: row;
    gap: 10px;
    padding: 12px 20px;
  }
  .archive-eventos__card-day {
    font-size: 24px;
  }
  .archive-eventos__card-month {
    margin-top: 0;
  }
}
.single-evento {
  padding-top: 140px;
  padding-bottom: 60px;
}

.single-evento__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-evento__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.single-evento__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--uft_azul);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.single-evento__back img {
  width: 20px;
  height: auto;
}
.single-evento__back:hover {
  opacity: 0.7;
}

.single-evento__share {
  display: flex;
  gap: 12px;
}
.single-evento__share a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.single-evento__share a:hover {
  opacity: 0.7;
}
.single-evento__share a img {
  width: 24px;
  height: 24px;
}

.single-evento__tag {
  display: inline-block;
  background-color: var(--uft_azul);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 15px;
}

.single-evento__title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
}

.single-evento__source {
  font-size: 18px;
  color: #666;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.single-evento__date {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.single-evento__date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 15px;
  background-color: var(--uft_rojo);
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

.single-evento__date-day {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.single-evento__date-month {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
}

.single-evento__date-year {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
}

.single-evento__date-label {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.single-evento__image {
  margin: 0 0 30px 0;
}
.single-evento__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.single-evento__content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.single-evento__content p {
  margin-bottom: 1.5em;
}
.single-evento__content h2, .single-evento__content h3, .single-evento__content h4 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #000;
}
.single-evento__content img {
  max-width: 100%;
  height: auto;
}
.single-evento__content a {
  color: var(--uft_azul);
}
.single-evento__content ul, .single-evento__content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
.single-evento__content li {
  margin-bottom: 0.5em;
}

.single-evento__cta {
  margin: 40px 0;
  text-align: center;
}
.single-evento__cta .btn-custom {
  font-size: 16px;
  padding: 18px 40px;
}

.single-evento__footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.single-evento__footer .single-evento__share {
  justify-content: center;
}

.mas-eventos {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.mas-eventos__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mas-eventos__title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 40px 0;
  text-align: center;
}

.mas-eventos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mas-eventos__card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mas-eventos__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mas-eventos__card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 15px;
  background-color: var(--uft_rojo);
  color: #fff;
  text-align: center;
}

.mas-eventos__card-day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.mas-eventos__card-month {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
}

.mas-eventos__card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 20px;
  flex: 1;
}

.mas-eventos__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.mas-eventos__card-source {
  font-size: 13px;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .mas-eventos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .single-evento {
    padding-top: 100px;
  }
  .single-evento__title {
    font-size: 28px;
  }
  .single-evento__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .single-evento__date {
    flex-direction: column;
    text-align: center;
  }
  .mas-eventos__grid {
    grid-template-columns: 1fr;
  }
  .mas-eventos__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
section.ediciones-catalogo {
  background-color: #F9F9FB;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  section.ediciones-catalogo .section-title {
    font-size: 24px;
  }
}

.ediciones-header {
  text-align: left;
  margin-bottom: 60px;
}

.ediciones-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 30px 0 25px;
}

.ediciones-intro {
  font-size: 18px;
  color: #666;
  margin: 0;
}
.ediciones-intro a {
  color: var(--uft_azul);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ediciones-intro a:hover {
  color: var(--uft_rojo);
}

.ediciones-grid {
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .edicion-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.edicion-item {
  display: block;
  text-decoration: none;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.edicion-item:hover {
  transform: translateY(-8px);
  text-decoration: none;
}

.edicion-cover {
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.edicion-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edicion-cover.img-error {
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}
.edicion-cover.img-error::after {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.edicion-info {
  padding: 15px 5px;
  text-align: center;
}
.edicion-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--uft_negro);
  margin: 0 0 6px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .edicion-info h3 {
    font-size: 14px;
  }
}
.edicion-info p {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.edicion-year {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--uft_azul);
  margin-bottom: 8px;
}

.ediciones-error {
  text-align: center;
  padding: 60px 20px;
}
.ediciones-error svg {
  color: #ccc;
  margin-bottom: 20px;
}
.ediciones-error p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.btn-ver-mas {
  display: inline-block;
  background-color: var(--uft_azul);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}
.btn-ver-mas:hover {
  background-color: var(--uft_rojo);
  color: #fff;
  text-decoration: none;
}

section.portafolio-innovacion {
  margin: 50px auto;
}
section.portafolio-innovacion .col-12 p {
  font-size: 16px;
  text-align: left;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  section.portafolio-innovacion .col-12 p {
    font-size: 20px;
  }
}
section.portafolio-innovacion figure {
  margin: 0;
}
section.portafolio-innovacion .box {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 25px;
}
section.portafolio-innovacion .box > figure img {
  width: 100%;
  display: block;
}
section.portafolio-innovacion .box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
section.portafolio-innovacion .box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
section.portafolio-innovacion .box:hover::after {
  background: rgba(0, 0, 0, 0.65);
  opacity: 1;
}
section.portafolio-innovacion .box .info {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding: 26px;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  transition: 0.4s;
}
section.portafolio-innovacion .box .info a img {
  width: 24px;
}
section.portafolio-innovacion .box .info .title {
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  font-weight: bold;
  margin: 0 0 12px 0;
}
section.portafolio-innovacion .box .info .content,
section.portafolio-innovacion .box .info a {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  color: #fff;
}
section.portafolio-innovacion .box .info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-style: italic;
  text-decoration: none;
}
section.portafolio-innovacion .box:hover .info {
  bottom: 20px;
}
section.portafolio-innovacion .box:hover .info .content,
section.portafolio-innovacion .box:hover .info a {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

section.portafolio-artistico {
  margin: 20px auto 50px auto;
}

.portafolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.portafolio-grid .card-portafolio-artistico {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.portafolio-grid .card-large {
  grid-column: span 3;
}

.portafolio-grid .card-small {
  grid-column: span 2;
}

.portafolio-grid .card-portafolio-artistico figure {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
  margin: 0;
}

.portafolio-grid .card-large figure {
  height: 400px;
}

.portafolio-grid .card-portafolio-artistico figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.85);
}

.portafolio-grid .card-portafolio-artistico:hover figure img {
  transform: scale(1.08);
  filter: brightness(1);
}

.portafolio-grid .card-portafolio-artistico .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 24px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.portafolio-grid .card-portafolio-artistico .artist-name {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.portafolio-grid .card-portafolio-artistico h3 {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

.portafolio-grid .card-large h3 {
  font-size: 28px;
}

.portafolio-grid .card-small figure {
  height: 420px;
}

@media (max-width: 991px) {
  .portafolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portafolio-grid .card-large,
  .portafolio-grid .card-small {
    grid-column: span 1;
  }
  .portafolio-grid .card-portafolio-artistico figure,
  .portafolio-grid .card-large figure {
    height: 300px;
  }
  .portafolio-grid .card-portafolio-artistico h3,
  .portafolio-grid .card-large h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .portafolio-grid {
    grid-template-columns: 1fr;
  }
  .portafolio-grid .card-portafolio-artistico figure,
  .portafolio-grid .card-large figure {
    height: 280px;
  }
}
section.buscador-fondos {
  margin: 50px auto;
}

section.buscador-fondos .buscador-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

section.buscador-fondos .select-box select {
  width: 260px;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #D0D0D0;
  border-radius: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

section.buscador-fondos .input-box input {
  width: 260px;
  padding: 10px 14px;
  border: 1px solid #D0D0D0;
  font-size: 14px;
  border-radius: 0;
}

section.buscador-fondos .btn-text {
  background: none;
  border: none;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

section.fondos-seleccionables {
  margin: 50px auto;
}

section.fondos-seleccionables .box {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  margin-top: 0px;
}

section.fondos-seleccionables .box .label {
  padding: 11px 14px;
  background-color: #0099BB;
  margin-right: 20px;
  margin-bottom: 16px;
}

section.fondos-seleccionables .box .label .tipo-fondo {
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
}

section.fondos-seleccionables .box p.box-title {
  font-size: 22px;
  color: #444444;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 0;
}

section.fondos-seleccionables .box hr {
  width: 100%;
  border: none;
  border-top: 1px dashed #999;
}

section.fondos-seleccionables .box p.fecha {
  font-size: 14px;
  color: #1D2027;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 0;
}

section.fondos-seleccionables .box p.fallo {
  font-size: 14px;
  color: #1D2027;
  line-height: 22px;
  font-weight: 500;
}

section.fondos-seleccionables .box a {
  font-style: italic;
  color: #000000;
}

section.otras-noticias {
  background-color: #F9F9FB;
  padding-bottom: 50px;
  margin: 50px auto;
}

section.otras-noticias .card {
  padding: 0;
  border: 0px;
  text-decoration: none;
  transition: all ease 0.4s;
  background-color: transparent;
  opacity: 0.8;
}

section.otras-noticias .card:hover {
  opacity: 1;
}

section.otras-noticias .card figure {
  margin-bottom: 0px;
  border-radius: 15px;
  position: relative;
}

section.otras-noticias .card .ico-play {
  display: block;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  right: 10px;
  bottom: 10px;
  background: url(../images/ico-play-noticias.svg);
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (min-width: 768px) {
  section.otras-noticias .col-md-4:nth-child(3n+1) .card figure {
    height: 400px;
  }
  section.otras-noticias .col-md-4:nth-child(3n+2) .card figure {
    height: 200px;
  }
  section.otras-noticias .col-md-4:nth-child(3n+3) .card figure {
    height: 300px;
  }
  section.otras-noticias.home .col-md-4:nth-child(3n+1) {
    margin-top: 0;
  }
  section.otras-noticias.home .col-md-4:nth-child(5n+5) {
    margin-top: -150px;
  }
  section.otras-noticias.home .col-md-4:nth-child(6n+6) {
    margin-top: -90px;
  }
}
section.otras-noticias h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  margin-top: 16px;
  color: #333;
}

section.otras-noticias p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-align: left;
  margin-top: 0px;
}

section.otras-noticias.portadilla {
  margin: 30px 0 0 0;
  background: #fff;
}

.list-portadilla-noticias {
  border-bottom: 1px solid #f1f1f1;
}

.paginador ul {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}

.paginador ul li {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}

.paginador ul li a {
  color: #000;
  text-decoration: none;
  transition: all ease 0.4s;
}

.paginador ul li a:hover,
.paginador ul li a.active {
  color: #0099BB;
  font-weight: bold;
}

section.articulo-noticias {
  margin: 200px auto 50px auto;
}

section.articulo-noticias .articulo-noticias-nav {
  position: relative;
}

section.articulo-noticias .articulo-noticias-nav a.back {
  display: flex;
  align-items: center;
  position: absolute;
  top: -40px;
  left: -40px;
  color: #13AFC7;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}

section.articulo-noticias .articulo-noticias-nav a.back figure {
  margin: 0;
}

section.articulo-noticias .articulo-noticias-nav p.fecha-noticias {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

section.articulo-noticias .articulo-noticias-nav .label-noticias {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

section.articulo-noticias .articulo-noticias-nav .label-noticias .label-blue {
  padding: 11px 24px;
  background-color: #0099BB;
  margin-right: 20px;
}

section.articulo-noticias .articulo-noticias-nav .label-noticias .label-blue .label-txt {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
}

section.articulo-noticias .share {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.articulo-noticias .share a {
  cursor: pointer;
}

section.articulo-noticias .share figure {
  margin-left: 10px;
  background-size: 100%;
}

section.articulo-noticias h3.noticias-title {
  margin: 30px auto;
  font-size: 42px;
  line-height: 100%;
  font-weight: 400;
  color: #000000;
  text-align: left;
}

section.articulo-noticias p.noticias-subtitle {
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  font-style: italic;
  font-weight: 500;
}

section.articulo-noticias p.noticias-author {
  font-size: 16px;
  line-height: 100%;
  color: #000000;
  font-weight: 400;
}

.finis-hub-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.finis-hub-section-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--uft_negro);
  margin: 0 0 20px 0;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .finis-hub-section-title {
    font-size: 48px;
    margin-bottom: 30px;
  }
}

.finis-hub-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--uft_negro);
}
.finis-hub-hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.finis-hub-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.finis-hub-hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 150, 184, 0.4) 0%, rgba(25, 34, 46, 0.8) 100%);
}
.finis-hub-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}
.finis-hub-hero__eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .finis-hub-hero__eyebrow {
    font-size: 16px;
    letter-spacing: 5px;
  }
}
.finis-hub-hero__title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.1;
}
.finis-hub-hero__title span {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: var(--uft_azul);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .finis-hub-hero__title {
    font-size: 48px;
  }
  .finis-hub-hero__title span {
    font-size: 80px;
  }
}
@media screen and (min-width: 992px) {
  .finis-hub-hero__title {
    font-size: 56px;
  }
  .finis-hub-hero__title span {
    font-size: 100px;
  }
}
.finis-hub-hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .finis-hub-hero__subtitle {
    font-size: 24px;
  }
}
.finis-hub-hero__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.finis-hub-hero__tagline span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .finis-hub-hero__tagline span {
    font-size: 20px;
  }
}
.finis-hub-hero__tagline .separator {
  width: 30px;
  height: 2px;
  background: var(--uft_rojo);
}
@media screen and (min-width: 768px) {
  .finis-hub-hero__tagline .separator {
    width: 50px;
  }
}
.finis-hub-hero .scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.finis-hub-hero .scroll-down img {
  width: 40px;
  filter: brightness(0) invert(1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.finis-hub-about {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .finis-hub-about {
    padding: 100px 0;
  }
}
.finis-hub-about__grid {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .finis-hub-about__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
  }
}
.finis-hub-about__main p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .finis-hub-about__main p {
    font-size: 20px;
  }
}
.finis-hub-about__lead {
  font-size: 22px;
  color: var(--uft_negro);
}
@media screen and (min-width: 768px) {
  .finis-hub-about__lead {
    font-size: 26px;
  }
}
@media screen and (min-width: 992px) {
  .finis-hub-about__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.finis-hub-highlight-box {
  background: linear-gradient(135deg, var(--uft_azul) 0%, #007a96 100%);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .finis-hub-highlight-box {
    padding: 40px;
  }
}
.finis-hub-highlight-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin: 0 0 20px 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .finis-hub-highlight-box h3 {
    font-size: 28px;
  }
}
.finis-hub-highlight-box p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.finis-hub-highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.finis-hub-highlight-box ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
}
.finis-hub-highlight-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--uft_rojo);
  border-radius: 50%;
}

.finis-hub-topics {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.finis-hub-topics__label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 20px;
}
.finis-hub-topics__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.finis-hub-topic {
  display: inline-block;
  padding: 10px 20px;
  background: #f5f5f5;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--uft_negro);
  transition: all 0.3s ease;
}
.finis-hub-topic:hover {
  background: var(--uft_azul);
  color: #fff;
}

.finis-hub-video {
  padding: 40px 0;
  background: #f9f9fb;
}
@media screen and (min-width: 768px) {
  .finis-hub-video {
    padding: 80px 0;
  }
}
.finis-hub-video__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.finis-hub-video__embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--uft_negro);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.finis-hub-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.finis-hub-video .video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}
.finis-hub-video .video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.finis-hub-video .video-placeholder .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--uft_rojo);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .finis-hub-video .video-placeholder .play-btn {
    width: 100px;
    height: 100px;
  }
}
.finis-hub-video .video-placeholder .play-btn svg {
  width: 30px;
  height: 30px;
  color: #fff;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .finis-hub-video .video-placeholder .play-btn svg {
    width: 40px;
    height: 40px;
  }
}
.finis-hub-video .video-placeholder .play-btn:hover {
  background: var(--uft_azul);
  transform: translate(-50%, -50%) scale(1.1);
}

.finis-hub-calendar {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .finis-hub-calendar {
    padding: 100px 0;
  }
}
.finis-hub-calendar__header {
  text-align: center;
  margin-bottom: 50px;
}
.finis-hub-calendar__header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.finis-hub-calendar__grid {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .finis-hub-calendar__grid {
    grid-template-columns: 2fr 1fr;
    gap: 60px;
  }
}
.finis-hub-calendar__events {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.finis-hub-calendar__sidebar {
  background: #f9f9fb;
  padding: 20px;
  border-radius: 12px;
}
@media screen and (min-width: 992px) {
  .finis-hub-calendar__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.finis-hub-calendar__sidebar .calendar-container {
  background: transparent;
}
.finis-hub-calendar .no-events {
  text-align: center;
  padding: 40px;
  background: #f9f9fb;
  border-radius: 8px;
  color: #666;
}

.finis-hub-event-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.finis-hub-event-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.finis-hub-event-card__date {
  flex-shrink: 0;
  width: 70px;
  background: var(--uft_rojo);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
}
@media screen and (min-width: 768px) {
  .finis-hub-event-card__date {
    width: 90px;
    padding: 20px;
  }
}
.finis-hub-event-card__date .day {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .finis-hub-event-card__date .day {
    font-size: 36px;
  }
}
.finis-hub-event-card__date .month {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .finis-hub-event-card__date .month {
    font-size: 16px;
  }
}
.finis-hub-event-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
@media screen and (min-width: 576px) {
  .finis-hub-event-card__content {
    flex-direction: row;
    padding: 0;
  }
}
.finis-hub-event-card__image {
  width: 100%;
  height: 120px;
  margin: 0 0 15px 0;
}
@media screen and (min-width: 576px) {
  .finis-hub-event-card__image {
    width: 150px;
    height: auto;
    margin: 0;
  }
}
.finis-hub-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.finis-hub-event-card__info {
  flex: 1;
  padding: 0;
}
@media screen and (min-width: 576px) {
  .finis-hub-event-card__info {
    padding: 15px 20px;
  }
}
.finis-hub-event-card__info h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .finis-hub-event-card__info h3 {
    font-size: 18px;
  }
}
.finis-hub-event-card__info h3 a {
  color: var(--uft_negro);
  text-decoration: none;
}
.finis-hub-event-card__info h3 a:hover {
  color: var(--uft_azul);
}
.finis-hub-event-card__info .subtitle {
  font-size: 13px;
  color: #666;
  margin: 0 0 8px 0;
}
.finis-hub-event-card__info .excerpt {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .finis-hub-event-card__info .excerpt {
    display: block;
  }
}
.finis-hub-event-card__info .link {
  font-size: 14px;
  font-weight: 600;
  color: var(--uft_azul);
  text-decoration: none;
}
.finis-hub-event-card__info .link:hover {
  text-decoration: underline;
}

.finis-hub-projects {
  padding: 60px 0;
  background: var(--uft_negro);
}
@media screen and (min-width: 768px) {
  .finis-hub-projects {
    padding: 100px 0;
  }
}
.finis-hub-projects .finis-hub-section-title {
  color: #fff;
  text-align: center;
}
.finis-hub-projects__intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 50px;
}
.finis-hub-projects__carousel {
  margin: 0 -10px;
  position: relative;
}

.owl-finis-hub-projects .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .owl-finis-hub-projects .owl-nav {
    padding: 0;
  }
}
.owl-finis-hub-projects .owl-nav .owl-prev,
.owl-finis-hub-projects .owl-nav .owl-next {
  position: relative;
  width: 44px;
  height: 44px;
  background: var(--uft_azul);
  border: none;
  border-radius: 50%;
  pointer-events: auto;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .owl-finis-hub-projects .owl-nav .owl-prev,
  .owl-finis-hub-projects .owl-nav .owl-next {
    width: 50px;
    height: 50px;
  }
}
.owl-finis-hub-projects .owl-nav .owl-prev svg,
.owl-finis-hub-projects .owl-nav .owl-next svg {
  width: 20px;
  height: 20px;
  color: #fff;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .owl-finis-hub-projects .owl-nav .owl-prev svg,
  .owl-finis-hub-projects .owl-nav .owl-next svg {
    width: 24px;
    height: 24px;
  }
}
.owl-finis-hub-projects .owl-nav .owl-prev:hover,
.owl-finis-hub-projects .owl-nav .owl-next:hover {
  background: var(--uft_rojo);
}
.owl-finis-hub-projects .owl-nav .owl-prev.disabled,
.owl-finis-hub-projects .owl-nav .owl-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media screen and (min-width: 992px) {
  .owl-finis-hub-projects .owl-nav .owl-prev {
    margin-left: -60px;
  }
}
@media screen and (min-width: 992px) {
  .owl-finis-hub-projects .owl-nav .owl-next {
    margin-right: -60px;
  }
}

.finis-hub-project-card {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  margin: 10px;
}
.finis-hub-project-card__image {
  position: absolute;
  inset: 0;
  margin: 0;
}
.finis-hub-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.finis-hub-project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 34, 46, 0.95) 0%, rgba(25, 34, 46, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  transition: background 0.3s ease;
}
.finis-hub-project-card__overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .finis-hub-project-card__overlay h3 {
    font-size: 24px;
  }
}
.finis-hub-project-card:hover .finis-hub-project-card__image img {
  transform: scale(1.05);
}
.finis-hub-project-card:hover .finis-hub-project-card__overlay {
  background: linear-gradient(to top, rgba(0, 150, 184, 0.95) 0%, rgba(0, 150, 184, 0.5) 50%, transparent 100%);
}
.finis-hub-project-card--placeholder {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.finis-hub-project-card--placeholder p {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 20px;
}

.finis-hub-news {
  padding: 60px 0;
  background: #f9f9fb;
}
@media screen and (min-width: 768px) {
  .finis-hub-news {
    padding: 100px 0;
  }
}
.finis-hub-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.finis-hub-news__header .finis-hub-section-title {
  margin: 0;
}
.finis-hub-news__view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--uft_azul);
  text-decoration: none;
}
.finis-hub-news__view-all:hover {
  text-decoration: underline;
}
.finis-hub-news__grid {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 576px) {
  .finis-hub-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .finis-hub-news__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.finis-hub-news .no-news {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #666;
}

.finis-hub-news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.finis-hub-news-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.finis-hub-news-card a {
  display: block;
  text-decoration: none;
}
.finis-hub-news-card__image {
  aspect-ratio: 16/10;
  margin: 0;
  overflow: hidden;
}
.finis-hub-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.finis-hub-news-card:hover .finis-hub-news-card__image img {
  transform: scale(1.05);
}
.finis-hub-news-card__content {
  padding: 20px;
}
.finis-hub-news-card__content time {
  display: block;
  font-size: 12px;
  color: var(--uft_azul);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.finis-hub-news-card__content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--uft_negro);
  margin: 0;
  line-height: 1.4;
}
.finis-hub-news-card__content p {
  font-size: 14px;
  color: #666;
  margin: 10px 0 0 0;
  line-height: 1.5;
}
@media screen and (min-width: 576px) {
  .finis-hub-news-card--featured {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.finis-hub-news-card--featured .finis-hub-news-card__image {
  aspect-ratio: 16/12;
}
@media screen and (min-width: 576px) {
  .finis-hub-news-card--featured .finis-hub-news-card__image {
    aspect-ratio: auto;
    height: 250px;
  }
}
.finis-hub-news-card--featured .finis-hub-news-card__content h3 {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .finis-hub-news-card--featured .finis-hub-news-card__content h3 {
    font-size: 24px;
  }
}
.finis-hub-news-card--featured .finis-hub-news-card__content p {
  display: block;
}

.finis-hub-contact {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .finis-hub-contact {
    padding: 100px 0;
  }
}
.finis-hub-contact__grid {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .finis-hub-contact__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}
.finis-hub-contact__info p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}
.finis-hub-contact__details {
  margin-top: 30px;
}
.finis-hub-contact__details .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.finis-hub-contact__details .contact-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--uft_azul);
}
.finis-hub-contact__details .contact-item a, .finis-hub-contact__details .contact-item span {
  font-size: 16px;
  color: var(--uft_negro);
  text-decoration: none;
  line-height: 1.5;
}
.finis-hub-contact__details .contact-item a:hover {
  color: var(--uft_azul);
}
.finis-hub-contact__form {
  background: #f9f9fb;
  padding: 30px;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .finis-hub-contact__form {
    padding: 40px;
  }
}
.finis-hub-contact__form .form-group {
  margin-bottom: 20px;
}
.finis-hub-contact__form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--uft_negro);
  margin-bottom: 8px;
}
.finis-hub-contact__form .form-group input,
.finis-hub-contact__form .form-group select,
.finis-hub-contact__form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.3s ease;
}
.finis-hub-contact__form .form-group input:focus,
.finis-hub-contact__form .form-group select:focus,
.finis-hub-contact__form .form-group textarea:focus {
  outline: none;
  border-color: var(--uft_azul);
}
.finis-hub-contact__form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.finis-hub-contact__form .btn-submit {
  width: 100%;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--uft_azul);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.finis-hub-contact__form .btn-submit:hover {
  background: var(--uft_rojo);
}

.finis-hub-partners {
  padding: 60px 0;
  background: #f9f9fb;
}
@media screen and (min-width: 768px) {
  .finis-hub-partners {
    padding: 100px 0;
  }
}
.finis-hub-partners__header {
  text-align: center;
  margin-bottom: 50px;
}
.finis-hub-partners__header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.finis-hub-partners__categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .finis-hub-partners__categories {
    gap: 50px;
  }
}
.finis-hub-partners__category h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--uft_azul);
  margin: 0 0 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .finis-hub-partners__category h3 {
    text-align: left;
  }
}
.finis-hub-partners__logos .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.finis-hub-partners__logos .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.finis-hub-partners__logos .owl-dots .owl-dot.active {
  background: var(--uft_azul);
}

.finis-hub-partner {
  display: block;
  text-decoration: none;
}
.finis-hub-partner__logo {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .finis-hub-partner__logo {
    min-height: 120px;
    padding: 25px;
  }
}
.finis-hub-partner__logo span {
  font-size: 13px;
  font-weight: 600;
  color: var(--uft_negro);
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .finis-hub-partner__logo span {
    font-size: 14px;
  }
}
.finis-hub-partner__logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .finis-hub-partner__logo img {
    max-height: 70px;
  }
}
.finis-hub-partner:hover .finis-hub-partner__logo {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  border-color: var(--uft_azul);
}
.finis-hub-partner:hover .finis-hub-partner__logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.finis-hub-resources {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .finis-hub-resources {
    padding: 100px 0;
  }
}
.finis-hub-resources__header {
  text-align: center;
  margin-bottom: 40px;
}
.finis-hub-resources__header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.finis-hub-resources__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .finis-hub-resources__filters {
    gap: 15px;
    margin-bottom: 50px;
  }
}
.finis-hub-resources__filter {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--uft_negro);
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .finis-hub-resources__filter {
    padding: 12px 24px;
  }
}
.finis-hub-resources__filter:hover {
  background: #eee;
}
.finis-hub-resources__filter.active {
  background: var(--uft_azul);
  border-color: var(--uft_azul);
  color: #fff;
}
.finis-hub-resources__grid {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 576px) {
  .finis-hub-resources__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .finis-hub-resources__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

.finis-hub-resource {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .finis-hub-resource {
    padding: 25px;
    gap: 20px;
  }
}
.finis-hub-resource:hover {
  border-color: var(--uft_azul);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.finis-hub-resource:hover .finis-hub-resource__icon {
  background: var(--uft_azul);
}
.finis-hub-resource:hover .finis-hub-resource__icon svg {
  stroke: #fff;
}
.finis-hub-resource__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .finis-hub-resource__icon {
    width: 60px;
    height: 60px;
  }
}
.finis-hub-resource__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--uft_azul);
  transition: stroke 0.3s ease;
}
@media screen and (min-width: 768px) {
  .finis-hub-resource__icon svg {
    width: 28px;
    height: 28px;
  }
}
.finis-hub-resource__content {
  flex: 1;
  min-width: 0;
}
.finis-hub-resource__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--uft_azul);
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .finis-hub-resource__category {
    font-size: 12px;
  }
}
.finis-hub-resource h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--uft_negro);
  margin: 0 0 8px 0;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .finis-hub-resource h3 {
    font-size: 16px;
  }
}
.finis-hub-resource p {
  font-size: 13px;
  color: #666;
  margin: 0 0 10px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .finis-hub-resource p {
    font-size: 14px;
  }
}
.finis-hub-resource__meta {
  font-size: 12px;
  font-weight: 500;
  color: #999;
}

html, body {
  min-width: 320px;
  width: 100%;
  padding: 0px;
  margin: 0px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  height: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

figure img {
  width: 100%;
}

/* fonts */
.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* fonts end */
a.btn-custom {
  display: inline-block !important;
  width: auto;
  padding: 15px 26px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid #000;
  text-align: center;
  color: #000;
  line-height: 16px;
  text-decoration: none;
  font-size: 14px;
  font-style: italic;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

a.btn-custom:hover {
  background: #000;
  color: #fff;
}

.imgLiquid {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.imgLiquid:not(.masonry-figure) > img {
  opacity: 0;
}

.owl-carousel {
  touch-action: manipulation !important;
  -webkit-touch-action: manipulation !important;
  -moz-touch-action: manipulation !important;
  -o-touch-action: manipulation !important;
}

button:active, button:focus {
  outline: none;
}

.box {
  display: table;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.box-inner {
  display: table-cell;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}

h2.section-title {
  font-size: 36px;
  color: #000;
  margin: 30px 0 30px 0;
  text-align: center;
}

h5.bajada-title {
  font-size: 14px;
  color: #000;
  margin: 0 0 30px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 200;
}

h5.subida-title {
  font-size: 14px;
  color: #666;
  margin: 30px 0 0 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 200;
}

p {
  font-size: 16px;
  color: #666;
  text-align: left;
  font-weight: 400;
}

p strong, p b {
  font-weight: 600;
}

.bg-gray {
  background-color: #F9F9FB !important;
}

@media screen and (min-width: 992px) {
  h2.section-title {
    font-size: 50px;
    margin: 50px 0 50px 0;
  }
  h5.bajada-title {
    font-size: 18px;
    margin: 0 0 50px 0;
  }
  h5.subida-title {
    font-size: 18px;
    margin: 50px 0 0 0;
  }
  p {
    font-size: 20px;
  }
}
/* first-content - transversal */
section.first-content p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #333333;
}

/* first-content - transversal */
/*sobre nosotros*/
.owl-contador {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 50px 0 0 0;
}

.owl-contador p {
  margin: 10px 0 0 0;
}

.box-count {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.box-count .dato {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 100px;
  height: 36px;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -24px;
  text-align: center;
  font-weight: bold;
}

.box-count .dato span {
  font-size: 30px;
}

.owl-contador figure {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.owl-contador figure img {
  width: 100%;
}

.owl-contador .owl-dots {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.owl-contador .owl-dots .owl-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  margin: 6px 4px;
  padding: 0;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  background: #D9D9D9;
}

.owl-contador .owl-dots .owl-dot.active {
  background: #0099BB;
}

@media screen and (min-width: 768px) {
  .box-count .dato {
    width: 160px;
    height: 50px;
    margin-left: -80px;
    margin-top: -24px;
  }
  .box-count .dato span {
    font-size: 40px;
  }
  .owl-contador .owl-dots {
    margin: 30px auto;
  }
  .owl-contador .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
  }
}
/*sobre nosotros end*/
/* direcciones */
section.direcciones form {
  display: block;
  position: relative;
  overflow: visible;
  width: 100%;
  margin: 0 0 100px 0;
}

section.direcciones .nice-select {
  width: 85%;
  left: left;
}

section.direcciones input {
  width: 15%;
  height: 50px;
  float: left;
  border: 0px;
  background: transparent;
  text-align: center;
  line-height: 50px;
  text-decoration: underline;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

section.direcciones input:hover {
  background: #000;
  color: #fff;
}

/* direcciones end */
/* big notes */
section.big-notes h3 {
  margin-bottom: 15px;
}

section.big-notes h4 {
  font-size: 16px;
  margin: 0 0 15px 0;
}

section.big-notes p {
  text-align: left;
  margin: 0;
  margin-bottom: 15px;
}

section.big-notes figure {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}

section.big-notes figure img {
  width: 100%;
}

/* big notes end */
section.FinisCrea {
  background-image: url("../images/bg-FinisCrea.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 362px;
  display: flex;
  align-items: center;
}

section.FinisCrea figure {
  max-width: 219px;
}

section.FinisCrea p {
  color: #FFFFFF;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
}

section.FinisCrea a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

section.portafolio-proyectos {
  margin: 50px auto;
}

section.portafolio-proyectos .card-portafolio {
  margin: 15px 0;
}

section.portafolio-proyectos .card-portafolio p.title {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}

section.portafolio-proyectos .card-portafolio p.content {
  font-size: 16px;
  text-align: left;
}

section.portafolio-proyectos .card-portafolio a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #000000;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

section.divulgacion-cientifica {
  margin: 50px auto;
}

section.divulgacion-cientifica p.sub-title {
  font-size: 20px;
  font-weight: bold;
}

section.divulgacion-cientifica p.content {
  font-size: 20px;
}

section.logos-asociados .card {
  min-height: 114px;
  display: flex;
  align-items: center;
  border: 0;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
}

section.logos-asociados .card-body {
  display: flex;
  align-items: center;
}

section.logos-asociados .card-body figure {
  margin: 0 !important;
}

section.linkedin {
  margin: 50px auto;
}

section.follow .row .col-12,
section.follow .follow-content {
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.follow .row .col-12 p,
section.follow .follow-content p {
  font-size: 18px;
  font-weight: bold;
}

section.follow p, section.follow figure {
  margin: 13px;
}

section.follow .follow-content figure {
  width: 40px;
  height: 40px;
}

section.follow .follow-content figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.programas {
  margin: 50px auto;
}

section.programas .card {
  padding: 0;
  border: 0px;
  position: relative;
}

section.programas .card p {
  position: absolute;
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
  color: #FFFFFF;
  bottom: 0;
  text-align: left;
  padding: 26px;
}

section.ejes {
  margin: 50px auto;
}

section.ejes .box {
  position: relative;
}

section.ejes .box p {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  position: absolute;
  bottom: 26px;
  left: 26px;
}

section.reglamentos {
  margin: 50px auto;
}

section.reglamentos .box {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 286px;
  padding: 6px;
}

section.reglamentos .box figure {
  max-width: 84px;
}

section.reglamentos .box p.title {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

section.reglamentos .box p.content {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

/* carousel parrafo */
.owl-parrafo {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}

.owl-parrafo:before {
  content: " ";
  display: block;
  position: absolute;
  overflow: hidden;
  width: 100px;
  height: 1px;
  background: #0099BB;
  left: 0;
  bottom: 50px;
}

.owl-parrafo:after {
  content: " ";
  display: block;
  position: absolute;
  overflow: hidden;
  width: 100px;
  height: 1px;
  background: #0099BB;
  right: 0;
  bottom: 50px;
}

.owl-parrafo figure {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 320px;
  margin: 0;
}

.owl-parrafo .owl-dots {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.owl-parrafo .owl-dots .owl-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  margin: 6px 4px;
  padding: 0;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  background: #D9D9D9;
}

.owl-parrafo .owl-dots .owl-dot.active {
  background: #0099BB;
}

@media screen and (min-width: 768px) {
  .owl-parrafo .owl-dots {
    margin: 30px auto;
  }
  .owl-parrafo .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
  }
  .owl-parrafo:before {
    width: 150px;
    bottom: 38px;
  }
  .owl-parrafo:after {
    width: 150px;
    bottom: 38px;
  }
}
/* carousel parrafo */
/* otras-interesar */
.otras-interesar {
  background: #E1E0E0;
}

.owl-otras-interesar {
  display: block;
  position: relative;
  overflow: visible;
  width: calc(100% - 100px);
  padding-bottom: 50px;
  margin: 0 auto;
}

.box-interesar {
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.14);
  padding: 15px;
  overflow: visible;
}

.otras-interesar figure {
  display: block;
  position: relative;
  overflow: hidden;
  overflow: hidden;
  width: 100%;
  height: 200px;
  margin: 0 0 15p0;
}

.otras-interesar span.fecha {
  display: block;
  position: relative;
  margin: 15px 0;
  font-size: 12px;
  border-bottom: 1px solid #000;
  width: 80px;
  padding-bottom: 15px;
}

.box-interesar a {
  text-decoration: none;
  font-style: italic;
  color: #000;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  opacity: 1;
}

.box-interesar a:hover {
  opacity: 0.4;
}

.source-attribution {
  font-size: 14px;
  color: #666;
  margin: 0;
  padding-bottom: 30px;
}

.source-attribution a {
  color: var(--uft_azul);
  text-decoration: none;
  font-weight: 500;
}

.source-attribution a:hover {
  text-decoration: underline;
}

.owl-otras-interesar .owl-nav {
  display: block;
  position: absolute;
  overflow: visible;
  height: 0;
  top: 200px;
  left: 0;
  width: 100%;
}

.owl-otras-interesar .owl-nav .owl-prev {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 50px;
  height: 60px;
  background: url(../images/arrow-left-gray.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  left: -50px;
  text-indent: -9000px;
}

.owl-otras-interesar .owl-nav .owl-next {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 50px;
  height: 60px;
  background: url(../images/arrow-right-gray.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  right: -50px;
  text-indent: -9000px;
}

/* otras-interesar end */
/*BIOSEGURIDAD*/
section.bioseguridad {
  background-image: url("../images/bg-bioseguridad.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 362px;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

section.bioseguridad h3 {
  color: #FFFFFF;
  text-align: left;
}

section.bioseguridad p {
  color: #FFFFFF;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
}

section.bioseguridad a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

/*BIOSEGURIDAD*/
/*SOBRE NOSOTROS*/
section.nuestro-equipo {
  margin: 50px auto;
}

section.nuestro-equipo .box {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  margin-top: 10px;
}

section.nuestro-equipo .box p.title {
  font-size: 26px !important;
  font-weight: 500;
  text-align: center;
  margin: 5px auto;
}

section.nuestro-equipo .box p.cargo {
  font-size: 14px !important;
  font-weight: 500;
  text-align: center;
  margin: 5px auto;
}

section.nuestro-equipo .box p.description {
  font-size: 14px !important;
  font-weight: 300;
  text-align: center;
  margin: 5px auto;
}

section.nuestro-equipo .box .contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

section.nuestro-equipo .box .contacto p {
  font-size: 14px;
  font-weight: 500;
}

section.nuestro-equipo .box .contacto figure {
  background-size: 100% !important;
  margin-right: 8px;
}

/*SOBRE NOSOTROS*/
/*single centros*/
section.single-centros-info {
  margin: 50px auto;
}

section.single-centros-info .box {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  margin-top: 30px;
}

section.single-centros-info .box p.box-title {
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  font-weight: 400;
  text-align: center !important;
  margin: 10px auto 0px auto;
}

section.single-centros-info .box p.box-bajada {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  font-weight: 400;
  text-align: center !important;
  margin: 10px auto 30px auto;
}

section.single-centros-info ul.list-point li {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
}

section.single-centros-info ul.list-point li span {
  color: #707070;
}

section.single-centros-info ul.list-point {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

section.single-centros-info ul.list-point li {
  position: relative;
  padding-left: 22px; /* espacio para el punto */
  margin-bottom: 6px; /* separación entre items */
}

/* Punto personalizado */
section.single-centros-info ul.list-point li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px; /* ajusta verticalmente si quieres */
  width: 11px;
  height: 11px;
  background-color: #0099BB;
  border-radius: 50%;
}

section.otros-centros {
  margin: 50px auto;
}

section.otros-centros a {
  cursor: pointer;
}

section.otros-centros p.nombre-centro {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}

/*single centros*/
/*laboratorios*/
section.nuestros-laboratorios {
  margin: 50px auto;
}

section.nuestros-laboratorios p.content {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

/*laboratorios*/
/*institutos*/
section.nuestros-institutos {
  margin: 50px auto;
}

section.nuestros-institutos p.content {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

/*institutos*/
/*doctorados*/
section.becas {
  background-image: url("../images/bg-becas.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 362px;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

section.becas h3 {
  color: #FFFFFF;
  text-align: left;
}

section.becas p {
  color: #FFFFFF;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
}

section.becas a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

/*doctorados*/
/*institutos*/
section.alianzas {
  margin: 50px auto;
}

section.alianzas .col-12.col-md-8 figure {
  max-width: 150px;
}

section.alianzas p.content {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

section.alianzas a {
  color: #000000;
  font-style: italic;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

section.alianzas a img {
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  position: relative;
}

section.alianzas a:hover img {
  margin-left: 10px;
}

/*institutos*/
/*vinculacion*/
section.banner-pregrado {
  background-image: url("../images/bg-pregado.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 362px;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

section.banner-pregrado h3 {
  color: #FFFFFF;
  text-align: left;
}

section.banner-pregrado p {
  color: #FFFFFF;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
}

section.banner-pregrado a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

section.banner-postgrado {
  background-image: url("../images/bg-postgrado.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 362px;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

section.banner-postgrado h3 {
  color: #FFFFFF;
  text-align: left;
}

section.banner-postgrado p {
  color: #FFFFFF;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
}

section.banner-postgrado a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
}

section.pregrado {
  margin-top: 50px;
}

section.pregrado a {
  color: #000000;
  font-style: italic;
}

/*vinculacion*/
/*single direccion*/
section.derechos-autor {
  margin: 50px auto;
}

section.derechos-autor .accordion .card {
  margin: 25px auto;
  border: 0px solid #B4B4B4;
  border-radius: 0;
}

section.derechos-autor .accordion .card .card-body p {
  font-size: 20px;
  line-height: 32px;
  color: #000000;
}

section.derechos-autor .accordion .card-header {
  background-color: transparent;
  border: 1px solid #B4B4B4;
}

section.derechos-autor .accordion > .card > .card-header {
  margin-bottom: 0;
}

section.derechos-autor .accordion .card-header button.btn-link {
  color: #000000;
  font-size: 20px;
}

/* Header completo en naranjo cuando el botón está expandido */
section.derechos-autor .accordion .card-header button[aria-expanded=true] {
  background-color: #F23314 !important;
  color: #fff !important;
  width: 100%;
}

/* Para que el header adopte el mismo color detrás del botón */
section.derechos-autor .accordion .card-header {
  background-color: transparent !important;
  padding: 0;
}

section.derechos-autor .accordion .card-header button {
  display: block;
  width: 100%;
  padding: 14px 20px;
  text-align: left;
  border-radius: 0;
}

section.derechos-autor .accordion .card-header .btn-link:hover {
  text-decoration: none;
}

/*single direccion*/
/*single portafolio innovacion*/
section.first-content .box {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  margin-top: 0px;
}

section.first-content .box .hero-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

section.first-content .box .hero-box figure {
  max-width: 62px;
  margin-right: 16px;
}

section.first-content .box .hero-box p.hero-title {
  font-size: 24px;
  line-height: 100%;
}

section.first-content .box p.box-title {
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  font-weight: 400;
  text-align: center !important;
  margin: 10px auto 0px auto;
}

section.first-content .box p.box-bajada {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  font-weight: 400;
  text-align: center !important;
  margin: 10px auto 30px auto;
}

section.first-content .box ul.list-point li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000000;
  margin: 13px auto;
}

section.first-content .box ul.list-point li span {
  color: #707070;
}

section.first-content .box ul.list-point {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

section.first-content .box ul.list-point li {
  position: relative;
  padding-left: 22px; /* espacio para el punto */
  margin-bottom: 6px; /* separación entre items */
}

/* Punto personalizado */
section.first-content .box ul.list-point li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px; /* ajusta verticalmente si quieres */
  width: 11px;
  height: 11px;
  background-color: #0099BB;
  border-radius: 50%;
}

/*single portafolio innovacion*/
/*nuestro impacto*/
section.impacto {
  margin: 50px auto;
}

section.impacto .stats-box p {
  font-size: 20px;
  font-weight: 400;
}

section.impacto .stats-box {
  line-height: 1.45;
  font-size: 20px;
  font-weight: 400;
}

section.impacto .stats-box .title {
  font-weight: 700;
  margin-bottom: 8px;
}

section.impacto .stats-box .subtitle {
  font-weight: 600;
  margin: 12px 0 4px;
}

section.impacto .stats-box .subtitle a {
  color: #000000;
  text-decoration: underline;
}

section.impacto .stats-box p {
  margin: 4px 0;
}

section.impacto .stats-box ul {
  padding-left: 20px;
  margin-top: 6px;
}

section.impacto .stats-box ul li {
  margin-bottom: 4px;
}
