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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #ffffff;
  position: relative;
}

.global-bg-ellipse {
  position: absolute;
  width: 1477px;
  height: 1136px;
  top: 1457px;
  left: 433px;
  border-radius: 1477px;
  opacity: 0.5;
  background: #35A2A8;
  filter: blur(254.5px);
  z-index: -2;
  pointer-events: none;
  transition: top 0.4s ease;
}

body.page-internal .global-bg-ellipse {
  top: 450px;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
  z-index: -1;
  pointer-events: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: #141414;
  color: #ffffff;
  font-size: 0.875rem;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

body {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #141414;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-sequence:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal-sequence:nth-child(2) {
  transition-delay: 0.2s;
}
.reveal-sequence:nth-child(3) {
  transition-delay: 0.3s;
}
.reveal-sequence:nth-child(4) {
  transition-delay: 0.4s;
}
.reveal-sequence:nth-child(5) {
  transition-delay: 0.5s;
}
.reveal-sequence:nth-child(6) {
  transition-delay: 0.6s;
}
.reveal-sequence:nth-child(7) {
  transition-delay: 0.7s;
}
.reveal-sequence:nth-child(8) {
  transition-delay: 0.8s;
}
.reveal-sequence:nth-child(9) {
  transition-delay: 0.9s;
}
.reveal-sequence:nth-child(10) {
  transition-delay: 1s;
}

.hero-reveal {
  animation: heroFadeUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 1rem;
  }
}

.container-fluid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 767.98px) {
  .container-fluid {
    padding: 0 1rem;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header .container-fluid {
  height: 100%;
}
.site-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header .site-branding {
  flex-shrink: 0;
  position: relative;
  z-index: 1100;
  transition: opacity 0.3s ease;
}
.site-header .site-branding .custom-logo-link {
  display: block;
}
.site-header .site-branding .custom-logo-link img {
  width: 155px;
  height: auto;
  transition: opacity 0.4s ease;
}
@media (max-width: 767.98px) {
  .site-header .site-branding .custom-logo-link img {
    width: 100px;
  }
}
.site-header .site-branding .custom-logo-link .logo-dark {
  display: none;
}
.site-header .site-branding .custom-logo-link .logo-light {
  display: block;
}
.site-header.menu-active .site-branding {
  opacity: 0;
  pointer-events: none;
}
.site-header .main-navigation {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .site-header .main-navigation {
    display: none;
  }
}
.site-header .main-navigation .menu-pill-container {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 2px;
  transition: border-color 0.4s ease;
}
.site-header .main-navigation .menu-pill-container ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}
.site-header .main-navigation .menu-pill-container ul li {
  margin: 0;
}
.site-header .main-navigation .menu-pill-container ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
}
@media (max-width: 991.98px) {
  .site-header .main-navigation .menu-pill-container ul li a {
    padding: 0 10px;
    font-size: 14px;
  }
}
.site-header .main-navigation .menu-pill-container ul li a {
  color: #ffffff;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  text-decoration: none;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.4s ease, background-color 0.2s ease;
}
.site-header .main-navigation .menu-pill-container ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.site-header .main-navigation .menu-pill-container ul li.current-menu-item a {
  background-color: #ffffff;
  color: #141414;
}
.site-header .header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: xl-down) {
  .site-header .header-actions {
    gap: 4px;
  }
}
.site-header .header-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
}
@media (max-width: 991.98px) {
  .site-header .header-actions .btn {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.site-header .header-actions .btn {
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.32px;
  border: 1px solid transparent;
}
@media (max-width: 767.98px) {
  .site-header .header-actions .btn {
    display: none;
  }
}
.site-header .header-actions .btn.btn-outline-accent {
  color: #66bb5f;
  border-color: #66bb5f;
}
.site-header .header-actions .btn.btn-outline-accent:hover {
  background-color: #66bb5f;
  color: #ffffff;
}
.site-header .header-actions .btn.btn-outline-primary {
  color: #35a2a8;
  border-color: #35a2a8;
}
.site-header .header-actions .btn.btn-outline-primary:hover {
  background-color: #35a2a8;
  color: #ffffff;
}
.site-header .hamburger-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .site-header .hamburger-menu {
    display: flex;
  }
}
.site-header .hamburger-menu span {
  height: 1px;
  width: 18px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.site-header .mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 92vw;
  height: 100vh;
  height: 100dvh;
  background-color: #35a2a8;
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 16px 0 0 16px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}
.site-header .mobile-menu-overlay.active {
  right: 0;
}
.site-header .mobile-menu-overlay .mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 84px;
}
.site-header .mobile-menu-overlay .mobile-menu-header .close-menu {
  background: #141414;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.site-header .mobile-menu-overlay .mobile-menu-header .close-menu svg {
  width: 20px;
  height: 20px;
}
.site-header .mobile-menu-overlay .mobile-menu-header .close-menu:hover {
  transform: rotate(90deg);
}
.site-header .mobile-menu-overlay .mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 40px;
}
.site-header .mobile-menu-overlay .mobile-primary-menu {
  list-style: none;
  padding: 0;
  margin: 40px 0 60px 0;
}
.site-header .mobile-menu-overlay .mobile-primary-menu li {
  margin-bottom: 16px;
}
.site-header .mobile-menu-overlay .mobile-primary-menu li a {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #141414;
  text-decoration: none;
  white-space: nowrap;
}
.site-header .mobile-menu-overlay .mobile-primary-menu li a:hover {
  opacity: 0.7;
}
.site-header .mobile-menu-overlay .mobile-secondary-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: auto;
}
.site-header .mobile-menu-overlay .mobile-secondary-links .sec-link {
  font-family: "roc-grotesk", sans-serif;
  font-size: 14px;
  color: #141414;
  text-decoration: underline;
}
.site-header .mobile-menu-overlay .mobile-actions {
  display: flex;
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid rgba(20, 20, 20, 0.2);
}
.site-header .mobile-menu-overlay .mobile-actions .btn {
  flex: 1;
  min-width: 0;
  height: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.28px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}
@media (max-width: 575.98px) {
  .site-header .mobile-menu-overlay .mobile-actions .btn {
    font-size: 11px;
    letter-spacing: 0.2px;
  }
}
.site-header .mobile-menu-overlay .mobile-actions .btn.btn-dark-outline {
  border-color: #141414;
  color: #141414;
}
.site-header .mobile-menu-overlay .mobile-actions .btn.btn-white-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.site-header.site-header--scrolled {
  background-color: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.site-header.site-header--scrolled .site-branding .logo-dark {
  display: block;
}
.site-header.site-header--scrolled .site-branding .logo-light {
  display: none;
}
.site-header.site-header--scrolled .hamburger-menu {
  border-color: #141414;
}
.site-header.site-header--scrolled .hamburger-menu span {
  background-color: #141414;
}
.site-header.site-header--scrolled .main-navigation .menu-pill-container {
  border-color: #141414;
}
.site-header.site-header--scrolled .main-navigation .menu-pill-container ul li a {
  color: #141414;
}
.site-header.site-header--scrolled .main-navigation .menu-pill-container ul li a:hover {
  background-color: rgba(20, 20, 20, 0.05);
}
.site-header.site-header--scrolled .main-navigation .menu-pill-container ul li.current-menu-item a {
  background-color: #141414;
  color: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: 0;
  z-index: 20;
}
@media (max-width: 767.98px) {
  .site-footer {
    margin-top: 0;
  }
}
.site-footer .footer-top-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 95px;
  color: #ffffff;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .site-footer .footer-top-section {
    padding-top: 60px;
  }
}
.page-template-page-admin-cartera .site-footer .footer-top-section {
  background-color: #35a2a8;
}
.site-footer .footer-top-section .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.site-footer .footer-top-section .footer-bg .bg-shape {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.site-footer .footer-top-section .footer-top-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-footer .footer-top-section .footer-brand-header {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .site-footer .footer-top-section .footer-brand-header {
    margin-bottom: 32px;
  }
}
.site-footer .footer-top-section .footer-brand-header .footer-logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.site-footer .footer-top-section .footer-brand-header .footer-logo img {
  width: 238px;
  height: auto;
}
@media (max-width: 767.98px) {
  .site-footer .footer-top-section .footer-brand-header .footer-logo img {
    width: 146px;
  }
}
.site-footer .footer-top-section .footer-brand-header .footer-brand-info p {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  .site-footer .footer-top-section .footer-brand-header .footer-brand-info p {
    font-size: 12px;
    max-width: 328px;
  }
}
.site-footer .footer-top-section .footer-nav {
  width: 100%;
}
.site-footer .footer-top-section .footer-nav .footer-menu,
.site-footer .footer-top-section .footer-nav ul {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer .footer-top-section .footer-nav .footer-menu li,
.site-footer .footer-top-section .footer-nav ul li {
  display: inline-block;
  margin: 0;
}
.site-footer .footer-top-section .footer-nav .footer-menu li a,
.site-footer .footer-top-section .footer-nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.48px;
  transition: opacity 0.2s;
}
.site-footer .footer-top-section .footer-nav .footer-menu li a:hover,
.site-footer .footer-top-section .footer-nav ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  .site-footer .footer-top-section .footer-nav .footer-menu,
  .site-footer .footer-top-section .footer-nav ul {
    gap: 16px 32px;
  }
}
.site-footer .footer-bottom-section {
  background-color: #141414;
  padding: 60px 0;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .site-footer .footer-bottom-section {
    padding: 40px 0;
  }
}
.site-footer .footer-bottom-section .footer-bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .footer-bottom-section .footer-legal-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .site-footer .footer-bottom-section .footer-legal-icons {
    margin-bottom: 32px;
    gap: 16px;
  }
}
.site-footer .footer-bottom-section .footer-legal-icons img {
  height: 32px;
  width: auto;
}
.site-footer .footer-bottom-section .footer-disclaimer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .site-footer .footer-bottom-section .footer-disclaimer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
}
.site-footer .footer-bottom-section .footer-disclaimer-grid .disclaimer-col p {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
  line-height: 1.3;
  color: #FFFFFF;
  opacity: 0.5;
  text-align: justify;
}
@media (max-width: 767.98px) {
  .site-footer .footer-bottom-section .footer-disclaimer-grid .disclaimer-col p {
    text-align: center;
    max-width: 328px;
  }
}
.site-footer .footer-bottom-section .footer-centered-links {
  display: flex;
  gap: 32px;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .site-footer .footer-bottom-section .footer-centered-links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.site-footer .footer-bottom-section .footer-centered-links a {
  color: #FFFFFF;
  text-decoration: underline;
  font-family: "roc-grotesk", sans-serif;
  font-size: 14px;
  opacity: 1;
  transition: opacity 0.2s;
}
.site-footer .footer-bottom-section .footer-centered-links a:hover {
  opacity: 0.7;
}
.site-footer .footer-dev-credit {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  padding: 12px 0;
  margin-top: 24px;
  font-family: "roc-grotesk", sans-serif;
}
.site-footer .footer-dev-credit a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
}
.site-footer .footer-dev-credit a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.hero-block {
  position: relative;
  height: 768px;
  background-color: #000;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .hero-block {
    height: 480px;
  }
}
.hero-block .hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-block .hero-video-container .hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-block .hero-mask {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 4;
  line-height: 0;
}
.hero-block .hero-mask img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-block .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}
.hero-block .container {
  position: relative;
  z-index: 3;
  padding-left: 32px;
  padding-top: 4rem;
}
@media (max-width: 767.98px) {
  .hero-block .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.hero-block .hero-content {
  max-width: 1074px;
}
@media (max-width: 767.98px) {
  .hero-block .hero-content {
    max-width: 295px;
  }
}
.hero-block .hero-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 32px;
  color: #ffffff;
  text-shadow: none;
}
@media (max-width: 991.98px) {
  .hero-block .hero-title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .hero-block .hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.hero-block .btn-primary.hero-btn {
  background-color: #35a2a8;
  color: #ffffff;
  border-radius: 100px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  transition: background-color 0.3s;
  text-decoration: none;
  height: 60px;
}
@media (max-width: 767.98px) {
  .hero-block .btn-primary.hero-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
}
.hero-block .btn-primary.hero-btn:hover {
  background-color: rgb(40.7692307692, 124.6153846154, 129.2307692308);
}
.hero-block .btn-primary.hero-btn .icon-chevron-right {
  display: flex;
  align-items: center;
}
.hero-block .btn-primary.hero-btn .icon-chevron-right svg {
  width: 20px;
  height: 20px;
}

.funds-grid-block {
  padding: 50px 0 80px 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .funds-grid-block {
    padding: 40px 0;
  }
}
.funds-grid-block .section-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #141414;
  margin-bottom: 40px;
  max-width: 862px;
}
@media (max-width: 767.98px) {
  .funds-grid-block .section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.funds-grid-block .funds-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .funds-grid-block .funds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .funds-grid-block .funds-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .funds-grid-block .funds-grid {
    gap: 16px;
    margin-bottom: 32px;
  }
}
.funds-grid-block .fund-card {
  background: #ffffff;
  border: 1px solid #c6c6c6;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 150px;
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .funds-grid-block .fund-card {
    padding: 20px;
    min-height: 0;
  }
}
.funds-grid-block .fund-card:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.funds-grid-block .fund-card:hover .fund-link-btn {
  background-color: #35a2a8;
}
.funds-grid-block .fund-card:hover .fund-link-btn svg path {
  stroke: #ffffff;
}
.funds-grid-block .fund-card .fund-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: #35a2a8;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .funds-grid-block .fund-card .fund-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.funds-grid-block .fund-card .fund-desc {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #141414;
  margin: 0;
  padding-right: 40px;
}
@media (max-width: 767.98px) {
  .funds-grid-block .fund-card .fund-desc {
    font-size: 14px;
    max-width: 228px;
  }
}
.funds-grid-block .fund-card .fund-link-btn {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #35a2a8;
  border-radius: 4px;
  transition: all 0.2s ease;
}
@media (max-width: 767.98px) {
  .funds-grid-block .fund-card .fund-link-btn {
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
  }
}
.funds-grid-block .fund-card .fund-link-btn .icon-chevron-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.funds-grid-block .fund-card .fund-link-btn .icon-chevron-right svg {
  width: 18px;
  height: 18px;
}
.funds-grid-block .cta-container .funds-cta-btn {
  background-color: #35a2a8;
  color: #ffffff;
  border-radius: 100px;
  padding: 0 32px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  transition: background-color 0.3s;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .funds-grid-block .cta-container .funds-cta-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}
.funds-grid-block .cta-container .funds-cta-btn:hover {
  background-color: rgb(40.7692307692, 124.6153846154, 129.2307692308);
}

.about-section-block {
  position: relative;
  padding: 100px 32px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .about-section-block {
    padding: 60px 0;
  }
}
.about-section-block .about-bg-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .about-section-block .about-bg-shape {
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 0;
  }
}
.about-section-block .about-bg-shape .bg-pattern {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section-block .about-bg-shape .bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(53, 162, 168, 0.81);
}
.about-section-block .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
.about-section-block .about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 60px;
}
@media (max-width: 767.98px) {
  .about-section-block .about-content-wrapper {
    flex-direction: column;
    padding: 0;
    gap: 32px;
  }
}
.about-section-block .about-image {
  flex: 0 0 490px;
  height: 596px;
  border-radius: 12px;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.about-section-block .about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .about-section-block .about-image {
    flex: 0 0 auto;
    width: 100%;
    height: 269px;
    aspect-ratio: auto;
  }
}
.about-section-block .about-text {
  flex: 1;
  color: #ffffff;
}
.about-section-block .about-text .section-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .about-section-block .about-text .section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.about-section-block .about-text .about-btn {
  background-color: #ffffff;
  color: #141414;
  border-radius: 100px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 60px;
}
@media (max-width: 767.98px) {
  .about-section-block .about-text .about-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
}
.about-section-block .about-text .about-btn:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}

.cta-section-block {
  position: relative;
  padding: 80px 32px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .cta-section-block {
    padding: 40px 0;
  }
}
.cta-section-block .cta-bg-wrapper {
  position: relative;
  width: 1400px;
  height: 188px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .cta-section-block .cta-bg-wrapper {
    width: calc(100% - 2rem);
    height: 158px;
    border-radius: 12px;
  }
}
.cta-section-block .cta-bg-wrapper .cta-bg-dark {
  position: absolute;
  inset: 0;
  background-color: #141414;
}
.cta-section-block .cta-bg-wrapper .cta-bg-gradient {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
}
.cta-section-block .cta-bg-wrapper .cta-bg-gradient img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-section-block .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.cta-section-block .cta-content {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 767.98px) {
  .cta-section-block .cta-content {
    gap: 16px;
    padding: 0 20px;
  }
}
.cta-section-block .section-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .cta-section-block .section-title {
    white-space: normal;
    font-size: 18px;
  }
}
.cta-section-block .cta-btn {
  background-color: #35a2a8;
  color: #ffffff;
  border-radius: 100px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 60px;
}
@media (max-width: 767.98px) {
  .cta-section-block .cta-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
}
.cta-section-block .cta-btn:hover {
  background-color: rgb(40.7692307692, 124.6153846154, 129.2307692308);
}

.fondos-hero-block {
  position: relative;
  padding: 140px 0 40px;
  overflow: visible;
}
@media (max-width: 767.98px) {
  .fondos-hero-block {
    padding: 120px 0 0;
  }
}
.fondos-hero-block .fondos-hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .fondos-hero-block .fondos-hero-flex {
    align-items: flex-start;
  }
}
.fondos-hero-block .fondos-page-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  color: #141414;
  max-width: 781px;
  margin: 0;
  position: relative;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .fondos-hero-block .fondos-page-title {
    font-size: 18px;
    max-width: 204px;
    line-height: 1.3;
  }
}
.fondos-hero-block .btn-filters-mobile {
  background-color: #35A2A8;
  color: #ffffff;
  border-radius: 100px;
  height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .fondos-hero-block .btn-filters-mobile {
    padding: 0 12px;
    font-size: 14px;
  }
}
.fondos-hero-block .btn-filters-mobile svg {
  width: 20px;
  height: 20px;
}
.fondos-hero-block .fondos-bg-decorative {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.fondos-hero-block .fondos-bg-decorative .ellipse-top {
  position: absolute;
  width: 849px;
  height: 825px;
  top: -156px;
  right: -100px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(53, 162, 168, 0.15) 0%, rgba(53, 162, 168, 0) 100%);
  border-radius: 50%;
  filter: blur(40px);
}
@media (max-width: 767.98px) {
  .fondos-hero-block .fondos-bg-decorative .ellipse-top {
    width: 100%;
    right: -20%;
  }
}
.fondos-hero-block .fondos-bg-decorative .ellipse-bottom {
  position: absolute;
  width: 999px;
  height: 971px;
  bottom: -400px;
  left: -300px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(53, 162, 168, 0.1) 0%, rgba(53, 162, 168, 0) 100%);
  border-radius: 50%;
  filter: blur(60px);
}
@media (max-width: 767.98px) {
  .fondos-hero-block .fondos-bg-decorative .ellipse-bottom {
    width: 100%;
    left: -20%;
  }
}

.fondos-filters-block {
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .fondos-filters-block {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: #ffffff;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 0;
  }
  .fondos-filters-block.is-open {
    display: flex;
    animation: slideDown 0.25s ease-out;
  }
  .fondos-filters-block .container {
    padding: 0;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
}
.fondos-filters-block .filters-mobile-header {
  display: none;
}
@media (max-width: 767.98px) {
  .fondos-filters-block .filters-mobile-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid #E5E5E5;
    flex-shrink: 0;
  }
}
.fondos-filters-block .filters-mobile-header .filters-back-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.fondos-filters-block .filters-mobile-header .filters-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #141414;
}
.fondos-filters-block .filters-wrapper {
  background-color: #35A2A8;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .fondos-filters-block .filters-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 20px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }
}
.fondos-filters-block .filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fondos-filters-block .filter-group label {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .fondos-filters-block .filter-group label {
    font-size: 16px;
    color: #141414;
  }
}
.fondos-filters-block .filter-pills {
  background-color: #F3F3F3;
  border-radius: 100px;
  padding: 4px;
  display: flex;
  gap: 4px;
}
@media (max-width: 767.98px) {
  .fondos-filters-block .filter-pills {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
  }
}
.fondos-filters-block .filter-pills .pill {
  height: 40px;
  border-radius: 100px;
  border: none;
  padding: 0 24px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  cursor: pointer;
  background: transparent;
  color: #7F7F7F;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.fondos-filters-block .filter-pills .pill.active {
  background-color: #141414;
  color: #ffffff;
}
.fondos-filters-block .filter-pills .pill:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .fondos-filters-block .filter-pills .pill {
    border: 1.5px solid #DADADA;
    background: transparent;
    color: #141414;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    padding: 0 20px;
  }
  .fondos-filters-block .filter-pills .pill.active {
    background-color: #35A2A8;
    border-color: #35A2A8;
    color: #ffffff;
  }
  .fondos-filters-block .filter-pills .pill:hover:not(.active) {
    border-color: #35A2A8;
  }
}
.fondos-filters-block .filters-mobile-actions {
  display: none;
}
@media (max-width: 767.98px) {
  .fondos-filters-block .filters-mobile-actions {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #E5E5E5;
    flex-shrink: 0;
  }
  .fondos-filters-block .filters-mobile-actions .btn-restablecer,
  .fondos-filters-block .filters-mobile-actions .btn-aplicar {
    flex: 1;
    height: 52px;
    border-radius: 100px;
    font-family: "roc-grotesk", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.28px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .fondos-filters-block .filters-mobile-actions .btn-restablecer {
    background: #ffffff;
    border: 1.5px solid #141414;
    color: #141414;
  }
  .fondos-filters-block .filters-mobile-actions .btn-restablecer:hover {
    background: #f5f5f5;
  }
  .fondos-filters-block .filters-mobile-actions .btn-aplicar {
    background: #141414;
    border: 1.5px solid #141414;
    color: #ffffff;
  }
  .fondos-filters-block .filters-mobile-actions .btn-aplicar:hover {
    background: rgb(45.5, 45.5, 45.5);
  }
}

.fondos-empty-state {
  padding: 64px 0;
  text-align: center;
}
.fondos-empty-state p {
  font-family: "roc-grotesk", sans-serif;
  font-size: 18px;
  color: #7f7f7f;
}

.fund-row-wrapper.is-filtered-out {
  display: none;
}

.fondos-list-block.is-hidden {
  display: none;
}

.fondos-list-block {
  padding: 32px 0 32px;
  border-bottom: none;
}
@media (max-width: 767.98px) {
  .fondos-list-block {
    padding: 24px 0 0;
  }
}
.fondos-list-block .risk-category-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #141414;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .fondos-list-block .risk-category-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.fondos-list-block .fondos-table-wrapper {
  width: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #f3f3f3;
  padding: 32px 0;
  box-shadow: none;
}
@media (max-width: 991.98px) {
  .fondos-list-block .fondos-table-wrapper {
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
  }
}
.fondos-list-block .table-super-headers {
  display: grid;
  grid-template-columns: 5.2fr 1.95fr;
  gap: 16px;
  padding: 0 40px 16px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 24px;
}
.fondos-list-block .table-super-headers div {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #7f7f7f;
  text-transform: uppercase;
}
.fondos-list-block .table-super-headers div.super-col-rend {
  color: #646464;
}
.fondos-list-block .table-column-labels {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 0.5fr 0.5fr 0.5fr 0.8fr;
  gap: 16px;
  padding: 0 40px 16px;
  border-bottom: none;
}
@media (max-width: 991.98px) {
  .fondos-list-block .table-column-labels {
    display: none;
  }
}
.fondos-list-block .table-column-labels div {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #646464;
  text-transform: uppercase;
  text-align: left;
}
.fondos-list-block .funds-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}
@media (max-width: 991.98px) {
  .fondos-list-block .funds-rows {
    gap: 0;
    padding: 0;
  }
}
.fondos-list-block .fund-row-wrapper {
  background-color: #ffffff;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .fondos-list-block .fund-row-wrapper {
    background-color: #f3f3f3;
    border-radius: 16px;
  }
}
@media (max-width: 991.98px) {
  .fondos-list-block .fund-row-wrapper {
    border: 1px solid #C6C6C6;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #ffffff;
  }
  .fondos-list-block .fund-row-wrapper.is-active {
    border-color: #35A2A8;
  }
  .fondos-list-block .fund-row-wrapper.is-active .fund-toggle-btn svg {
    transform: rotate(180deg);
  }
  .fondos-list-block .fund-row-wrapper.is-active .fund-row {
    display: block;
  }
}
.fondos-list-block .fund-mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .fondos-list-block .fund-mobile-header {
    display: flex;
  }
}
.fondos-list-block .fund-mobile-header .fund-name {
  flex: 1;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #35A2A8;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fondos-list-block .fund-mobile-header .fund-quick-perf {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #141414;
}
.fondos-list-block .fund-mobile-header .fund-quick-perf svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.fondos-list-block .fund-mobile-header .fund-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s;
}
.fondos-list-block .fund-mobile-header .fund-toggle-btn svg {
  width: 24px;
  height: 24px;
}
.fondos-list-block .fund-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 0.5fr 0.5fr 0.5fr 0.8fr;
  gap: 16px;
  padding: 16px 24px;
  align-items: center;
  border-radius: 16px;
  background: #F3F3F3;
}
.fondos-list-block .fund-row > *, .fondos-list-block .fund-row .fund-details-group > * {
  min-width: 0;
}
@media (max-width: 991.98px) {
  .fondos-list-block .fund-row {
    display: none;
    grid-template-columns: 1fr;
    padding: 0 16px 16px;
    gap: 24px;
    background: transparent;
    border-radius: 0;
  }
}
.fondos-list-block .fund-row .col-name {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #35A2A8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fondos-list-block .fund-row .col-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .fondos-list-block .fund-row .fund-details-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 8px;
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .fondos-list-block .fund-row .fund-details-group {
    display: contents;
  }
}
.fondos-list-block .fund-row .col-item .mobile-label {
  display: block;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.fondos-list-block .fund-row .col-item .value {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #141414;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fondos-list-block .fund-row .col-perf {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
@media (max-width: 991.98px) {
  .fondos-list-block .fund-row .col-perf {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .fondos-list-block .fund-row .col-perf .mobile-label {
    display: block;
    font-family: "roc-grotesk", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .fondos-list-block .fund-row .col-perf .value {
    font-size: 14px;
    font-weight: 500;
  }
}
.fondos-list-block .fund-row .col-perf.perf-positive {
  color: #141414;
}
.fondos-list-block .fund-row .col-perf.perf-negative {
  color: #141414;
}
.fondos-list-block .fund-row .col-perf .trend-icon {
  font-size: 12px;
}
.fondos-list-block .fund-row .btn-ver-fondo {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: #35A2A8;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.fondos-list-block .fund-row .btn-ver-fondo:hover {
  background-color: rgb(40.7692307692, 124.6153846154, 129.2307692308);
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-notice {
  margin-top: 12px;
  font-size: 11px;
  color: #999;
  line-height: 1.5;
}
.recaptcha-notice a {
  color: inherit;
  text-decoration: underline;
}
.recaptcha-notice a:hover {
  color: #555;
}

.contact-section-block {
  padding: 180px 0 100px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .contact-section-block {
    padding: 120px 0 60px;
  }
}
.contact-section-block .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .contact-section-block .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-section-block .contact-info-col .contact-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: #141414;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .contact-section-block .contact-info-col .contact-title {
    font-size: 32px;
  }
}
.contact-section-block .contact-info-col .contact-desc {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #141414;
  max-width: 533px;
}
@media (max-width: 767.98px) {
  .contact-section-block .contact-info-col .contact-desc {
    font-size: 18px;
  }
}
.contact-section-block .contact-form-container {
  background: #ffffff;
  border: 1px solid #c6c6c6;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .contact-section-block .contact-form-container {
    padding: 24px;
  }
}
.contact-section-block .contact-form-container .form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-section-block .contact-form-container .form-group label {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #848484;
}
.contact-section-block .contact-form-container .form-group input, .contact-section-block .contact-form-container .form-group textarea, .contact-section-block .contact-form-container .form-group select {
  width: 100%;
  height: 48px;
  border: 1px solid #35a2a8;
  border-radius: 8px;
  padding: 0 12px;
  font-family: "roc-grotesk", sans-serif;
  font-size: 16px;
  color: #1F1E1E;
  outline: none;
  background: transparent;
  transition: border-color 0.3s;
}
.contact-section-block .contact-form-container .form-group input::-moz-placeholder, .contact-section-block .contact-form-container .form-group textarea::-moz-placeholder, .contact-section-block .contact-form-container .form-group select::-moz-placeholder {
  color: rgba(31, 30, 30, 0.4);
}
.contact-section-block .contact-form-container .form-group input::placeholder, .contact-section-block .contact-form-container .form-group textarea::placeholder, .contact-section-block .contact-form-container .form-group select::placeholder {
  color: rgba(31, 30, 30, 0.4);
}
.contact-section-block .contact-form-container .form-group input:focus, .contact-section-block .contact-form-container .form-group textarea:focus, .contact-section-block .contact-form-container .form-group select:focus {
  border-color: rgb(34.6538461538, 105.9230769231, 109.8461538462);
}
.contact-section-block .contact-form-container .form-group textarea {
  height: 123px;
  padding: 16px 12px;
  resize: vertical;
}
.contact-section-block .contact-form-container .form-group .select-wrapper {
  position: relative;
}
.contact-section-block .contact-form-container .form-group .select-wrapper select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.contact-section-block .contact-form-container .form-group .select-wrapper .select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
}
.contact-section-block .contact-form-container .form-response {
  display: none;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 8px;
  font-family: "roc-grotesk", sans-serif;
  font-size: 14px;
  text-align: center;
}
.contact-section-block .contact-form-container .form-response.success {
  background-color: #e6f7e6;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.contact-section-block .contact-form-container .form-response.error {
  background-color: #fdecea;
  color: #d32f2f;
  border: 1px solid #f9dad5;
}
.contact-section-block .contact-form-container .btn-enviar {
  width: 100%;
  height: 48px;
  background-color: #35a2a8;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-section-block .contact-form-container .btn-enviar:hover {
  background-color: rgb(40.7692307692, 124.6153846154, 129.2307692308);
}

.nosotros-hero-block {
  padding: 180px 0 60px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .nosotros-hero-block {
    padding: 120px 0 40px;
  }
}
.nosotros-hero-block .nosotros-hero-content {
  max-width: 781px;
}
.nosotros-hero-block .nosotros-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  color: #141414;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .nosotros-hero-block .nosotros-title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
.nosotros-hero-block .nosotros-text p {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #141414;
}
@media (max-width: 767.98px) {
  .nosotros-hero-block .nosotros-text p {
    font-size: 18px;
  }
}

.nosotros-team-block {
  padding: 60px 0 100px;
}
@media (max-width: 767.98px) {
  .nosotros-team-block {
    padding: 40px 0 60px;
  }
}
.nosotros-team-block .section-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #141414;
  margin-bottom: 40px;
}
.nosotros-team-block .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .nosotros-team-block .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .nosotros-team-block .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }
}
.nosotros-team-block .team-card {
  background: #ffffff;
  border: 1px solid #c6c6c6;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nosotros-team-block .team-card .member-image {
  width: 100%;
  height: 267px;
  border-radius: 12px;
  overflow: hidden;
}
.nosotros-team-block .team-card .member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nosotros-team-block .team-card .member-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.nosotros-team-block .team-card .member-info .member-name {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #141414;
  margin: 0 0 4px 0;
}
.nosotros-team-block .team-card .member-info .member-role {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #141414;
  margin: 0;
}
.nosotros-team-block .team-card .member-info .linkedin-btn {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid #35a2a8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nosotros-team-block .team-card .member-info .linkedin-btn img {
  width: 20px;
  height: 20px;
}
.nosotros-team-block .team-card .member-info .linkedin-btn:hover {
  background-color: #35a2a8;
}
.nosotros-team-block .nosotros-values {
  position: relative;
  background-color: rgba(53, 162, 168, 0.81);
  border-radius: 16px;
  padding: 80px 60px;
  overflow: hidden;
  color: #ffffff;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .nosotros-team-block .nosotros-values {
    padding: 60px 20px;
  }
}
.nosotros-team-block .nosotros-values .values-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.figma.com/api/mcp/asset/afa47e6a-fa15-4adc-ad2c-1347f51f3d9d");
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  transform: rotate(180deg);
}
.nosotros-team-block .nosotros-values .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .nosotros-team-block .nosotros-values .values-grid {
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .nosotros-team-block .nosotros-values .values-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.nosotros-team-block .nosotros-values .value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nosotros-team-block .nosotros-values .value-item .value-icon {
  height: 66px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nosotros-team-block .nosotros-values .value-item .value-icon img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.nosotros-team-block .nosotros-values .value-item .value-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-transform: none;
}
.nosotros-team-block .nosotros-values .value-item .value-desc {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  max-width: 246px;
}

.admin-hero-block {
  padding: 180px 0 20px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .admin-hero-block {
    padding: 120px 0 40px;
  }
}
.admin-hero-block .admin-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .admin-hero-block .admin-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.admin-hero-block .admin-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.1;
  color: #141414;
  margin-bottom: 32px;
  max-width: 467px;
}
@media (max-width: 767.98px) {
  .admin-hero-block .admin-title {
    font-size: 24px;
    margin-bottom: 16px;
    max-width: 204px;
  }
}
.admin-hero-block .admin-intro {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: #141414;
  max-width: 643px;
}
@media (max-width: 767.98px) {
  .admin-hero-block .admin-intro {
    font-size: 16px;
    max-width: 328px;
  }
}
.admin-hero-block .admin-hero-image {
  width: 100%;
  height: 362px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767.98px) {
  .admin-hero-block .admin-hero-image {
    height: 269px;
    margin-top: 10px;
  }
}
.admin-hero-block .admin-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.admin-details-block {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .admin-details-block {
    padding: 0 0 60px 0;
  }
}
.admin-details-block .admin-details-card {
  background: #ffffff;
  border: 1px solid #F3F3F3;
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .admin-details-block .admin-details-card {
    padding: 32px 16px;
  }
}
.admin-details-block .details-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .admin-details-block .details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.admin-details-block .details-divider {
  background-color: #35A2A8;
  width: 1px;
  height: 100%;
  opacity: 0.3;
}
@media (max-width: 767.98px) {
  .admin-details-block .details-divider {
    display: none;
  }
}
.admin-details-block .col-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .admin-details-block .col-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.admin-details-block .col-text {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #141414;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .admin-details-block .col-text {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.admin-details-block .col-highlight {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: #35a2a8;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .admin-details-block .col-highlight {
    font-size: 16px;
    max-width: 259px;
  }
}
.admin-details-block .details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.admin-details-block .details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #141414;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .admin-details-block .details-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.admin-details-block .details-list li .list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
}
.admin-details-block .details-list li .list-icon img {
  width: 100%;
  height: auto;
}

.admin-focus-block {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .admin-focus-block {
    padding: 60px 0;
  }
}
.admin-focus-block .admin-focus-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(53, 162, 168, 0.81);
  z-index: 1;
}
.admin-focus-block .admin-focus-bg .focus-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.figma.com/api/mcp/asset/451b64e3-7692-4369-bec9-fa5889c16f77");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mix-blend-mode: overlay;
  transform: rotate(180deg);
}
.admin-focus-block .admin-focus-bg .admin-focus-gradient-fusion {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(53, 162, 168, 0) 0%, #35A2A8 100%);
  z-index: 2;
}
.admin-focus-block .container {
  position: relative;
  z-index: 2;
}
.admin-focus-block .focus-section-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .admin-focus-block .focus-section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.admin-focus-block .focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .admin-focus-block .focus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.admin-focus-block .focus-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  min-height: 200px;
}
@media (max-width: 767.98px) {
  .admin-focus-block .focus-card {
    min-height: auto;
    padding: 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.admin-focus-block .focus-card .focus-icon {
  height: 48px;
  width: auto;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767.98px) {
  .admin-focus-block .focus-card .focus-icon {
    flex: 0 0 47px;
    height: 47px;
  }
}
.admin-focus-block .focus-card .focus-icon img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.admin-focus-block .focus-card .focus-card-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #35a2a8;
  margin: 0;
  text-align: left;
}
@media (max-width: 767.98px) {
  .admin-focus-block .focus-card .focus-card-title {
    font-size: 18px;
    flex: 1;
  }
}
.admin-focus-block .focus-footer-text {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  max-width: 914px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .admin-focus-block .focus-footer-text {
    font-size: 16px;
    max-width: 328px;
  }
}

.fci-hero-block {
  padding: 160px 0 40px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .fci-hero-block {
    padding: 120px 0 30px;
  }
}
.fci-hero-block .fci-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #35a2a8;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .fci-hero-block .fci-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.fci-hero-block .fci-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .fci-hero-block .fci-meta-grid {
    gap: 20px;
    padding-bottom: 30px;
  }
}
.fci-hero-block .fci-meta-grid .meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fci-hero-block .fci-meta-grid .meta-item .meta-label {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #646464;
  text-transform: uppercase;
}
.fci-hero-block .fci-meta-grid .meta-item .meta-value {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #141414;
}

.fci-chart-block {
  padding: 0 0 60px;
}
.fci-chart-block .chart-section {
  margin-bottom: 60px;
}
.fci-chart-block .chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .fci-chart-block .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.fci-chart-block .chart-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #141414;
  margin: 0;
}
.fci-chart-block .chart-controls {
  background-color: #F3F3F3;
  border-radius: 100px;
  padding: 4px;
  display: flex;
  gap: 4px;
}
.fci-chart-block .chart-controls .control-btn {
  height: 32px;
  padding: 0 16px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #7F7F7F;
  cursor: pointer;
  transition: all 0.2s;
}
.fci-chart-block .chart-controls .control-btn.active {
  background-color: #141414;
  color: #ffffff;
}
.fci-chart-block .chart-controls .control-btn:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.05);
}
.fci-chart-block .chart-container {
  background: #ffffff;
  border: 1px solid #F3F3F3;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.fci-chart-block .chart-container .chart-canvas {
  width: 100%;
}
.fci-chart-block .chart-container .chart-no-data {
  padding: 40px 0;
  text-align: center;
  font-family: "roc-grotesk", sans-serif;
  font-size: 14px;
  color: #7F7F7F;
}
.fci-chart-block .composition-container {
  background: #ffffff;
  border: 1px solid #F3F3F3;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .fci-chart-block .composition-container {
    flex-direction: column;
    gap: 32px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
.fci-chart-block .composition-container .pie-chart-mock {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: conic-gradient(#35A2A8 0% 21%, #66BB5F 21% 30%, #F2C94C 30% 39%, #EB5757 39% 60%, #2F80ED 60% 63%, #F2994A 63% 100%);
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .fci-chart-block .composition-container .pie-chart-mock {
    width: 230px;
    height: 230px;
    order: -1;
  }
}
.fci-chart-block .composition-container .legend-list {
  flex: 1;
}
@media (max-width: 767.98px) {
  .fci-chart-block .composition-container .legend-list {
    width: 100%;
  }
}
.fci-chart-block .composition-container .legend-list .legend-header {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .fci-chart-block .composition-container .legend-list .legend-header {
    font-size: 16px;
  }
}
.fci-chart-block .composition-container .legend-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fci-chart-block .composition-container .legend-list ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "roc-grotesk", sans-serif;
  font-size: 16px;
  color: #141414;
}
.fci-chart-block .composition-container .legend-list ul li .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
.fci-chart-block .composition-container .legend-list ul li strong {
  margin-left: auto;
}
.fci-chart-block .composition-container .legend-list ul li .color-1 {
  background-color: #35A2A8;
}
.fci-chart-block .composition-container .legend-list ul li .color-2 {
  background-color: #66BB5F;
}
.fci-chart-block .composition-container .legend-list ul li .color-3 {
  background-color: #F2C94C;
}
.fci-chart-block .composition-container .legend-list ul li .color-4 {
  background-color: #EB5757;
}
.fci-chart-block .composition-container .legend-list ul li .color-5 {
  background-color: #2F80ED;
}
.fci-chart-block .composition-container .legend-list ul li .color-6 {
  background-color: #F2994A;
}
.fci-chart-block .source-text {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #141414;
  text-align: center;
  margin-top: 40px;
}

.fci-details-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fci-details-block .details-card {
  background: #ffffff;
  border: 1px solid #F3F3F3;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .fci-details-block .details-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 40px;
  }
}
.fci-details-block .details-card:first-child {
  min-height: 198px;
}
@media (max-width: 767.98px) {
  .fci-details-block .details-card:first-child {
    min-height: auto;
  }
}
@media (max-width: 767.98px) {
  .fci-details-block .details-card {
    padding: 24px;
  }
}
.fci-details-block .details-card .card-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #141414;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .fci-details-block .details-card .card-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.fci-details-block .details-card .card-title.mt-40 {
  margin-top: 40px;
}
.fci-details-block .metrics-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .fci-details-block .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
  }
}
.fci-details-block .metrics-grid .metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fci-details-block .metrics-grid .metric .label {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #646464;
  text-transform: uppercase;
}
.fci-details-block .metrics-grid .metric .value {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #141414;
}
.fci-details-block .metrics-grid .metric .value-with-icon {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fci-details-block .metrics-grid .metric .value-with-icon.value-pos .value {
  color: #66BB5F;
}
.fci-details-block .metrics-grid .metric .value-with-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.fci-details-block .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fci-details-block .info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #E5E5E5;
  font-family: "roc-grotesk", sans-serif;
  font-size: 16px;
}
.fci-details-block .info-list li:last-child {
  border-bottom: none;
}
.fci-details-block .info-list li span {
  color: #141414;
}
.fci-details-block .info-list li strong {
  font-weight: 700;
  color: #141414;
  text-align: right;
}
.fci-details-block .info-list li.small-note {
  font-size: 12px;
  color: #646464;
  margin-top: -8px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 12px;
}
.fci-details-block .risk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 24px;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 767.98px) {
  .fci-details-block .risk-row {
    padding-top: 24px;
    margin-top: 16px;
  }
}
.fci-details-block .risk-row .card-title {
  margin: 0;
  font-size: 24px;
}
@media (max-width: 767.98px) {
  .fci-details-block .risk-row .card-title {
    font-size: 18px;
  }
}
.fci-details-block .risk-row .risk-badge {
  background-color: rgba(102, 187, 95, 0.1);
  color: #66BB5F;
  border: 1px solid #66BB5F;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .fci-details-block .risk-row .risk-badge {
    font-size: 14px;
    padding: 4px 12px;
  }
}
.fci-details-block .details-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  .fci-details-block .details-actions {
    margin-top: 24px;
  }
}
.fci-details-block .details-actions .btn-full {
  width: 100%;
  height: 48px;
}
@media (max-width: 767.98px) {
  .fci-details-block .details-actions .btn-full {
    height: 40px;
    font-size: 14px;
  }
}
.fci-details-block .details-actions .btn-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-radius: 100px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.fci-details-block .details-actions .btn-full.btn-primary {
  background-color: #35A2A8;
  color: #ffffff;
}
.fci-details-block .details-actions .btn-full.btn-primary:hover {
  background-color: rgb(40.7692307692, 124.6153846154, 129.2307692308);
}
.fci-details-block .details-actions .btn-full.btn-outline {
  background-color: #ffffff;
  border: 1px solid #141414;
  color: #141414;
}
.fci-details-block .details-actions .btn-full.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.fci-single-page {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.fci-single-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-noise.png");
  background-repeat: repeat;
  opacity: 0.13;
  mix-blend-mode: color-burn;
  pointer-events: none;
  z-index: 1;
}
.fci-single-page .bg-ellipse {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.fci-single-page .bg-ellipse.ellipse-top {
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, #35A2A8 0%, transparent 70%);
}
.fci-single-page .container {
  position: relative;
  z-index: 5;
}
.fci-single-page .fci-breadcrumb {
  margin-bottom: 40px;
}
.fci-single-page .fci-breadcrumb .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #141414;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s;
}
.fci-single-page .fci-breadcrumb .back-link:hover {
  opacity: 0.7;
}
.fci-single-page .fci-breadcrumb .back-link svg {
  width: 20px;
  height: 20px;
}
.fci-single-page .fci-layout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
  grid-template-areas: "hero metrics" "evolution info";
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-layout-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-template-areas: none;
  }
}
.fci-single-page .grid-item-hero {
  grid-area: hero;
}
.fci-single-page .grid-item-metrics {
  grid-area: metrics;
}
.fci-single-page .grid-item-evolution {
  grid-area: evolution;
}
.fci-single-page .grid-item-info {
  grid-area: info;
}
@media (min-width: 768px) {
  .fci-single-page .grid-item-info {
    position: sticky;
    top: 100px;
  }
}
.fci-single-page .fci-hero-block {
  padding: 0;
  margin-bottom: 24px;
}
.fci-single-page .fci-hero-block .container {
  padding: 0;
  max-width: none;
}
.fci-single-page .fci-hero-block .hero-card {
  background: #ffffff;
  border: 1px solid #F3F3F3;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-hero-block .hero-card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
.fci-single-page .fci-hero-block .fci-title {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-hero-block .fci-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.fci-single-page .fci-hero-block .fci-meta-grid {
  border-bottom: none;
  padding-bottom: 0;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-hero-block .fci-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
  }
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-hero-block .fci-meta-grid .meta-item .meta-label {
    font-size: 12px;
    opacity: 0.5;
    color: #000;
  }
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-hero-block .fci-meta-grid .meta-item .meta-value {
    font-size: 14px;
  }
}
.fci-single-page .fci-chart-block {
  padding: 0;
}
.fci-single-page .fci-chart-block .container {
  padding: 0;
  max-width: none;
}
.fci-single-page .fci-chart-block .chart-section {
  background: #ffffff;
  border: 1px solid #F3F3F3;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-chart-block .chart-section {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 40px;
  }
}
.fci-single-page .fci-chart-block .chart-container {
  box-shadow: none;
  border: none;
  padding: 0;
  height: auto;
  min-height: 400px;
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-chart-block .chart-container {
    background: #ffffff;
    border: 1px solid #F3F3F3;
    border-radius: 12px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    padding: 24px;
    min-height: 250px;
  }
}
@media (min-width: 768px) {
  .fci-single-page .fci-details-block {
    position: sticky;
    top: 100px;
  }
}
@media (max-width: 767.98px) {
  .fci-single-page .fci-details-block .details-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .fci-single-page .fci-details-block .details-card:first-child {
    min-height: auto;
    margin-bottom: 24px;
  }
}

.legal-page {
  padding: 160px 0 80px;
}
.legal-page .legal-inner {
  max-width: 900px;
  margin: 0 auto;
}
.legal-page .legal-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #141414;
  margin-bottom: 40px;
}
.legal-page .legal-pdf-wrapper {
  width: 100%;
  border: 1px solid #c6c6c6;
  border-radius: 8px;
  overflow: hidden;
}
.legal-page .legal-pdf-embed {
  display: block;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  border: none;
}

@media (max-width: 767.98px) {
  .hide-md-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-md-down {
    display: none !important;
  }
}
/*# sourceMappingURL=main.min.css.map */
