/* Sección de Crédito Adaptable */
.credito-adaptable-section {
    padding: 80px 0;
  }
  
  .credito-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    font-family: 'Onest', sans-serif;
  }
  
  .titulo-teal {
    color: var(--color-primary-600);
    font-size: 2.8rem;
    font-weight: 800;
  }
  
  .credito-columna {
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 400px;
  }
  
  .credito-columna-izquierda {
    justify-content: flex-start;
  }
  
  .credito-columna-derecha {
    justify-content: flex-end;
  }
  
  .credito-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .credito-icono {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: -5px;
  }
  
  .credito-icono i {
    font-size: 2.5rem;
    color: var(--color-primary-600);
  }
  
  .credito-columna-derecha .credito-icono i {
    color: var(--color-primary-600);
  }
  
  .credito-titulo-container {
    flex: 1;
  }
  
  .credito-subtitulo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
    display: block;
  
  }
  
  .subtitulo-negro {
    display: block;
    margin-bottom: 5px;
  }
  
  .credito-descripcion {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-left: 55px;
  }
  
  .descripcion-teal {
    color: #20B2AA;
    font-weight: 600;
  }
  
  .descripcion-naranja {
    color: #FF8C00;
    font-weight: 600;
  }
  
  .credito-imagenes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .imagen-container {
    width: 370px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .credito-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .credito-titulo {
      font-size: 2rem;
    }
    
    .titulo-teal {
      font-size: 2.2rem;
    }
    
    .credito-imagenes {
      flex-direction: row;
      gap: 15px;
    }
    
    .imagen-container {
      width: 150px;
      height: 150px;
    }
  }
  
  @media (max-width: 767px) {
    .credito-adaptable-section {
      padding: 60px 0;
    }
    
    .credito-titulo {
      font-size: 1.8rem;
    }
    
    .titulo-teal {
      font-size: 2rem;
    }
    
    .credito-subtitulo {
      font-size: 1.3rem;
    }
    
    .credito-header {
      gap: 10px;
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
      margin-bottom: 25px;
    }
    
    .credito-icono {
      align-self: center;
      margin-bottom: 15px;
    }
    
    .credito-icono i {
      font-size: 2.5rem;
    }
    
    .credito-titulo-container {
      text-align: center;
      width: 100%;
    }
    
    .subtitulo-negro {
      margin-bottom: 5px;
    }
    
    .credito-descripcion {
      text-align: center;
      font-size: 0.95rem;
      margin-bottom: 20px;
      margin-left: 0;
    }
    
    .imagen-container {
      width: 120px;
      height: 100px;
    }
    
    .credito-columna {
      min-height: auto;
      justify-content: flex-start !important;
    }
  }
  
  @media (max-width: 480px) {
    .credito-adaptable-section {
      padding: 40px 0;
    }
    
    .credito-columna {
      padding: 15px;
      margin-bottom: 30px;
      min-height: auto;
      justify-content: flex-start !important;
    }
    
    .credito-subtitulo {
      font-size: 1.2rem;
    }
    
    .credito-descripcion {
      font-size: 0.9rem;
      margin-bottom: 18px;
      margin-left: 0;
    }

    
    .imagen-container {
      width: auto;
      height: 350px;
    }
  }

  /* Lista de comprobación sin viñetas y con iconos coloreados */
  .credito-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 55px;
  }

  .credito-lista li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .credito-lista li i {
    color: var(--color-primary-600);
    font-size: 1rem;
    line-height: 1;
    margin-top: 4px;
    flex-shrink: 0;
  }

  @media (max-width: 767px) {
    .credito-lista {
      margin-left: 0;
      text-align: center;
      padding: 0 15px;
    }

    .credito-lista li {
      justify-content: center;
      text-align: left;
    }
  }