.main_content-row-0-force-full-width-section > .row-fluid {padding: 0px !important;}
body {
  background: linear-gradient(
    90deg,
    rgba(225, 222, 255, 0.1),
    rgba(225, 222, 255, 0.04)
  );
}
/* Hero Section */
.hero-section {
 
  padding-top: 6rem;
    padding-right: 5rem;
    padding-bottom: 3rem;
    padding-left: 5rem;
  display: flex;
  justify-content: center;

}

.hero-container {
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 2.75rem !important;
  line-height: 1.2;
  color: var(--core-black);
}
.hero-title.headline {
color: var(--dark-purple) !important;
font-weight: 400 !important;
}
.hero-paragraph {
  font-size: 1.1rem;
  color: var(--core-black);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 0.5rem;
  
}

.btn-primary {
  padding: 0.6rem 1.75rem;
  border-radius: 8px;
  background-color: var(--mora-blue);
  color: white;
  font-family: "inter", sans-serif;
font-weight: 550;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--dark-purple);
}

.btn-secondary {
font-weight: 550;
  padding: 0.6rem 1.75rem;
  border-radius: 8px;
  border: 2px solid var(--mora-blue);
  color: var(--mora-blue);
  font-family: "inter", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--mora-blue);
  color: white;
}

/* Image Placeholder */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background-color: var(--off-white);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-grey);
  font-family: "Helvetica Now Display", sans-serif;
}
.mora-blue {
  color: var(--mora-blue);
}
.hero-list {

  list-style-type: disc;
  padding-left: 1.5rem;
  font-family: "inter", sans-serif;
  color: var(--core-black);
}

.hero-list li {
font-size: 1rem;

}
.hero-description {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
.hero-content {
      align-items: center;

}
.hero-image {
  flex: 1;
  display: none;
  justify-content: center;
  align-items: center;
}
  .hero-section{padding-top: 2rem;
    padding-right: 16px;
    padding-bottom: 3rem;
    padding-left: 16px;}

  .hero-container {

    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .hero-title {
    text-wrap: balance;
    font-size: 2em !important;
  }

  .hero-paragraph {
    font-size: 18px;
  }

  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Client Logo Section */
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.client-logo-section {

  
  display: flex;
  justify-content: center;
}

.client-logo-card {

  border-radius: 0rem 0rem 1rem 1rem;
  padding: 1.5rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  

  /
}

.client-logo-title {
  font-size: 1rem;
  opacity: 0.3;
  font-weight: 600;
  text-align: center;
  color: var(--core-black);
  font-family: "Inter", sans-serif;
}

/* Grid: 6 columns on desktop */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.logo-item img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.logo-item img:hover {
  opacity: 1;
  filter: none;
}

/* Carrusel para mobile */
.logo-carousel {
  display: none;
  overflow: hidden;
  width: 100%;
  padding: 0rem 0;
}

.logo-carousel-track {
  display: inline-flex;
  animation: scrollLogos 25s linear infinite;
  gap: 2rem;
}

.logo-carousel-track img {
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.logo-carousel-track img:hover {
  opacity: 1;
  filter: none;
}

/* Animaciones */
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Tablets: 4 columnas */
@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile: carrusel y ajustes */
@media (max-width: 600px) {
  .client-logo-section {

    padding: 0rem;
  }

  .logo-grid-section {
    display: none;
  }

  .logo-carousel {
    display: block;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .logo-item img {
    max-height: 48px;
  }

  .client-logo-card {
    padding: 1rem 1.25rem;
  }

  .client-logo-title {
    font-size: 0.875rem;
  }
}

/*------------------------------------*/



/* TAB SECTION GENERAL STYLES */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  font-family: "Stix Two text", sans-serif;
  font-weight: 50;
  font-size: 16px;
  color: var(--mora-blue); /* O puedes usar uno de los colores por tab si se aplica */
  text-decoration: none;

  transition: color 0.2s ease;
}

.cta-link:hover {
  color: var(--dark-purple);
}

.cta-link .chevron {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}

.cta-link:hover .chevron {
  transform: translateX(1px);
}
.dnd-section h2 {
font-family: "Familjen Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark-purple);
  margin-bottom: 2rem;}

.section-title {
  margin-top: 8rem !important;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark-purple);
  margin-bottom: 2rem;
}
.crehana-content {
width: 100%
 opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
}

.crehana-content.active {
 display: block;
  opacity: 1;
}

.tabs-container {
overflow: visible;
    margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 0;
  background: transparent;
  
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-bottom: none;
}

.tab-button {
background-color: #F4f4F4;
  border: none;
  border-radius: 12px 12px 0 0;
  padding: 18px 28px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--core-black);
  cursor: pointer;
  transition: all 0.3s ease;
 
  position: relative;
}

.tab-button.active {
background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--strategic-purple);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  z-index: 2;
}








/* BOX */
.crehana-box {
   border-radius: 0px 20px 20px 20px;
  padding: 3rem 2rem;
  background-color: #ffffff;
/* Sombra más marcada */
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.07);
width: 100%;
  max-width: 1200px; /* o el valor que uses como layout estándar */
  transition: background-color 0.3s ease;
}


/* HEADER */
.crehana-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.crehana-header-left {
  flex: 1;
}

.crehana-header-right {
padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.crehana-header-title {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--highlight-gradient);
  font-size:1rem;
  font-weight: 500;
  font-family: "STIX Two Text", serif;
  font-style: italic;
  color: var(--core-black);
  text-align: center;
}


.crehana-custom-title {
  
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 400;
  
  text-align: left;
}

.crehana-custom-description {
  color: var(--core-black);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  text-wrap: balance;
}

/* FEATURES */
.crehana-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
 
}

.feature-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon-small {
min-width: 24px;
  max-height: 24px;
  max-width: 24px;
  max-height: 24px;
}

.feature-title-line {
      font-family: "inter", sans-serif;

  font-size: 16px;
  font-weight: 500;
  color: var(--core-black);
opacity: 75%;
}

.crehana-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.feature-box {
flex: 1 0 0;
  align-self: stretch;
  padding: 24px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);

}

.feature-icon {
  max-width: 50px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.crehana-feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--core-black);
  text-align: left;
  width: 100%;
}

.crehana-feature-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--core-black);
  text-wrap: balance;
}

/* MOBILE STYLES */
@media only screen and (max-width: 768px) {

.crehana-header-right {
padding: 16px;
 
}
  .tabs-container {
padding-left: 16px;
padding-right: 16px;
overflow: visible;
    background: none;
    box-shadow: none;
    border-radius: 0;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .tab-button {
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    text-align: left;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
  }

  .tab-button::after {
    content: '+';
    font-size: 20px;
    color: var(--core-black);
    position: absolute;
    right: 20px;
  }

  .tab-button.active::after {
margin-bottom:0px !important;
    content: '-';
  }
.tab-button.active {
margin-bottom:0px !important;
    content: '-';
  }
  .crehana-content {
    display: none;
    padding: 0px;
    margin-bottom: 10px;
    opacity: 1;
  }

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

  .crehana-box {
width: 100%;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .crehana-custom-title {
    font-size: 24px;
  }

  .crehana-custom-description {
    font-size: 16px;
  }

  .crehana-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .crehana-header-left {
    display: none;
  }

  .progress-box {
    display: none;
  }

  .crehana-header-title {
    font-size: 12px;
    text-align: left;
  }

  .crehana-features {
    flex-direction: column;
    gap: 15px;
  }

  .feature-box {
    padding: 24px;
    gap: 6px;
  }

  .feature-icon {
    max-width: 40px;
  }

  .crehana-feature-title {
    font-size: 20px;
  }

  .crehana-feature-description {
    font-size: 16px;
    color: #555;
  }

  .cta-link {
    font-size: 16px !important;
  }
}

/*hana-ai-section*/
.hana-ai-section {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 10rem auto;

  
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}

.hana-ai-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hana-ai-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 2.5rem;
  
  color: var(--core-black);
  line-height: 1.2;
}

.hana-ai-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-purple);
  line-height: 1.6;
  margin-top: 0.7rem !important;
}

.hana-ai-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hana-ai-row {
  display: flex;
  gap: 20px;
}

.hana-ai-card {
gap: 1rem;
  flex: 1;
border: 0.2px solid #dbdbdb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;

}

.hana-ai-card.metricas {
  background: var(--off-white);
}


.hana-ai-card.retroalimentacion {
    background: var(--off-white);
}


.hana-ai-card.hana-data {
    background: var(--off-white);
}


.hana-ai-card.monitoreo {
  background: var(--off-white);
  border: 1px solid transparent;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(270deg, var(--invisible-tech), transparent, var(--mora-blue));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 200% 200%;
  animation: borderFlow 3s linear infinite alternate;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hana-ai-card-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 3px;
}

.hana-ai-card-description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
font-weight: 500;
  color: var(--core-black);
  line-height: 160%;
}
.hana-ai-card-description-resources {
  font-family: "Inter", sans-serif;
  font-size: 14px;
font-weight: 500;
  color: var(--core-black);
  line-height: 160%;
}

.hana-ai-card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-top: auto;
}

/* Estilo final de sección con fonts diferenciadas */
.succes-custom-description{
margin: 1rem 0px !important;
}
.hana-ai-section-end {
  justify-self: flex-end;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--dark-purple);
}

.hana-ai-section-end span.inter {
  font-family: "Inter", sans-serif;
}

.stix-highlight {
  font-family: "STIX Two Text", serif;
  font-style: italic;
  background: var(--highlight-gradient-right);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  display: inline-block;
  margin-left: 0.3rem;
}

@media (max-width: 768px) {
.stix-highlight {
  font-size:16px;
}
.hana-ai-section {
  margin-left:12px;
  margin-right:12px;
  padding: 12px;

  }
  .hana-ai-title {

    font-size: 1.75rem;
margin-bottom: 1rem !important;
  }

  .hana-ai-subtitle {

        text-wrap: balance;
    font-size: 16px;
  }

  .hana-ai-card {
    padding: 1.25rem;
    height: auto;
  }

  .hana-ai-row {
    flex-direction: column;
  }

  .hana-ai-card-image {
    display: none;
  }

  .hana-ai-card-title {
text-align: center !important;
    font-size: 1.125rem;
  }

  .hana-ai-card-description {
margin-bottom: 8px;
text-align: center !important;
    font-size: 0.95rem;
  }

  .hana-ai-section-end {
    font-size: 1.125rem;
  }
}

/* Seccion Historias de exito */
.historiasDeExitoTittle{
  font-size: 1.3rem;
  font-family: "familijen grotesk", sans-serif;}
.company-logo{
    border-radius: 1rem;

    width: 364px;
    height: 446px;
}
.success-stories-section {
max-width: 1200px;
margin: 10rem auto;
    position: relative;
  }

  .title-container {
    text-align: center;
    margin-bottom: 20px;
  }

 .success-title {
    text-wrap: balance;
    font-family: "familijen grotesk", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    color: #050823; /* Color para la parte principal del título */
}

.highlight-text {
    color: #4B22F4; /* Color diferente a partir de +3 años */
}

  .story-card-container {
    flex: 1;
    position: relative;
  }

  .success-stories-container {
    display: flex;
    align-items: stretch;
    gap: 20px;
    height: 100%;
  }

  .navigation-buttons {
    display: flex;
    align-items: center;
  }

  .nav-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
  }

  .story-card-wrapper {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    height: 100%;
  }

  .story-card {

    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    max-width: 100%;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    margin-left: 42px;
    margin-right: 42px;
    margin-top: 2rem;
    height: 100%;
  }
  .story-content {
    max-width: 60%;
    padding: 24px;
  }

  .badge-container {
    margin-top: 24px;
    margin-bottom: 10px;
  }

  .badge {
    border-radius: 60px;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 5px;
  }

  .aprendizaje-badge {
    background: #0096D6;
  }
  .clima-badge {
    background: #6F4EF6;
}

  .banco-badge {
    color: #000;
    background: #E3E4E5;
  }

  .fundacion-badge {
    color: #000;
    background: #E3E4E5;
  }

  .universidad-badge {
    background: #8A2BE2;
  }

  .story-quote {
    margin-top: 16px;
    margin-bottom: 16px;
    color: #050823;
    font-feature-settings: 'ss02' on;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
  }

  .author-details {
    font-size: 14px;
    color: #555;
margin-bottom:12px;
  }

  .author-name {|
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
  }

  .author-role {
    display: block;
  }

  .story-link {
    color: #181B32;
    font-feature-settings: 'ss02' on;
    font-family: Poppins, sans-serif;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 18px;
    text-decoration-line: underline;
    margin-top: 10px;
    margin-bottom: 24px;
    display: inline-block;
  }
.indicator-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.logo-indicator {
    margin: 0;
    padding: 0;
}

.indicator-logo {
    width: 210px; /* Aumentamos el tamaño de los logos */
    margin: 0; /* Sin espacio entre los logos */
    opacity: 0.50; /* Opacidad inicial para los logos no seleccionados */
    transition: opacity 0.3s ease; /* Transición suave de opacidad */
}

.indicator-logo.active {

    opacity: 1; /* Opacidad total para el logo seleccionado */
}
/* Estilos para pantallas móviles */
@media (max-width: 768px) {
.success-stories-section {

margin-left: 16px;
    
  }
  .badge-container{
  margin-top:0px;
  }
  .success-title {
    font-size: 24px;
    line-height: 32px;
  }

  .highlight-text {
    color: #4B22F4;
    font-size: 22px;
  }

  .story-card-container {
    flex: 1;
    position: relative;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    scroll-behavior: smooth;
    padding: 0 20px;
  }

  .success-stories-container {
    display: flex;
    gap: 20px;
    height: auto;
    width: 900px;
    flex-wrap: nowrap;
  }

  .story-card-wrapper {
    flex: 0 0 35%; /* Manteniendo el ancho estrecho de las tarjetas */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alineamos el contenido a la parte superior */
    position: relative;
    height: auto;
    scroll-snap-align: start;
  }

  .story-card {
    flex-direction: column;
    max-width: 100%;
    width: 100%; /* Mantiene un ancho consistente en todas las tarjetas */
    margin: 0;
    padding: 24px; /* Padding consistente */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    align-items: flex-start; /* Alineamos el contenido a la izquierda */
    background-color: #fff;
  }

  .story-content {
    max-width: 100%;
    padding: 0px; /* Padding consistente */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; /* Reducción del espacio entre elementos */
  }

  /* Ocultamos la imagen principal de cada tarjeta */
  .story-card img {
    display: none;
  }

  /* Ocultamos los botones de navegación en mobile */
  .nav-button {
    display: none;
  }

  /* Ocultamos los indicadores en mobile */
  .indicator-section {
    display: none;
  }

  /* Mostramos los logos dentro de las tarjetas con un tamaño aún mayor */
  .story-card[data-company="supervielle"]::before,
  .story-card[data-company="banco-hipotecario"]::before,
  .story-card[data-company="davivienda"]::before,
  .story-card[data-company="fundacion-leer"]::before {
    display: block;
    margin-bottom: 0px; /* Espacio reducido entre el logo y el contenido */
    width: 180px; /* Manteniendo el tamaño grande del logo */
    height: 70px; /* Manteniendo el tamaño grande del logo */
    content: ''; /* Removemos el contenido en URL del pseudo-elemento */
    background-size: contain; /* Aseguramos que el logo se ajuste al contenedor */
    background-repeat: no-repeat;
    background-position: left;
  }

  /* Asignamos la imagen de fondo correspondiente a cada tarjeta */
  .story-card[data-company="supervielle"]::before {
    background-image: url('https://23946686.fs1.hubspotusercontent-na1.net/hubfs/23946686/Supervielle_logo14%201.png');
  }

  .story-card[data-company="banco-hipotecario"]::before {
    background-image: url('https://23946686.fs1.hubspotusercontent-na1.net/hubfs/23946686/1200px-Logo_Banco_Hipotecario%201.png');
  }

  .story-card[data-company="davivienda"]::before {
    background-image: url('https://23946686.fs1.hubspotusercontent-na1.net/hubfs/23946686/image%203.png');
  }

  .story-card[data-company="fundacion-leer"]::before {
    background-image: url('https://23946686.fs1.hubspotusercontent-na1.net/hubfs/23946686/Fundacion%20Leer%20tranparente%201.png');
  }
}

/* Módulo: Soporte dedicado */
.dedicated-support-section {

  max-width: 1200px;
  margin: 10rem auto;
  padding: 0 2rem;
}

.dedicated-title {
  text-align: center;
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--core-black);
  margin-bottom: 3rem;
  font-family: "Familjen Grotesk", sans-serif;
}

.dedicated-title .special-text {
  color: var(--strategic-purple);
  font-family: "STIX Two Text", serif;
  font-style: italic;
}

.dedicated-content {
margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.dedicated-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 1;
}

.dedicated-step-box {
  background-color: #fff;
padding: 16px 16px;
border-radius: 1rem;
border: 1px solid transparent;
background-image: 
  linear-gradient(#fff, #fff), /* true white background */
  linear-gradient(135deg, var(--invisible-tech), transparent, var(--mora-blue));
background-origin: border-box;
background-clip: padding-box, border-box;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);

}

.step-header {
  width: 2rem;
  height: 2rem;
  background-color:var(--off-white);
  color: var(--dark-purple);
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 8px;
margin-right:8px;
  border-radius: 0.5rem;

  border: 2px solid transparent;
}

.list-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--core-black);
}
.list-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--core-black);
}
.list-title-resources {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 0rem;
  color: var(--core-black);
}

.dedicated-step-box p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--core-black);
  line-height: 1.6;
}

/* Imagen a la derecha */
.dedicated-image {
  flex: 1;
  max-width: 640px;
}

.dedicated-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}



/* Responsive */
@media (max-width: 768px) {
  .dedicated-image{
display: none;
}
  .dedicated-support-section {
    padding: 2rem 1rem;
  }

  .dedicated-title {
 
    font-size: 1.75rem;
  
  }

  .dedicated-content {

    flex-direction: column;
    gap: 2rem;
  }

  .list-title {
font-size: 20px !important;
margin-bottom: 1rem !important;
    font-size: 1rem;
  }

  .step-header {
    width: 2rem;
    height: 2rem;
    font-size: 16px;
  }

  .dedicated-step-box p {
    font-size: 16px;
  }
}


/* recursos */
 .resources-section{
margin: 10rem auto;
max-width: 1200px;
   justify-self: center;
}


.unique-resources-module {
 
place-self: center;
    display: flex;
    flex-direction: column;
   max-width: 1200px;
    width: 100%; /* Ancho del módulo */
}

.unique-resource-container {
    margin-top:2rem;
    display: flex;
    height: min-content;
}

.unique-resource-card {
    background-color: #ffffff; /* Fondo blanco para tarjetas */
    border-radius: 16px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    display: flex;
}

.vertical {
    font-weight: 600;
    flex-direction: column;
 border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(270deg, var(--mora-blue), transparent, var(--mora-blue));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 400% 400%;
    animation: borderFlow 6s linear infinite;
    width: 560px; /* Ancho de la tarjeta vertical */
}

.unique-resource-cards {
    display: flex;
    flex-direction: column; /* Colocar tarjetas horizontales en columna */
    flex-grow: 1; /* Permitir que la columna de tarjetas horizontales ocupe el espacio restante */

}

.horizontal {
font-weight: 600;
    align-items: center;
    display: flex;
    height: fit-content; /* Altura de la tarjeta horizontal */
    width: 100%; /* Ancho completo */
}

.horizontal .unique-card-header {

    margin-right: 12px; /* Espacio entre imagen y contenido */
}

.unique-author-image {
    border-radius: 16px; /* Esquinas redondeadas */
   
}

.unique-card-content {
gap: 0.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.unique-badge-container {
    display: flex;
    gap: 12px;
    margin: 0px !important;
}

.unique-badge {
    padding: 6px 9px;
    font-size: 12px;
    line-height: 18px;
    border-radius: 40px;
    color: #F7F8FA;
}

/* Colores específicos para cada badge */
.unique-badge.blog {
    background-color: #00C77E; /* Color para Blog */
}

.unique-badge.podcast {
    background-color: #6F4EF6; /* Color para Podcast */
}

.unique-badge.descargables {
    background-color: #049BFF; /* Color para Descargables */
}
.unique-badge.destacado {
    background-color: #4B22F4; /* Color para Destacado */
}

/* Color del CTA link */
.unique-card-link {
    color: #4B22F4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.unique-card-link:hover {
    color: #5a54d1;
}



.unique-card-title {
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 10px 0;
}

.unique-card-description {
    color: #333;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.unique-card-link {
    color: #4B22F4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.unique-card-link:hover {
    color: #5a54d1;
}
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@media (max-width: 768px) {
    .unique-resources-module {
        flex: 1;
    position: relative;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    scroll-behavior: smooth;
    padding: 0 20px;
gap: 0px;
    }

    .unique-resource-container {
        padding: 16px;
        display: flex;
        flex-direction: row;
        gap: 0px;
        height: auto;
        overflow-x: auto;

        scroll-snap-type: x mandatory;
    }

    .unique-resource-card {
        min-width: 300px;
        height: 400px !important; /* Altura fija para todas las tarjetas en mobile */
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Alinear todo a la izquierda */
        justify-content: flex-start; /* Alinear todo al top */
    }

    .vertical{
     
        width: 300px;
        height: max-content; /* Mantener la altura de las tarjetas */
        flex-direction: column;
    }

    .horizontal {
        width: 300px;
        height: 100%; /* Mantener la altura de las tarjetas */
        flex-direction: column;
    }

    .unique-card-header {
        display: none; /* Ocultar imágenes en la versión móvil */
    }

    .unique-card-title {
        font-size: 16px;
        line-height: 22px;
        text-align: left; /* Alinear el título a la izquierda */
        margin-bottom: 10px; /* Espacio bajo el título */
    }

    .unique-card-description {
        font-size: 14px;
        line-height: 20px;
        text-align: left; /* Alinear descripción a la izquierda */
        margin-bottom: 10px;
    }

    .unique-badge-container {
        display: flex;
        gap: 8px;
        justify-content: flex-start; /* Alinear las badges a la izquierda */
        margin-bottom: 16px; /* Espacio entre las badges y el contenido */
    }

    .unique-badge {
        padding: 6px 9px;
    font-size: 12px;
        line-height: 18px;
        border-radius: 40px;
        background-color: #4B22F4;
        color: #F7F8FA;
    }

    .unique-card-link {
        text-align: left; /* Alinear enlace a la izquierda */
        margin-top: auto; /* Posicionar el enlace al final de la tarjeta */
    }

    .unique-resource-cards {
        display: flex;
        flex-direction: row;
        gap: 0px;
    }
}


/* Estilos generales para el contenedor */
  .container-cierre {

        padding: 40px;
  
    border-radius: 15px;
    
    max-width: 1200px;
margin: 10rem auto;
   
  }

  .content-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Espaciado de 10px entre los elementos */
  }

  /* Estilos para el título principal */
.subtitle{ font-size: 18px;
text-wrap: balance;}
.main-title {
  position: relative;
  z-index: 0;
  overflow: hidden;

  /* Fondo translúcido */
  background-color: rgba(214, 253, 106, 0.08);

  /* Borde animado tipo glassmorphism */
  border: 2px solid transparent;
  background-image:
    linear-gradient(135deg, rgba(214, 253, 106, 0.6), transparent, var(--off-white)),
    linear-gradient(135deg, var(--invisible-tech), var(--off-white), var(--invisible-tech));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 300% 300%;
  background-position: 0% 50%;

  /* Animaciones suaves */
  animation: 
    borderFlow 3s ease-in-out infinite alternate;
   

  /* Glow fuerte */
  box-shadow:
    0 0 20px rgba(var(--invisible-tech-rgb), 1),
    0 0 60px rgba(var(--invisible-tech-rgb), 1),
    0 0 100px rgba(var(--invisible-tech-rgb), 1);

  /* Estética general */
  border-radius: 99rem;
  transform-style: preserve-3d;
  perspective: 1000px;

  /* Texto */
  padding: 12px 42px;
  color: var(--dark-purple);
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: -0.96px;
}

/* Borde animado suave (ida y vuelta) */
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Zoom tipo latido (suave) */
@keyframes  {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.01);
  }
}

  /* Estilos para el botón CTA */
  .cta-button {
background-color: #4B22F4;
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
font-family: "inter", sans-serif;
  font-size: 16px; /* Tamaño de fuente actualizado */
  font-weight: 600; /* Peso de fuente actualizado */
  padding: 1em 2.5em; /* Aumentamos el padding */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0; /* Hacer que abrace el texto */
}
.cta-button:hover {
background-color: #3a1bca;
  transform: scale(1.02);
}

  /* Estilos para la calificación de Capterra */
  .rating {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rating img {
    width:100px;
    margin-right: 8px;
  }

  /* Responsiveness */
  @media (max-width: 768px) {
/* Estilos generales para el contenedor */
  .container-cierre {
padding: 16px; 
        margin-left:16px;
margin-right: 16px;
  }

    .main-title {
padding: 8px; 
      font-size: 32px;
font-weight: 500;
    }
.rating img {
    width:100px;
    margin-right: 8px;
  }
  }

/*IMG CARROUSEL*/
/* General module styling */
.image-module {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 45%;
  margin: 0 auto;
  position: relative;
}

.top-images {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.img-1,
.img-2,
.img-3 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  position: relative; /* Cada imagen necesita ser relative */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Hover effect: Incrementa el tamaño de manera más sutil y realza el shadow */
.img-1:hover,
.img-2:hover,
.img-3:hover {
  transform: scale(1.02);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
}

/* Pill styling */
.pill {
color: var(--dark-purple);
  position: absolute;
  border-radius: 60px;
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Inicialmente invisible */
  transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
border: 0px solid transparent;
    background-image: linear-gradient(var(--off-white), var(--off-white)), linear-gradient(270deg, var(--invisible-tech), transparent, var(--invisible-tech));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 400% 400%;
    animation: borderFlow 3s linear infinite;
}

/* Mostrar las pastillas al hacer hover sobre las imágenes */
.image-left-1:hover .pill-clima,
.image-right-2:hover .pill-administra,
.bottom-image-3:hover .pill-aprendizaje,
.bottom-image-3:hover .pill-desempeno {
  opacity: 1;
}

/* Posicionar las pastillas */

/* Clima pill slightly outside Image 1 */
.pill-clima {
  top: -20px;
  left: -20px;
}

/* Administra pill slightly outside Image 2 */
.pill-administra {
  top: -20px;
  right: -20px;
}

/* Aprendizaje pill slightly outside Image 3 */
.pill-aprendizaje {
  bottom: -20px;
  left: -20px;
}

/* Ajuste de posición de la pastilla Desempeño en la esquina superior derecha de Imagen 3 */
.bottom-image-3 {
  position: relative; /* La imagen 3 será el contenedor relativo */
}

.pill-desempeno {
  top: -10px; /* Posicionada dentro de la imagen */
  right: -10px; /* Ajustada a la esquina superior derecha de la imagen */
  position: absolute;
}



/* Responsive design for tablet */
@media (max-width: 768px) {
 .image-module {display: none;}
  .top-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .img-1,
  .img-2,
  .img-3 {
    width: 100%;
  }
}

/* Responsive design for mobile */
@media (max-width: 480px) {
  .top-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .img-1,
  .img-2,
  .img-3 {
    width: 100%;
    height: auto;
  }
}